@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: -webkit-gradient(linear, left top, left bottom, from(#CB9737), to(#FFDC7E));
  background: linear-gradient(180deg, #CB9737 0%, #FFDC7E 100%);
  color: #000;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  font-size: 27px;
  padding: 25px 70px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.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(#FFDC7E), to(#CB9737));
  background: linear-gradient(180deg, #FFDC7E 0%, #CB9737 100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* HEADER */
header {
  padding: 20px;
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1200px;
}

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: #49D7D6;
  top: 5px;
  left: 0px;
  right: 0px;
  height: 3px;
  border-radius: 100vmax;
  width: 33px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.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 0.5s ease-in-out;
  transition: all 0.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: #fff;
  }
}

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: #000;
  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: 35px;
  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: 25px;
  }
}

main .banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

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

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

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: 0.45px;
  color: #fff;
}

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

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

@media (min-width: 1024px) {
  main .banner .wrap .content .desc p {
    font-size: 21px;
    line-height: 30px;
  }
}

main .banner .wrap .content .desc .btn {
  margin: 30px 0 0;
}

main .section1 {
  background: #D5D0D0;
}

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

main .section1 .wrap {
  padding: 70px 20px 70px;
}

@media (min-width: 1024px) {
  main .section1 .wrap {
    padding: 70px 20px 0px;
  }
}

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

main .section1 .content img {
  max-width: 500px;
  display: none;
}

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

@media (min-width: 1024px) {
  main .section1 .content .desc {
    padding-bottom: 50px;
  }
}

main .section1 .content .desc ul {
  padding-left: 30px;
}

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

main .section1 .content .desc ul li::marker {
  color: #CB9737;
  font-size: 27px;
}

main .section2 .content {
  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: 0 50px;
}

main .section2 .content .item {
  background: #fff;
  padding: 20px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 400px;
}

@media (min-width: 768px) {
  main .section2 .content .item {
    width: 45%;
  }
}

@media (min-width: 1024px) {
  main .section2 .content .item {
    width: 35%;
  }
}

@media (min-width: 1200px) {
  main .section2 .content .item {
    width: 30%;
  }
}

main .section2 .content .item img {
  max-width: 150px;
  height: 200px;
}

main .section2 .content .item .desc {
  height: 200px;
  background: #49D7D6;
  padding: 20px;
  border-radius: 0px 0px 15px 0px;
}

main .section2 .content .item .desc p {
  font-size: 14px;
  line-height: 22px;
}

main .section2 .content .item .desc p span {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
}

main .pre-footer {
  position: relative;
  min-height: 500px;
  padding: 70px 20px;
  background: url(../images/footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

@media (min-width: 1024px) {
  main .pre-footer .wrap .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

main .pre-footer .wrap .content img {
  max-width: 500px;
  display: none;
}

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

main .pre-footer .wrap .content .desc {
  text-align: center;
  color: #fff;
}

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

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

@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;
}
/*# sourceMappingURL=styles.css.map */