@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-margin-top: 50px;
}

body {
  position: relative;
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

body img {
  width: 100%;
}

body a {
  color: #000;
}

.btn {
  background: -webkit-gradient(linear, left top, left bottom, from(#E29234), to(#E4A151));
  background: linear-gradient(180deg, #E29234 0%, #E4A151 100%);
  color: #fff;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 27px;
  padding: 25px 70px;
  text-transform: uppercase;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 12px 12px 12px #00000029;
          box-shadow: 12px 12px 12px #00000029;
  border-radius: 50px;
  font-weight: bold;
}

.btn:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#E4A151), to(#E29234));
  background: linear-gradient(180deg, #E4A151 0%, #E29234 100%);
  -webkit-transition: .3s;
  transition: .3s;
}

/* HEADER */
header {
  padding: 20px;
  z-index: 9999;
}

header .header_container {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

header .header_container .logo {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_container .logo img {
  display: block;
  max-width: 275px;
}

header .header_container input#menu-toggle {
  display: none;
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(2) {
  opacity: 0;
  left: -100%;
}

header .header_container input#menu-toggle:checked ~ .toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

header .header_container input#menu-toggle:checked ~ .menu {
  height: 400px;
  -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  header .header_container input#menu-toggle:checked ~ .menu {
    border-bottom: none;
    height: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

header .header_container .toggle {
  height: 35px;
  width: 35px;
  position: relative;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  right: 10px;
}

header .header_container .toggle span {
  position: absolute;
  background: -webkit-gradient(linear, left bottom, left top, from(#a53d65), to(#ed263c));
  background: linear-gradient(0deg, #a53d65 0%, #ed263c 100%);
  top: 5px;
  left: 0px;
  right: 0px;
  height: 3px;
  border-radius: 100vmax;
  width: 33px;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  visibility: visible;
}

@media (min-width: 1024px) {
  header .header_container .toggle span {
    display: none;
  }
}

header .header_container .toggle span:nth-of-type(2) {
  top: 15px;
}

header .header_container .toggle span:nth-of-type(3) {
  top: 25px;
}

header .header_container .menu {
  border-radius: 25px;
  z-index: 999;
  top: 120%;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  left: 0;
  right: 0;
  height: 0px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

@media (min-width: 1024px) {
  header .header_container .menu {
    position: relative;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: 0;
    width: 100%;
    height: 100%;
    border-bottom: none;
    background: none;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-transition: none;
    transition: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    gap: 20px;
    overflow: visible;
    font-size: 14px;
    color: #000;
  }
}

header .header_container .menu a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  text-decoration: none;
  font-weight: 300;
  position: relative;
  color: inherit;
  font-weight: 500;
}

@media (min-width: 1024px) {
  header .header_container .menu a {
    margin-left: 25px;
  }
}

header .header_container .menu .btn {
  padding: 15px 30px;
  color: #fff;
  font-weight: 600;
  font-size: inherit;
}

/* END OF HEADER */
main {
  overflow-x: hidden;
}

main .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 75px 20px;
}

main .wrap h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

main .wrap .sub {
  text-align: center;
}

main .wrap p {
  line-height: 25px;
  color: inherit;
  font-size: 16px;
}

@media (min-width: 768px) {
  main .wrap p {
    line-height: 30px;
  }
}

main .banner {
  background: #ccc;
}

@media (min-width: 1024px) {
  main .banner {
    background: url(../images/banner-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

main .banner .wrap {
  padding: 50px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 768px) {
  main .banner .wrap {
    min-height: 450px;
  }
}

@media (min-width: 1024px) {
  main .banner .wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    min-height: 650px;
  }
}

main .banner .wrap .content {
  max-width: 420px;
}

main .banner .wrap .content .desc {
  text-align: center;
}

@media (min-width: 1024px) {
  main .banner .wrap .content .desc {
    text-align: left;
  }
}

main .banner .wrap .content .desc h1 {
  font-size: 35px;
  letter-spacing: .45px;
}

@media (min-width: 768px) {
  main .banner .wrap .content .desc h1 {
    font-size: 50px;
    line-height: 59px;
  }
}

@media (min-width: 768px) {
  main .banner .wrap .content .desc .btn {
    font-size: 30px;
  }
}

main .section1 {
  text-align: center;
}

main .section1 h2 {
  margin-bottom: 0px;
}

main .section1 .wrap {
  max-width: 1024px;
}

@media (min-width: 768px) {
  main .section1 .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
    align-items: center;
  }
}

main .section1 .content img {
  max-width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 1024px) {
  main .section1 .content img {
    max-width: 600px;
  }
}

main .section1 .content ul {
  text-align: left;
  -webkit-columns: 2;
          columns: 2;
  gap: 50px;
}

@media (min-width: 768px) {
  main .section1 .content ul {
    -webkit-columns: unset;
            columns: unset;
    gap: unset;
  }
}

@media (min-width: 1200px) {
  main .section1 .content ul {
    width: 50%;
  }
}

main .section1 .content ul li {
  margin-bottom: 10px;
}

main .section2 {
  background: #333;
}

@media (min-width: 1024px) {
  main .section2 {
    background: url(../images/banner-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

main .section2 .wrap {
  min-height: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}

@media (min-width: 1024px) {
  main .section2 .wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: left;
  }
}

main .section2 .wrap .content {
  max-width: 520px;
}

main .section2 .wrap .content h2 {
  color: #E4A151;
}

main .pre-footer {
  position: relative;
  min-height: 500px;
  padding: 70px 20px;
}

main .pre-footer .wrap {
  padding: 0;
  max-width: 1024px;
}

main .pre-footer .wrap .content {
  text-align: center;
}

@media (min-width: 1024px) {
  main .pre-footer .wrap .content {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 100px;
  }
}

main .pre-footer .wrap .content .desc h2 {
  font-size: 50px;
  font-weight: bold;
}

main .pre-footer .wrap .content img {
  max-width: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 30px;
}

img.feature-img {
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    box-shadow: 2px 2px 10px lightgray;
    width: auto;
    max-height: 450px;
}

@media (min-width: 1024px) {
  main .pre-footer .wrap .content img {
    margin-top: 0;
  }
}

footer {
  padding: 20px;
}

@media (min-width: 1300px) {
  footer {
    padding: 20px 0;
  }
}

footer .footer-wrap {
  text-align: center;
  max-width: 1024px;
  border-top: 1px solid #ccc;
  margin: 0 auto;
}

footer .footer-wrap p {
  font-size: 13px;
  color: #000;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  footer .footer-wrap p {
    margin-bottom: 0;
  }
}

footer .footer-wrap ul {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 15px;
}

footer .footer-wrap ul li {
  list-style: none;
  font-size: 15px;
  color: #000;
}

footer .footer-wrap ul li a {
  text-decoration: none;
  font-weight: 500;
  color: inherit;
}

footer .footer-wrap ul li a:hover {
  color: #2A444E;
}

.download_link {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-animation: 1.5s 1.5s forwards fadeInSlideUp;
  animation: 1.5s 1.5s forwards fadeInSlideUp;
}

@-webkit-keyframes fadeInSlideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInSlideUp {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/*# sourceMappingURL=styles.css.map */