@font-face {
  font-family: "PPNeueWorld";
  src: url("../../fonts/PPNeueWorld/PPNeueWorld-CondensedRegular.otf");
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../../fonts/NeueMontreal/NeueMontreal-Regular.otf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all ease-in-out 0.2s;
  z-index: 2;
}

h1,
h2,
h3 {
  font-family: "PPNeueWorld", sans-serif;
  color: #152623;
  font-size: 72px;
}

p {
  font-size: 16px;
  color: #4E7A72;
}

html,
body {
  height: 100%;
  min-height: 100vh;
  width: 100%;
  font-family: "NeueMontreal", sans-serif;
  scroll-behavior: smooth;
}

header {
  width: 100vw;
  height: 70px;
  position: fixed;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 148px 0 117px;
  z-index: 9999;
}
header img {
  margin-right: 10%;
  height: 80%;
}
header .header-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: right;
}
header .header-content a {
  text-decoration: none;
  color: #152623;
  font-size: 16px;
  line-height: 150%;
}
header .header-content a:hover {
  color: #4E7A72;
}
header .header-content ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
header .header-content div {
  display: flex;
  align-items: center;
  gap: 28px;
}
header .header-content div a {
  color: #152623;
}
header .sandwich {
  display: none;
  align-items: center;
  justify-content: center;
}
header .close img {
  width: 10%;
  position: absolute;
  top: -31vh;
  right: 0;
}
@media (max-width: 1024px) {
  header {
    height: 41px;
    justify-content: space-between;
    padding: 0 40px;
  }
  header img {
    height: 80%;
  }
  header .header-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90.56deg, #ffffff 0.46%, rgba(255, 255, 255, 0.33) 109.93%);
    backdrop-filter: blur(26px);
  }
  header .header-content div,
header .header-content ul {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  header .header-content ul {
    margin-bottom: 72px;
  }
  header .sandwich {
    display: flex;
  }
  header .close {
    display: flex;
  }
  header .close img {
    text-align: right;
  }
  header .hidden {
    display: none;
  }
}

