@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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: "Open Sans", sans-serif;
}

body img {
  width: 100%;
}

body a {
  color: #000;
}

.btn {
  background: #F1A653;
  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: 10px;
  font-weight: bold;
  max-width: 525px;
}

.btn:hover {
  background: #e6891f;
  -webkit-transition: .3s;
  transition: .3s;
}

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

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: 225px;
}

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: #44A2DE;
  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: 30px;
  margin-bottom: 20px;
  color: #44A2DE;
}

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

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

main .wrap p b, main .wrap p span {
  color: #000;
}

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

main .banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 650px;
  background: url(../images/background.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

main .banner .wrap {
  padding: 50px 20px;
}

@media (min-width: 1300px) {
  main .banner .wrap {
    padding: 70px 0;
  }
}

main .banner .wrap .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0px;
}

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

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

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

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

main .banner .wrap .content .desc img {
  max-width: 260px;
  margin: 20px 0 0;
}

main .banner .wrap .content .desc p {
  margin: 20px 0;
  color: #707070;
}

main .banner .wrap .content .b-img {
  width: 100%;
  display: none;
}

@media (min-width: 1024px) {
  main .banner .wrap .content .b-img {
    display: block;
    width: 50%;
    max-width: 600px;
  }
}

main .section1 {
  text-align: center;
}

.features-wrap h2 {
    text-align: center;
    color: #0071BC;
    margin-bottom: 15px;
}

.features-wrap p {
    text-align: center;
    margin-bottom: 45px;
}

.features-wrap .content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-direction: column;
}

.features-wrap .content ul li {
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .features-wrap .content {
        flex-direction: row;
    }
}

.features-wrap .content ul {
    text-align: left;
    columns: 2;
}

@media (min-width: 1024px) {
    .features-wrap .content ul {
        columns: 1;
    }
}

.features-wrap .content img {
    width: 100%;
    max-width: 650px !important;
}


@media (min-width: 1024px) {
  main .section1 {
    text-align: left;
  }
}

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

@media (min-width: 1024px) {
  main .section1 .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
  }
}

main .section1 .content p:nth-of-type(2) {
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  main .section1 .content p:nth-of-type(2) {
    margin-bottom: 0;
  }
}

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

main .section2 {
  background: #F7F7F7;
  text-align: center;
}

main .section2 h2 {
  margin-bottom: 20px;
}

main .section2 .sub {
  max-width: 700px;
  margin: 0 auto;
}

main .section2 .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}

main .section2 .content .item {
  max-width: 520px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

main .section2 .content .item img {
  max-width: 150px;
  height: 110px;
  -o-object-fit: contain;
     object-fit: contain;
}

main .section2 .content .item p {
  text-align: left;
}

main .section2 .content .item p span {
  font-weight: bold;
  color: #000;
}

main .pre-footer {
  position: relative;
  min-height: 500px;
  background: url(../images/background.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 1px solid #f2f2f2;
}

@media (min-width: 1024px) {
  main .pre-footer {
    border-top: 0;
  }
}

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;
    gap: 50px;
  }
}

main .pre-footer .wrap .content img {
  max-width: 450px;
  -o-object-fit: contain;
     object-fit: contain;
}

footer {
  padding: 20px;
  background: #535353;
}

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

footer .footer-wrap {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
}

footer .footer-wrap p {
  font-size: 13px;
  color: #fff;
  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: #fff;
}

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

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

/* CTA Button Tweak */
.download_link {
  opacity: 0;
  -webkit-animation: fadeInSlideUp 1.5s ease forwards;
          animation: fadeInSlideUp 1.5s ease forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  position: relative;
  bottom: -25px;
}

@-webkit-keyframes fadeInSlideUp {
  to {
    opacity: 1;
    bottom: 0;
  }
}

@keyframes fadeInSlideUp {
  to {
    opacity: 1;
    bottom: 0;
  }
}
/*# sourceMappingURL=styles.css.map */