main {
  background-color: #F9F6E3;
  position: relative;
}
main .background-green {
  height: 81vh;
  width: 40vw;
  background-color: #C7D9A7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media (max-width: 1024px) {
  main .background-green {
    width: 93vw;
    height: 61vh;
  }
}
main .wave1 {
  max-width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .wave1 {
    top: -4%;
    left: -25%;
  }
}
main .wave2 {
  position: absolute;
  top: -58%;
  right: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .wave2 {
    top: -52%;
    left: 84%;
    transform: rotate(180deg);
    z-index: -1;
  }
}
main .wave3 {
  max-width: 100vw;
  position: absolute;
  left: 0;
  z-index: 0;
  top: -70%;
}
@media (max-width: 1024px) {
  main .wave3 {
    top: -2%;
    left: -2%;
  }
}
main .wave4 {
  position: absolute;
  top: 77%;
  right: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  main .wave4 {
    display: none;
  }
}
main section {
  position: relative;
  width: 100%;
  height: 90vh;
}
main section:first-child {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 0 0 2% 4%;
}
main section:first-child div:first-child {
  height: 55vh;
  width: 30vw;
}
main section:first-child div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main section:first-child div:last-child {
  max-width: 611px;
}
main section:first-child div:last-child h1 {
  font-size: 85px;
}
main section:first-child div:last-child p {
  margin: 8px 0 24px;
}
main section:first-child div:last-child button {
  font-family: "PPNeueWorld", sans-serif;
  background-color: #ED8469;
  color: #FFFFFF;
  border: none;
  font-size: 35px;
  padding: 8px 32px;
}
main section:first-child div:last-child button:hover {
  background: #FF8E71;
}
@media (max-width: 1024px) {
  main section:first-child {
    height: auto;
  }
  main section:first-child:first-child {
    padding: 53px 0;
  }
  main section:first-child:first-child div:first-child {
    height: 46vh;
    width: 100%;
  }
  main section:first-child:first-child div:first-child img {
    width: 75vw;
    float: right;
  }
  main section:first-child:first-child div:last-child {
    width: 100%;
    padding: 9%;
  }
  main section:first-child:first-child div:last-child h1 {
    font-size: 40px;
  }
}
main section:nth-child(2) {
  height: unset;
  margin-bottom: -5px;
}
main section:nth-child(2) div:first-child {
  display: flex;
  justify-content: center;
  padding: 0 10%;
  align-items: flex-start;
  gap: 3%;
}
main section:nth-child(2) div:first-child h1 {
  font-size: 70px;
}
main section:nth-child(2) div:first-child p {
  max-width: 34vw;
}
main section:nth-child(2) div:last-child img {
  width: 100%;
  height: 63vh;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  main section:nth-child(2) {
    display: flex;
    flex-direction: column-reverse;
  }
  main section:nth-child(2) div {
    flex-flow: wrap;
  }
  main section:nth-child(2) div:first-child h1 {
    font-size: 40px;
  }
  main section:nth-child(2) div:first-child p {
    max-width: max-content;
  }
  main section:nth-child(2) div:last-child img {
    height: 31vh;
  }
}
main section:nth-child(3) {
  display: flex;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
main section:nth-child(3) h1 {
  margin-top: 83px;
  font-size: 72px;
  max-width: 45vw;
  text-align: center;
}
main section:nth-child(3) .background-pink {
  height: 57vh;
  width: 50vw;
  background-color: #FDCDC1;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  margin: 7% 0 0 0;
}
main section:nth-child(3) div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
main section:nth-child(3) div div {
  display: block;
  width: fit-content;
}
main section:nth-child(3) div div:first-child {
  padding: 0 0 10% 8%;
  max-width: 47vw;
}
main section:nth-child(3) div div:last-child {
  margin: 3% 5% 0 0;
}
main section:nth-child(3) div div:last-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 1024px) {
  main section:nth-child(3) h1 {
    font-size: 40px;
    max-width: unset;
  }
  main section:nth-child(3) .background-pink {
    width: 92vw;
    height: 45vh;
  }
  main section:nth-child(3) div {
    flex-direction: column-reverse;
  }
  main section:nth-child(3) div div:first-child {
    padding: unset;
    max-width: 85vw;
    margin-top: 20px;
  }
  main section:nth-child(3) div div:last-child {
    margin: 23px 0;
    padding: 0 7% 0 18%;
  }
  main section:nth-child(3) div div:last-child img {
    min-height: 286px;
  }
}
main section:nth-child(4) {
  height: 690px;
}
main section:nth-child(4) h2 {
  max-width: 45vw;
  margin-left: 8%;
}
main section:nth-child(4) .container {
  overflow: hidden;
}
main section:nth-child(4) .container .background-yellow {
  width: 100%;
  height: 436px;
  background-color: #FED76F;
}
main section:nth-child(4) .container .swiper {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
main section:nth-child(4) .container .arrow-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  margin: 0 57px 49px 0;
}
main section:nth-child(4) .container .services-button-next,
main section:nth-child(4) .container .services-button-prev {
  width: 48px;
  height: 48px;
  background-color: #FED76F;
  display: flex;
  align-items: center;
  justify-content: center;
}
main section:nth-child(4) .container .services-button-next:hover,
main section:nth-child(4) .container .services-button-prev:hover {
  background-color: #EFE6B4;
}
main section:nth-child(4) .container .services-button-next:hover img,
main section:nth-child(4) .container .services-button-prev:hover img {
  filter: brightness(100);
}
main section:nth-child(4) .container .services-button-next {
  right: 57px;
}
main section:nth-child(4) .container .services-button-prev {
  right: 137px;
}
main section:nth-child(4) .container .services-button-prev img {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  main section:nth-child(4) .container .arrow-wrapper {
    display: none;
  }
}
@media (max-width: 1024px) {
  main section:nth-child(4) {
    margin-top: 68px;
  }
  main section:nth-child(4) h2 {
    font-size: 40px;
    max-width: 88vw;
  }
}
main section:nth-child(5) {
  padding: 5vh 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  text-align: center;
}
main section:nth-child(5) ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 0 5%;
  margin-top: 16px;
}
main section:nth-child(5) .drop-down {
  width: 95%;
  border-bottom: 1px solid #EFE6B4;
  border-top: 1px solid #EFE6B4;
  padding: 1.5%;
  text-align: start;
  cursor: pointer;
}
main section:nth-child(5) .drop-down div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main section:nth-child(5) .drop-down .drop-title {
  color: #152623;
  font-size: 16px;
  line-height: 20px;
}
main section:nth-child(5) .drop-down img {
  content: url("../../img/faq/dropdown-open.svg");
  width: unset;
}
main section:nth-child(5) .drop-down .drop-content {
  height: 0;
  opacity: 0;
}
main section:nth-child(5) .open .drop-content {
  opacity: 1;
  height: fit-content;
  margin-top: 16px;
}
main section:nth-child(5) .open img {
  content: url("../../img/faq/dropdown-close.svg");
}
@media (max-width: 1024px) {
  main section:nth-child(5) h1 {
    font-size: 40px;
  }
  main section:nth-child(5) section.generic-section {
    padding: 200px 0 0;
  }
}
main section .card {
  display: flex;
  flex-direction: column;
  background-color: #EBC970;
  width: 285px;
  height: 500px;
}
main section .card img {
  width: 100%;
  height: 234px;
}
main section .card div {
  padding: 12px;
}
main section .card div h3 {
  font-size: 26px;
}
main section .card div p {
  font-size: 14px;
}
@media (max-width: 1024px) {
  main section {
    height: auto;
  }
  main section:nth-child(4) {
    height: 600px;
  }
}

footer {
  background: #152623;
}
footer .footer-main {
  display: flex;
  justify-content: space-between;
  color: #F9F6E3;
  padding: 5% 12% 3% 8%;
  flex-flow: row wrap;
}
footer .footer-main aside {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer .footer-main aside h3 {
  color: #F9F6E3;
  font-weight: 400;
}
footer .footer-main aside p {
  color: #F9F6E3;
  font-weight: 250;
  margin-top: 1vh;
  font-size: 16px;
}
footer .footer-main aside h4 {
  font-weight: 700;
  font-size: 14px;
}
footer .footer-main .footer-wrapper {
  display: flex;
  flex-flow: column wrap;
}
footer .footer-main .footer-wrapper div {
  max-width: 22vw;
}
footer .footer-main .footer-wrapper div p {
  color: #F9F6E3;
  margin-bottom: 3vh;
}
footer .footer-main .footer-wrapper div p:hover {
  color: #4E7A72;
}
footer .footer-main .social-media {
  display: flex;
  align-items: center;
}
footer .footer-main .social-media ul {
  list-style: none;
}
footer .footer-main .social-media ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 3vh 0;
}
footer .footer-main .social-media ul li:hover {
  color: #4E7A72;
}
footer .footer-references {
  width: 100%;
}
footer .footer-references hr {
  margin-top: 4vh;
}
footer .footer-references .footer-references-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
footer .footer-references .footer-references-text p {
  text-align: center;
  color: #F9F6E3;
}
footer .footer-references .footer-references-text p a {
  color: #F9F6E3;
  text-decoration: none;
}
footer .footer-references .footer-references-text p a:hover {
  color: #4E7A72;
}
@media (max-width: 1024px) {
  footer .footer-main {
    padding: 5% 12% 10% 8%;
  }
  footer aside h3 {
    font-size: 40px;
  }
  footer .footer-wrapper {
    margin-top: 3vh;
  }
  footer .footer-wrapper div {
    max-width: fit-content;
    padding-bottom: 3vh;
  }
  footer .footer-wrapper div ul li {
    width: 80vw;
  }
  footer .social-media {
    margin-bottom: 4vh;
  }
}

/*# sourceMappingURL=style.css.map */
