@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  padding: 0;
  margin: 0;
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--color-10);
}

h1,
h2,
h3,
h4,
h5,
h6,
h7 {
  font-family: "Poppins", sans-serif;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-col-r {
  flex-direction: column-reverse;
}

.flex-row-r {
  flex-direction: row-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.align-center {
  align-items: center;
}

.align-baseline {
  align-items: baseline;
}

.align-stretch {
  align-items: stretch;
}

.flex-grow {
  flex-grow: 1;
}

.flex-shrink {
  flex-shrink: 1;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.text-center {
  text-align: center;
}

.text-italic {
  font-style: italic;
}

.display-block {
  display: block;
}
.display-inline {
  display: inline;
}
.display-inline-block {
  display: inline-block;
}
.display-none {
  display: none;
}

.coming-soon {
  padding-block: 160px;
  background-color: rgba(119, 126, 92, 0.1019607843);
}
@media (max-width: 767px) {
  .coming-soon {
    padding-block: 80px;
  }
}
.coming-soon .container {
  max-width: 926px;
  margin-inline: auto;
  padding-inline: 24px;
}
.coming-soon p {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 20px;
  padding-top: 40px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .coming-soon p {
    font-size: 18px;
  }
}
.coming-soon span {
  font-family: "Cardo", sans-serif;
  color: var(--color-2);
  font-size: 20px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .coming-soon span {
    font-size: 18px;
    letter-spacing: 1.4px;
  }
}

.letter .container {
  background-color: var(--color-8);
  padding-block: 120px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .letter .container {
    padding-block: 40px;
  }
}

:root {
  --color-1: #F8DDC8;
  --color-2: #CC7D45;
  --color-3: #283106;
  --color-4:#777E5C;
  --color-5: #BE9874;
  --color-7: #CC7D451A;
  --color-8: #777E5C1A;
  --color-10: #EBECD0;
  --color-11: #F8DEC8;
  --color-12: #ecedd1;
  --color-13: #e0d8ba;
  --color-14:#BE987480;
  --color-15:#E2E5DE;
  --color-16:#BE987426;
  --color-17: #777E5C80;
  --color-18: #CC7D4580;
  --color-19: #777E5C4D;
  --color-20:#BE98743D;
  --color-21: #BE987466;
  --color-22: #28310699;
  --color-23: #BE98744D;
}

.container-sm {
  max-width: 1300px;
  width: 100%;
  padding-inline: 24px;
  margin-inline: auto;
}

.container-lg {
  max-width: 1440px;
  width: 100%;
  padding-inline: 24px;
  margin-inline: auto;
}

.btn {
  font-size: 20px;
  border-radius: 76px;
  padding: 20px 40px;
  border: none;
  outline: none;
  text-decoration: none;
}
.btn--primary {
  background-color: var(--color-2);
  color: var(--color-1);
}

.inputs {
  max-width: 795px;
  width: 100%;
  gap: 48px;
}
@media (max-width: 1280px) {
  .inputs {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .inputs {
    gap: 36px;
  }
}
.inputs__field {
  width: 403px;
  border: 1px solid var(--color-2);
  border-radius: 101px;
  color: var(--color-2);
  padding-block: 17px;
  padding: 17px 17px 17px 33px;
  line-height: 1.6;
  font-size: 18px;
  outline: none;
  background-color: transparent;
}
.inputs__field.w-100 {
  width: 100%;
}
.inputs__field::-webkit-outer-spin-button, .inputs__field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
@media (max-width: 1280px) {
  .inputs__field {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .inputs__field {
    font-size: 14px;
    padding: 10px 10px 10px 24px;
  }
}
.inputs__field::placeholder {
  color: var(--color-2);
}
.inputs__label {
  display: block;
  font-family: "Cardo", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-3);
  margin-bottom: 24px;
}
.inputs__label.mb-0 {
  margin-bottom: 0;
}
.inputs__label span {
  color: var(--color-2);
  margin-left: -5px;
}
@media (max-width: 767px) {
  .inputs__label {
    font-size: 20px;
    line-height: 1.6;
  }
}
.inputs__wrapper {
  gap: 20px;
}
@media (max-width: 1280px) {
  .inputs__wrapper {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .inputs__wrapper {
    flex-wrap: wrap;
  }
}
.inputs__select {
  width: 100%;
  border: 1px solid var(--color-2);
  border-radius: 101px;
  max-height: 64px;
}
.inputs__select select {
  appearance: none;
  outline: none;
  border: none;
  color: var(--color-2);
  background-color: transparent;
  font-size: 18px;
  padding: 17px 0 17px 33px;
}
@media (max-width: 767px) {
  .inputs__select select {
    padding: 10px 0 10px 24px;
    font-size: 14px;
  }
}
.inputs__nested {
  gap: 20px;
}
@media (max-width: 1100px) {
  .inputs__nested {
    flex-direction: column;
    gap: 16px;
  }
}
.inputs__radios {
  gap: 20px;
}
.inputs__radio {
  font-size: 17px;
  color: var(--color-2);
  gap: 10px;
}
.inputs__radio input[type=radio] {
  accent-color: #CC7D45;
  background-color: transparent;
  border: 1px solid var(--color-2);
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}
.inputs__radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  background-color: #CC7D45; /* Inner dot color */
  border-radius: 50%;
}
.inputs textarea {
  background-color: transparent;
  border: 1px solid var(--color-2);
  border-radius: 24px;
  outline: none;
  height: 257px;
  font-size: 18px;
  color: var(--color-2);
  padding: 24px 10px 0 33px;
  resize: none;
}
.inputs textarea::placeholder {
  color: var(--color-2);
}
@media (max-width: 767px) {
  .inputs textarea {
    height: 146px;
    font-size: 14px;
    padding-left: 24px;
  }
}
.inputs button[type=submit] {
  align-self: flex-end;
  font-size: 20px;
  color: var(--color-1);
  background-color: var(--color-2);
  padding: 16px 40px;
}
@media (max-width: 767px) {
  .inputs button[type=submit] {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.custom-dropdown {
  width: 100%;
  position: relative;
  user-select: none;
}
.custom-dropdown__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--color-2);
  border-radius: 35px;
  padding: 17px 17px 17px 33px;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-2);
  transition: all 0.3s ease;
}
.custom-dropdown__arrow {
  transition: transform 0.3s ease;
  transform-origin: center;
  width: 17px;
  height: 10px;
  display: flex;
  align-items: center;
}
.custom-dropdown--open .custom-dropdown__arrow {
  transform: rotate(180deg);
}
.custom-dropdown--open .custom-dropdown__list {
  max-height: 500px;
  opacity: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.custom-dropdown__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid var(--color-2);
  backdrop-filter: blur(24px);
  border-radius: 12px;
  position: absolute;
  z-index: 999999;
  width: 100%;
  top: 70px;
  left: 0;
  z-index: 10;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.custom-dropdown__item {
  padding: 17px 17px 17px 33px;
  padding-block: 15px;
  cursor: pointer;
  color: var(--color-2);
  transition: all 0.2s ease;
}
.custom-dropdown__item:hover {
  background-color: var(--color-2);
  color: var(--color-1);
}
.custom-dropdown__item--selected {
  background-color: var(--color-2);
  color: var(--color-1);
}

.header {
  padding-block: 40px;
  z-index: 999;
  width: 100%;
}
.header--dark .header__nav-primary li a {
  color: var(--color-3);
}
.header--dark .header__cta {
  border: 1px solid var(--color-3);
  padding: 14px 28px;
}
@media (max-width: 1024px) {
  .header--dark .header__nav-primary .header__items {
    background-color: #777E5C;
  }
}
.header--dark .header__nav-primary .header__items .header__submenu-inner {
  background-color: var(--color-3);
}
@media (max-width: 767px) {
  .header--dark .header__nav-primary .header__items .header__submenu-inner {
    background-color: #777E5C;
  }
}
.header--dark .header__nav-primary .header__items .header__submenu-inner .header__submenu-list li a {
  color: var(--color-1);
}
@media (max-width: 767px) {
  .header--dark .header__nav-primary .header__items .header__submenu-inner .header__submenu-list li a {
    color: var(--color-3);
  }
}
.header--dark .header__submenu-button {
  color: var(--color-3);
}
@media (max-width: 767px) {
  .header {
    padding-block: 35px;
  }
}
@media (max-width: 1100px) {
  .header__logo {
    max-width: 93px;
  }
}
@media (max-width: 1024px) {
  .header__logo {
    position: absolute;
    z-index: 222;
  }
}
.header__nav-primary .header__items {
  gap: 55px;
}
.header__nav-primary .header__items.is-open {
  transform: translateY(0);
}
@media (max-width: 1110px) {
  .header__nav-primary .header__items {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .header__nav-primary .header__items {
    background-color: var(--color-3);
    flex-direction: column;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.5s ease-in;
  }
}
@media (max-width: 767px) {
  .header__nav-primary .header__items {
    align-items: flex-start;
    padding-inline: 24px;
    top: -75px;
    height: 120vh;
  }
}
.header__nav-primary li a {
  color: var(--color-1);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease-in-out;
}
.header__nav-primary.is-open {
  display: block;
}
.header__submenu {
  gap: 12px;
}
.header__submenu button {
  color: var(--color-1);
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__submenu {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .header__submenu {
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .header__submenu-hidden {
    width: 100%;
  }
}
.header__submenu-inner {
  position: absolute;
  opacity: 0;
  background-color: var(--color-10);
  border-radius: 8px;
  padding: 35px 65px 35px 30px;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  transform: translateX(-37px);
  top: 100px;
}
.header__submenu-inner.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(-28px);
  overflow: visible;
  display: block;
  height: fit-content;
}
@media (max-width: 1024px) {
  .header__submenu-inner {
    position: static;
    background-color: transparent;
    padding: 0 0 0 40px;
    overflow: hidden;
    height: 0;
  }
}
.header__submenu-list {
  gap: 35px;
}
@media (max-width: 1024px) {
  .header__submenu-list {
    gap: 24px;
  }
}
.header__submenu-list li a {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-4);
}
@media (max-width: 767px) {
  .header__submenu-list li a {
    color: var(--color-11);
    font-size: 16px;
  }
}
.header__submenu-hidden img {
  transition: transform 0.4s ease-in-out;
}
.header__submenu-hidden:hover .header__submenu-inner {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(-28px);
  overflow: visible;
  display: block;
  height: fit-content;
  padding-top: 30px;
}
.header__submenu-hidden:hover .header__submenu-inner img {
  transform: rotate(181deg);
}
.header__submenu-hidden:hover img {
  transform: rotate(181deg);
}
.header__cta {
  color: var(--color-1);
  border: 1px solid var(--color-1);
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 35px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 767px) {
  .header__cta {
    border: none;
    padding: 0;
  }
}
.header__btn-mobile {
  background: none;
  outline: none;
  border: none;
  display: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .header__btn-mobile {
    display: block;
    z-index: 222;
  }
}
.header__hamburger-hidden {
  display: none;
}
@media (max-width: 1024px) {
  .header__hamburger-hidden {
    display: block;
  }
}
.header__hamburger-hidden.is-open {
  display: none;
}
.header__icon-close {
  display: none;
}
.header__icon-close.is-active {
  display: block;
}

.hero__img {
  height: 100%;
}
.hero__img img,
.hero__img picture {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__content {
  padding-block: 275px 240px;
  z-index: 222;
  color: var(--color-1);
}
@media (max-width: 1536px) {
  .hero__content {
    padding-top: 220px;
  }
}
@media (max-width: 767px) {
  .hero__content {
    padding-block: 230px 150px;
  }
}
.hero__content h1 {
  max-width: 934px;
  font-size: 56px;
  line-height: 1.4;
  margin-bottom: 40px;
  color: inherit;
}
@media (max-width: 767px) {
  .hero__content h1 {
    font-size: 30px;
    margin-bottom: 16px;
    max-width: 325px;
    max-width: unset;
  }
}
.hero__content p {
  max-width: 583px;
  font-size: 28px;
  color: inherit;
  font-family: "Cardo", sans-serif;
  line-height: 1.4;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .hero__content p {
    font-size: 18px;
    max-width: 345px;
  }
}
.hero__content .btn {
  background-color: var(--color-1);
  color: var(--color-3);
  padding-block: 18px;
}
@media (max-width: 767px) {
  .hero__content .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.hero__container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
}
.hero .swiper-pagination-bullets {
  max-width: 1440px;
  margin: 0 auto;
  bottom: 140px;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  padding-inline: 24px;
  right: 0;
}
@media (max-width: 1024px) {
  .hero .swiper-pagination-bullets {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .hero .swiper-pagination-bullets {
    bottom: 80px;
  }
}
.hero .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 2px solid var(--color-1);
  opacity: 1;
  background: transparent;
  margin: 0;
}
.hero .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--color-4);
}

.about-us {
  padding-block: 140px;
}
@media (max-width: 767px) {
  .about-us {
    padding-block: 70px;
  }
}
.about-us .container-sm {
  gap: 85px;
  max-width: 1438px;
}
@media (max-width: 1100px) {
  .about-us .container-sm {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .about-us .container-sm {
    gap: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .about-us .container-sm {
    gap: 32px;
  }
}
.about-us .btn {
  color: var(--color-11);
  background-color: var(--color-2);
  padding-block: 15px;
  display: inline-block;
  width: fit-content;
}
@media (max-width: 1024px) {
  .about-us .btn {
    display: none;
    font-size: 14px;
    padding: 10px 20px;
  }
}
.about-us__inner {
  max-width: 582px;
}
@media (max-width: 1024px) {
  .about-us__inner {
    max-width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.about-us__featured {
  font-family: "Cardo", sans-serif;
  color: var(--color-2);
  font-size: 24px;
  line-height: 1.4;
  position: relative;
  border-radius: 100%;
  flex: 1 0 35%;
  height: 264px;
  border: 1px solid var(--color-23);
  margin-block: -15px;
}
@media (max-width: 1024px) {
  .about-us__featured {
    flex: none;
    margin-inline: 0;
    margin-block: -20px;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .about-us__featured {
    max-width: 252px;
    height: 101px;
    font-size: 16px;
    margin-block: -9px;
  }
}
.about-us__details {
  max-width: 728px;
}
@media (max-width: 1024px) {
  .about-us__details {
    max-width: 100%;
    text-align: center;
  }
}
.about-us__details h2 {
  font-family: "Cardo", sans-serif;
  font-size: 36px;
  line-height: 1.6;
  color: var(--color-3);
  padding-bottom: 36px;
  letter-spacing: 1px;
  max-width: 695px;
}
@media (max-width: 1024px) {
  .about-us__details h2 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .about-us__details h2 {
    font-size: 18px;
    padding-bottom: 32px;
    letter-spacing: 1px;
  }
}
.about-us__details h2 span {
  color: var(--color-2);
  font-style: italic;
}
.about-us__details p {
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  color: var(--color-22);
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .about-us__details p {
    font-size: 16px;
    padding-bottom: 0;
    letter-spacing: 1px;
  }
}
.about-us__info {
  padding-top: 75px;
}
@media (max-width: 1100px) {
  .about-us__info {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .about-us__info {
    padding-top: 40px;
  }
}
.about-us__info p {
  max-width: 816px;
  color: var(--color-3);
  font-family: "Cardo", sans-serif;
  font-size: 23px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .about-us__info p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about-us__info p {
    font-size: 16px;
  }
}
.about-us .btn.about-us__btn--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .about-us .btn.about-us__btn--mobile {
    display: block;
    margin-top: 10px;
  }
}

.features {
  background-color: var(--color-12);
  padding-block: 140px;
}
@media (max-width: 767px) {
  .features {
    padding-block: 80px 60px;
  }
}
.features .container-lg {
  max-width: 1720px;
}
.features__header {
  max-width: 1108px;
  margin-inline: auto;
  margin: 0 auto 65px auto;
  text-align: center;
}
@media (max-width: 767px) {
  .features__header {
    margin-bottom: 40px;
  }
}
.features__header h2 {
  color: var(--color-2);
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .features__header h2 {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.features__header p {
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media (max-width: 767px) {
  .features__header p {
    font-size: 16px;
  }
}
.features__header p:first-of-type {
  margin-bottom: 30px;
}
.features__header span {
  color: var(--color-2);
}
.features__inner {
  gap: 24px;
}
@media (max-width: 1024px) {
  .features__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.features__featured {
  max-width: 540px;
  width: 100%;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.features__featured:first-of-type .features__cta h3 {
  max-width: 186px;
}
@media (max-width: 1024px) {
  .features__featured:first-of-type .features__cta h3 {
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .features__featured {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .features__featured picture img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .features__featured img {
    width: 100%;
  }
}
.features__wrapper {
  padding: 40px 50px;
  height: 100%;
  border-radius: 24px;
  border: 1px solid var(--color-4);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top-color: transparent;
}
@media (max-width: 1440px) {
  .features__wrapper {
    padding: 30px;
  }
}
@media (max-width: 1100px) {
  .features__wrapper {
    padding: 20px 24px 24px 24px;
  }
}
@media (max-width: 767px) {
  .features__wrapper {
    border-radius: 12px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.features__wrapper p {
  font-family: "Cardo", sans-serif;
  color: var(--color-4);
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 1440px) {
  .features__wrapper p {
    max-width: 310px;
  }
}
@media (max-width: 1024px) {
  .features__wrapper p {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .features__wrapper p {
    font-size: 16px;
    max-width: 100%;
  }
}
.features__cta {
  margin-bottom: 15px;
  align-items: center;
}
@media (max-width: 767px) {
  .features__cta {
    margin-bottom: 10px;
  }
}
.features__cta h3 {
  font-size: 24px;
  max-width: 265px;
  color: var(--color-4);
  line-height: 1.4;
  font-family: "Cardo", sans-serif;
}
@media (max-width: 1440px) {
  .features__cta h3 {
    font-size: 21px;
  }
}
@media (max-width: 1024px) {
  .features__cta h3 {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .features__cta h3 {
    width: 100%;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .features__cta h3 {
    font-size: 22px;
  }
}
.features__cta-icon {
  border: 1px solid var(--color-4);
  border-radius: 100%;
  width: 50px;
  height: 50px;
}
@media (max-width: 1536px) {
  .features__cta-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
  }
}
@media (max-width: 1440px) {
  .features__cta-icon {
    padding: 9px;
  }
}
@media (max-width: 1100px) {
  .features__cta-icon {
    display: none;
    padding: 0;
  }
}

.img-w-text {
  background-color: var(--color-3);
}
.img-w-text .container-lg {
  max-width: 1990px;
  gap: 160px;
  padding-inline: 0;
}
@media (max-width: 1536px) {
  .img-w-text .container-lg {
    gap: 90px;
  }
}
@media (max-width: 1024px) {
  .img-w-text .container-lg {
    flex-direction: column;
    gap: 0;
  }
}
.img-w-text picture img {
  max-width: 668px;
  width: 100%;
  height: 100%;
  border-top-right-radius: 213px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .img-w-text picture img {
    max-width: unset;
    border-top-right-radius: unset;
  }
}
.img-w-text__details {
  padding: 145px 24px 145px 0;
}
@media (max-width: 1024px) {
  .img-w-text__details {
    padding: 70px 24px;
  }
}
.img-w-text__details span {
  display: block;
  color: var(--color-4);
  font-size: 20px;
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .img-w-text__details span {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
  }
}
.img-w-text__details h2 {
  max-width: 960px;
  width: 100%;
  white-space: pre-line;
  font-family: "Cardo", sans-serif;
  color: var(--color-1);
  font-style: italic;
  font-size: 36px;
  line-height: 1.4;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .img-w-text__details h2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .img-w-text__details h2 {
    font-size: 24px;
    line-height: 1.4;
    white-space: normal;
  }
}
.img-w-text__details p {
  max-width: 860px;
  font-family: "Cardo", sans-serif;
  color: var(--color-1);
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .img-w-text__details p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.img-w-text__details p::before {
  content: "";
  display: block;
  width: 66px;
  height: 1px;
  background-color: var(--color-4);
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .img-w-text__details p::before {
    margin-bottom: 30px;
  }
}

.featured-cards .container {
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .featured-cards .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.featured-cards__card {
  width: 100%;
}
@media (max-width: 1024px) {
  .featured-cards__card {
    max-width: 100%;
  }
}
.featured-cards__card picture img {
  border-top-right-radius: 140px;
  width: 100%;
  position: absolute;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .featured-cards__card picture img {
    border-radius: 0;
    max-width: 100%;
  }
}
.featured-cards__card:nth-of-type(2) picture img {
  border-top-left-radius: 140px;
  border-top-right-radius: 0;
}
@media (max-width: 1024px) {
  .featured-cards__card:nth-of-type(2) picture img {
    border-radius: 0;
  }
}
.featured-cards__content {
  padding-block: 430px 100px;
  max-width: 685px;
  color: var(--color-11);
  margin-inline: 124px;
  padding-inline: 24px;
}
@media (max-width: 1440px) {
  .featured-cards__content {
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .featured-cards__content {
    padding-block: 200px 60px;
    text-align: center;
  }
}
.featured-cards__content h2 {
  font-size: 48px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .featured-cards__content h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.featured-cards__content p {
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .featured-cards__content p {
    font-size: 16px;
  }
}
.featured-cards__content p:first-of-type {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .featured-cards__content p:first-of-type {
    margin-bottom: 25px;
  }
}

.events {
  background-color: var(--color-13);
  padding-block: 160px;
}
.events.bg-orange {
  background-color: var(--color-13);
}
@media (max-width: 767px) {
  .events {
    padding-block: 80px;
  }
}
@media (max-width: 767px) {
  .events .container-lg {
    overflow: hidden;
    padding-inline: 0;
  }
}
.events__single-event {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .events__single-event {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .events__single-event .events__header {
    align-items: center;
    justify-content: center;
    padding-left: 0;
  }
}
.events__single-event .events__header a {
  max-width: 301px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .events__single-event .events__header a {
    max-width: unset;
    width: unset;
  }
}
.events__header {
  color: var(--color-2);
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .events__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    padding: 0 0 50px 24px;
  }
}
.events__header h2 {
  font-size: 40px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .events__header h2 {
    font-size: 24px;
  }
}
.events__header a {
  color: inherit;
  border: 1px solid var(--color-2);
  border-radius: 76px;
  padding-block: 14px;
}
@media (max-width: 767px) {
  .events__header a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.events--featured {
  background-color: transparent;
}
@media (max-width: 767px) {
  .events--featured .container-lg {
    padding-inline: 24px;
  }
}
.events--featured .events__wrapper {
  width: 100%;
}
@media (max-width: 1024px) {
  .events--featured .events__wrapper {
    padding-right: 0;
  }
}
.events--featured .events__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1024px) {
  .events--featured .events__info {
    max-width: 100%;
    width: 100%;
  }
}
.events--featured .events__info h3 {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .events--featured .events__info h3 {
    margin-bottom: 3px;
  }
}
.events--featured .events__content a {
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .events--featured .events__content a {
    margin-top: 0;
  }
}
@media (max-width: 1024px) {
  .events--featured .events__contentbox {
    padding-right: 0;
  }
}
.events--featured .events__contentbox::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .events--featured .events__contentbox {
    flex-direction: column;
    width: 100%;
    gap: 24px;
    padding-left: 0;
  }
}
.events--featured .events__contentbox::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
.events--featured .events__content {
  width: 100%;
}
.events--featured .events__content:last-child {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .events--featured .events__content:last-child {
    padding-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .events--featured .events__inner {
    width: 100%;
  }
}
.events__content {
  padding-block: 50px;
  border-top: 1px solid var(--color-5);
  gap: 30px;
  overflow: hidden;
}
.events__content:last-child {
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .events__content:last-child {
    padding-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .events__content {
    flex-direction: column;
    padding-block: 0;
    border: 1px solid var(--color-5);
    border-radius: 12px;
    padding-bottom: 25px;
    width: 300px;
  }
}
@media (max-width: 767px) {
  .events__content {
    overflow: hidden;
    gap: 24px;
    width: 286px;
    border-radius: 16px;
  }
}
.events__content a {
  background-color: var(--color-2);
  text-decoration: none;
  color: var(--color-1);
  padding-block: 14px;
  flex-shrink: 0;
}
@media (max-width: 1440px) {
  .events__content a {
    padding: 10px 20px;
    font-size: 20px;
    max-width: 170px;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .events__content a {
    margin-left: 24px;
    max-width: unset;
    width: unset;
  }
}
@media (max-width: 767px) {
  .events__content a {
    font-size: 14px;
  }
}
.events__img picture img {
  width: 100%;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  .events__img picture img {
    border-radius: unset;
  }
}
.events__info {
  max-width: 513px;
}
@media (max-width: 1300px) {
  .events__info {
    max-width: 370px;
  }
}
@media (max-width: 1024px) {
  .events__info {
    padding: 20px 24px 24px 24px;
  }
}
@media (max-width: 767px) {
  .events__info {
    padding-bottom: 0;
  }
}
.events__info h3 {
  font-size: 35px;
  line-height: 1.5;
  color: var(--color-3);
  font-weight: 300;
}
@media (max-width: 1024px) {
  .events__info h3 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .events__info h3 {
    font-size: 20px;
  }
}
.events__info span {
  font-family: "Cardo", sans-serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.3;
  color: rgba(40, 49, 6, 0.6);
}
@media (max-width: 767px) {
  .events__info span {
    font-size: 16px;
  }
}
.events__info p {
  margin-top: 70px;
  font-family: "Cardo", sans-serif;
  color: var(--color-2);
  font-size: 22px;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .events__info p {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .events__info p {
    font-size: 16px;
  }
}
.events__inner {
  gap: 80px;
}
@media (max-width: 1536px) {
  .events__inner {
    max-width: 950px;
  }
}
@media (max-width: 1440px) {
  .events__inner {
    gap: 35px;
  }
}
@media (max-width: 1200px) {
  .events__inner {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .events__inner {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .events__inner {
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .events__contentbox {
    overflow-x: auto;
    width: fit-content;
    display: flex;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .events__contentbox {
    padding-inline: 24px;
  }
}
.events__wrapper::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1024px) {
  .events__wrapper {
    width: 100%;
    overflow: auto;
    width: calc(100% + 24px);
    padding-right: 24px;
  }
}

.blog-posts {
  padding: 124px 0;
  background-color: #ebecd0;
}
.blog-posts--resources-single-article {
  background-color: var(--color-20);
}
@media (max-width: 767px) {
  .blog-posts--resources-single-article .blog-posts {
    width: 100%;
    flex-direction: column;
  }
  .blog-posts--resources-single-article .blog-posts__posts {
    width: 100%;
    flex-direction: column;
    gap: 28px;
    padding-right: 0;
  }
  .blog-posts--resources-single-article .blog-posts__posts-blog {
    width: 100%;
  }
  .blog-posts--resources-single-article .blog-posts__posts-blog p {
    letter-spacing: 0.7px;
  }
  .blog-posts--resources-single-article .blog-posts__posts__header {
    gap: 20px;
  }
  .blog-posts--resources-single-article .blog-posts__inner {
    width: 100%;
  }
}
.blog-posts.bg-green {
  background-color: var(--color-8);
}
@media (max-width: 767px) {
  .blog-posts {
    padding-block: 80px;
  }
}
@media (max-width: 767px) {
  .blog-posts .container-lg {
    overflow: hidden;
    padding-inline: 0;
  }
}
@media (max-width: 1024px) {
  .blog-posts__header {
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.blog-posts .title {
  font-weight: 400;
  color: var(--color-3);
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 4%;
}
@media (max-width: 768px) {
  .blog-posts .title {
    font-size: 25px;
  }
}
.blog-posts a {
  font-weight: 400;
  font-size: 22px;
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: 4%;
  cursor: pointer;
  background-color: var(--color-3);
  border: none;
  outline: none;
  color: #fff;
  border-radius: 76px;
  padding: 14px 40px;
}
@media (max-width: 768px) {
  .blog-posts a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.blog-posts__posts {
  margin-top: 80px;
  gap: 59px;
}
.blog-posts__posts::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1130px) {
  .blog-posts__posts {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .blog-posts__posts {
    margin-top: 52px;
    overflow-x: scroll;
    width: fit-content;
    gap: 16px;
    padding-inline: 24px;
  }
}
.blog-posts__posts-blog {
  border-radius: 20px;
  flex: 1 0 25%;
}
@media (max-width: 768px) {
  .blog-posts__posts-blog {
    width: 286px;
    flex: none;
  }
}
@media (max-width: 768px) {
  .blog-posts__posts-blog .info {
    width: 100%;
    flex: none;
    border: 1px solid var(--color-4);
    border-radius: 12px;
    padding: 41px 24px 24px 24px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}
.blog-posts__posts-blog img {
  margin-bottom: 32.5px;
  object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .blog-posts__posts-blog img {
    margin-bottom: 0;
    border-radius: 12px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.blog-posts__posts-blog h2 {
  display: none;
}
@media (max-width: 1024px) {
  .blog-posts__posts-blog h2 {
    display: block;
    font-family: Cardo;
    font-weight: 400;
    color: #777e5c;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 4%;
    padding-top: 12px;
  }
}
.blog-posts__posts-blog h3 {
  font-family: Cardo;
  color: var(--color-4);
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 4%;
}
@media (max-width: 1130px) {
  .blog-posts__posts-blog h3 {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .blog-posts__posts-blog h3 {
    display: none;
  }
}
.blog-posts__posts-blog span {
  color: var(--color-2);
  border: 1px solid var(--color-2);
  border-radius: 44px;
  padding: 4px 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 4%;
  transition: 0.2s ease-in-out;
}
@media (max-width: 1024px) {
  .blog-posts__posts-blog span {
    font-size: 14px;
    padding: 4px 14px;
  }
}
.blog-posts__posts-blog span:hover {
  background-color: var(--color-2);
  color: #fff;
}
.blog-posts__posts-blog p {
  font-family: Cardo;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 4%;
  padding-top: 30px;
}
@media (max-width: 1024px) {
  .blog-posts__posts-blog p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 4%;
  }
}
@media (max-width: 768px) {
  .blog-posts__inner {
    width: 100%;
    overflow: auto;
    width: calc(100% + 24px);
    padding-right: 24px;
  }
  .blog-posts__inner::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1024px) {
  .blog-post {
    padding: 80px 20px;
  }
  .blog-post p {
    font-size: 30px;
  }
  .blog-post button {
    font-size: 20px;
    padding: 12px 30px;
  }
  .blog-post__posts {
    margin-top: 60px;
  }
  .blog-post__posts-blog {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .blog-post {
    padding: 60px 15px;
  }
  .blog-post img {
    margin-bottom: 0;
  }
  .blog-post > .container-lg > .flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .blog-post span {
    margin-top: 41px;
  }
  .blog-post h3 {
    display: none;
  }
  .blog-post__posts {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    width: calc(100% + 20px);
    margin-right: -20px;
  }
  .blog-post__posts::-webkit-scrollbar {
    display: none;
  }
  .blog-post__posts-blog {
    flex: 0 0 auto;
    border: 1px solid var(--color-4);
    width: 80%;
    border-radius: 12px;
  }
  .blog-post__posts-blog .info {
    padding-inline: 24px;
    padding-bottom: 24px;
  }
  .blog-post__posts-blog .info h2 {
    font-family: Cardo;
    font-weight: 400;
    font-style: italic;
    font-size: 16px;
    line-height: 25.6px;
    letter-spacing: 4%;
    display: block;
    color: var(--color-4);
    padding-top: 12px;
  }
  .blog-post__posts-blog .info p {
    padding-top: 28px;
    font-size: 18px;
  }
}
.footer {
  background-color: var(--color-3);
  color: #f5d7c2;
  padding-block: 100px;
  font-family: Arial, sans-serif;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 80px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1000px) {
  .footer__content {
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1536px) {
  .footer__content {
    gap: 40px;
  }
}
.footer .container-lg {
  margin: 0 auto;
  max-width: calc(100% - 248px);
}
@media (max-width: 1024px) {
  .footer .container-lg {
    max-width: 100%;
  }
}
.footer__subscription {
  max-width: 544px;
  width: 100%;
}
@media (max-width: 1536px) {
  .footer__subscription {
    max-width: 445px;
  }
}
@media (max-width: 1440px) {
  .footer__subscription {
    max-width: 100%;
    margin-bottom: 70px;
    text-align: center;
  }
}
@media (max-width: 1000px) {
  .footer__subscription {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .footer__subscription {
    margin-bottom: 50px;
  }
}
.footer__subscription .footer__title {
  font-weight: 400;
  font-size: 58px;
  line-height: 1.4;
  letter-spacing: 4%;
  color: var(--color-1);
}
@media (max-width: 1536px) {
  .footer__subscription .footer__title {
    font-size: 55px;
  }
}
@media (max-width: 768px) {
  .footer__subscription .footer__title {
    font-size: 28px;
    max-width: 300px;
    margin-inline: auto;
    letter-spacing: 1px;
  }
}
.footer__subscription .footer__description {
  font-family: Cardo;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  padding-top: 30px;
  letter-spacing: 1px;
  color: var(--color-1);
}
.footer__subscription .footer__form {
  display: flex;
  align-items: center;
  background-color: #f7e0cc;
  margin-top: 86.71px;
  border-radius: 50px;
  padding: 12px 16px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .footer__subscription .footer__form {
    padding: 10px;
    margin-top: 30px;
  }
}
.footer__subscription .footer__form .footer__input {
  border: none;
  outline: none;
  background: transparent;
  padding-left: 33px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 4%;
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: var(--color-2);
}
@media (max-width: 767px) {
  .footer__subscription .footer__form .footer__input {
    font-size: 14px;
    padding-left: 20px;
  }
}
.footer__subscription .footer__form .footer__input::placeholder {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-2);
  letter-spacing: 4%;
}
@media (max-width: 767px) {
  .footer__subscription .footer__form .footer__input::placeholder {
    font-size: 14px;
  }
}
.footer__subscription .footer__form .footer__button {
  background: transparent;
  border: 2px solid #c4794a;
  border-radius: 50%;
  max-width: 50px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (max-width: 767px) {
  .footer__subscription .footer__form .footer__button {
    max-width: 32px;
    height: 32px;
  }
}
.footer__subscription .footer__form .footer__button:hover {
  background-color: rgba(196, 121, 74, 0.1);
}
.footer__subscription .footer__form .footer__button .footer__button-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #c4794a;
  stroke-width: 2;
}
@media (max-width: 767px) {
  .footer__subscription .footer__form .footer__button .footer__button-icon {
    width: 15px;
    height: 14px;
  }
}
.footer__links-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 50px;
}
.footer__explore {
  max-width: 202px;
}
@media (max-width: 1000px) {
  .footer__explore {
    display: none;
  }
}
.footer__explore .footer__heading {
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 28px;
  line-height: 1.5;
  letter-spacing: 4%;
  color: var(--color-1);
}
.footer__explore .footer__list {
  list-style: none;
  padding: 0;
}
.footer__explore .footer__list li {
  padding-bottom: 24px;
}
.footer__explore .footer__list li a {
  text-decoration: none;
  font-family: Cardo;
  color: var(--color-1);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 4%;
}
.footer__explore .footer__list li a:hover {
  color: #f5d7c2;
}
.footer__explore .footer__list-terms li a {
  color: var(--color-4);
}
.footer__offerings {
  max-width: 268px;
}
@media (max-width: 1000px) {
  .footer__offerings {
    display: none;
  }
}
.footer__offerings .footer__heading {
  font-weight: 400;
  font-size: 24px;
  padding-bottom: 28px;
  line-height: 1.5;
  letter-spacing: 4%;
  color: var(--color-1);
}
.footer__offerings .footer__list {
  list-style: none;
  padding: 0;
}
.footer__offerings .footer__list li {
  padding-bottom: 24px;
}
.footer__offerings .footer__list li a {
  text-decoration: none;
  font-family: Cardo;
  color: var(--color-1);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 4%;
}
.footer__offerings .footer__list li a:hover {
  color: #f5d7c2;
}
.footer__pages {
  display: none;
  position: relative;
}
.footer__pages .footer__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  margin-top: 16px;
  padding: 14.5px 20px;
  background-color: transparent;
  border: 2px solid #a6a079;
  border-radius: 30px;
  font-size: 1.1rem;
  color: #e3dac9;
  cursor: pointer;
  outline: none;
  font-family: inherit;
}
.footer__pages .footer__select:focus {
  border-color: #d4c69e;
}
@media (max-width: 767px) {
  .footer__pages .footer__select option {
    color: var(--color-3);
  }
}
.footer__pages .footer__select-icon {
  position: absolute;
  right: 1rem;
  top: 67%;
  pointer-events: none;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #a6a079;
  stroke-width: 2;
}
.footer__pages .footer__heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 2.5;
  text-align: center;
}
@media (max-width: 1000px) {
  .footer__pages {
    display: block;
    max-width: 1000%;
    width: 100%;
  }
}
.footer__branding {
  max-width: 262px;
}
@media (max-width: 1440px) {
  .footer__branding {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .footer__branding {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 1000px) {
  .footer__branding .footer__logo {
    display: flex;
    justify-content: center;
  }
}
.footer__branding .footer__logo img {
  max-width: 192px;
  width: 100%;
}
.footer__branding .footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 216.49px;
  justify-content: center;
}
@media (max-width: 1440px) {
  .footer__branding .footer__socials {
    margin-top: 40px;
  }
}
.footer__branding .footer__socials .footer__social-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--color-1);
  font-size: 1.2rem;
}
.footer__branding .footer__socials .footer__social-icon:hover {
  border: 1px solid transparent;
  background-color: #d69261;
}
.footer__branding .footer__copyright {
  font-family: Cardo;
  font-weight: 400;
  padding-top: 36px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 4%;
  color: var(--color-1);
}
@media (max-width: 1024px) {
  .footer__branding .footer__copyright {
    text-align: center;
  }
}

.hero--v2__img {
  width: 100%;
  height: 100%;
}
.hero--v2__img img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero--v2__title {
  padding-block: 275px 200px;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (max-width: 1024px) {
  .hero--v2__title {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero--v2__title {
    padding-block: 135px 110px;
  }
}
.hero--v2__title h2 {
  font-family: "Cardo", sans-serif;
  color: var(--color-1);
  font-size: 68px;
  font-style: italic;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .hero--v2__title h2 {
    text-align: center;
    font-size: 36px;
    line-height: 1.4;
  }
}
.hero--v2__title h2 span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
@media (max-width: 767px) {
  .hero--v2__title h2 span {
    display: block;
  }
}

.our-story .container-sm {
  padding-block: 140px;
}
@media (max-width: 767px) {
  .our-story .container-sm {
    padding-block: 80px;
  }
}
.our-story .container-sm h2 {
  color: var(--color-2);
  font-size: 40px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .our-story .container-sm h2 {
    line-height: 1.6;
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.our-story__inner {
  gap: 60px;
}
@media (max-width: 1024px) {
  .our-story__inner {
    flex-direction: column;
    gap: 30px;
  }
}
.our-story__card {
  max-width: 663px;
  padding: 65px 35px;
  border: 1px solid var(--color-14);
  border-radius: 24px;
  gap: 64px;
}
@media (max-width: 1100px) {
  .our-story__card {
    padding: 40px 24px;
  }
}
@media (max-width: 1024px) {
  .our-story__card {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .our-story__card {
    gap: 30px;
  }
}
.our-story__card:nth-of-type(2) .our-story__icon svg {
  width: 200px;
}
.our-story__card h3 {
  color: var(--color-3);
  font-size: 20px;
  font-family: "Cardo", sans-serif;
  line-height: 1.6;
  letter-spacing: normal;
}
@media (max-width: 767px) {
  .our-story__card h3 {
    font-size: 16px;
  }
}
.our-story__card h3 span {
  font-style: italic;
  color: var(--color-2);
}
@media (max-width: 767px) {
  .our-story__icon svg {
    width: 167px;
    height: 100px;
  }
}

.img-w-text--v2 {
  background-color: var(--color-4);
}
.img-w-text--v2 .container {
  max-width: 1668px;
  margin-inline: auto;
  padding-inline: 24px;
  padding-block: 120px;
  gap: 160px;
}
@media (max-width: 1536px) {
  .img-w-text--v2 .container {
    gap: 125px;
  }
}
@media (max-width: 1440px) {
  .img-w-text--v2 .container {
    gap: 65px;
    justify-content: normal;
  }
}
@media (max-width: 1110px) {
  .img-w-text--v2 .container {
    flex-direction: column;
    gap: 50px;
    padding-block: 60px 80px;
  }
}
.img-w-text--v2__img {
  max-width: 685px;
}
@media (max-width: 1100px) {
  .img-w-text--v2__img {
    max-width: unset;
  }
}
.img-w-text--v2__img img {
  width: 100%;
  border-radius: 24px;
}
.img-w-text--v2__details {
  max-width: 780px;
}
@media (max-width: 1440px) {
  .img-w-text--v2__details {
    max-width: 630px;
  }
}
@media (max-width: 1100px) {
  .img-w-text--v2__details {
    max-width: 100%;
  }
}
.img-w-text--v2__details span {
  display: block;
  color: var(--color-1);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 1440px) {
  .img-w-text--v2__details span {
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .img-w-text--v2__details span {
    font-size: 16px;
  }
}
.img-w-text--v2__details h2 {
  font-family: "Cardo", sans-serif;
  color: var(--color-15);
  font-size: 30px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 1440px) {
  .img-w-text--v2__details h2 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .img-w-text--v2__details h2 {
    font-size: 24px;
    line-height: 1.4;
  }
}
.img-w-text--v2__details p {
  max-width: 757px;
  font-family: "Cardo", sans-serif;
  color: var(--color-15);
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 1100px) {
  .img-w-text--v2__details p {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .img-w-text--v2__details p {
    font-size: 16px;
    line-height: 1.6;
  }
}
.img-w-text--v2__details p:nth-of-type(1) {
  margin-bottom: 30px;
}

.our-mission {
  padding-block: 120px;
  background-image: url("/images/img-w-text--v2-bg.png");
  background-size: 100% 100%;
}
@media (max-width: 767px) {
  .our-mission {
    padding-block: 80px 60px;
    margin-bottom: 80px;
  }
}
.our-mission .container-lg {
  max-width: 1668px;
}
.our-mission h2 {
  color: var(--color-2);
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .our-mission h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .our-mission h2 {
    text-align: left;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.our-mission__header {
  margin-bottom: 80px;
  gap: 30px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .our-mission__header {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .our-mission__header {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 40px;
    margin-bottom: 60px;
  }
}
.our-mission__header p {
  font-family: "Cardo", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-3);
  max-width: 880px;
  letter-spacing: 1px;
}
@media (max-width: 1536px) {
  .our-mission__header p {
    max-width: 850px;
  }
}
@media (max-width: 1440px) {
  .our-mission__header p {
    max-width: 778px;
  }
}
@media (max-width: 1024px) {
  .our-mission__header p {
    max-width: unset;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .our-mission__header p {
    text-align: left;
    font-size: 16px;
    letter-spacing: unset;
  }
}
.our-mission__header a {
  padding-block: 14px;
  background-color: var(--color-2);
  color: var(--color-1);
}
@media (max-width: 1440px) {
  .our-mission__header a {
    max-width: 339px;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .our-mission__header a {
    max-width: unset;
    width: unset;
    font-size: 14px;
    padding: 10px 20px;
  }
}
.our-mission__cards {
  gap: 22px;
}
@media (max-width: 767px) {
  .our-mission__cards {
    gap: 24px;
  }
}
.our-mission__card {
  border: 1px solid var(--color-2);
  border-radius: 24px;
  padding: 40px 45px;
  gap: 55px;
  flex: 1 0 20%;
}
@media (max-width: 1440px) {
  .our-mission__card {
    padding: 50px 30px;
  }
}
@media (max-width: 1200px) {
  .our-mission__card {
    flex: 1 0 35%;
  }
}
@media (max-width: 767px) {
  .our-mission__card {
    padding: 48px 33px;
    flex: none;
    width: 100%;
    gap: 24px;
  }
  .our-mission__card:nth-of-type(1) .our-mission__icon svg {
    width: 105px;
    height: 93px;
  }
  .our-mission__card:nth-of-type(2) .our-mission__icon svg {
    width: 133px;
    height: 100px;
  }
  .our-mission__card:nth-of-type(3) .our-mission__icon svg {
    width: 89px;
    height: 100px;
  }
  .our-mission__card:nth-of-type(4) .our-mission__icon svg {
    width: 104px;
    height: 100px;
  }
}
.our-mission__card h3 {
  text-align: center;
  color: var(--color-3);
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  max-width: 314px;
}
@media (max-width: 767px) {
  .our-mission__card h3 {
    font-size: 18px;
    line-height: 1.6;
  }
}

.cta {
  margin-bottom: 140px;
  padding-inline: 24px;
}
@media (max-width: 767px) {
  .cta {
    margin-bottom: 80px;
  }
}
.cta .container-lg {
  padding-inline: 0;
  max-width: 1668px;
}
.cta--v2 .cta__content {
  padding-block: 200px;
}
@media (max-width: 767px) {
  .cta--v2 .cta__content {
    padding-block: 150px 40px;
  }
}
.cta--v2 .cta__content p {
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .cta--v2 .cta__content p {
    letter-spacing: normal;
  }
}
.cta--v2 .cta__content h2 {
  font-family: "Cardo", sans-serif;
  font-style: italic;
}
.cta--v2 .cta__content h2 span {
  font-style: normal;
  font-family: "Poppins", sans-serif;
}
.cta__img {
  width: 100%;
  height: 100%;
}
.cta__img img {
  position: absolute;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.cta__content {
  padding: 140px 24px;
  max-width: 921px;
  margin-inline: auto;
  color: var(--color-1);
}
@media (max-width: 767px) {
  .cta__content {
    padding-block: 130px 40px;
  }
}
.cta__content h2 {
  font-family: "Cardo", sans-serif;
  font-style: italic;
  font-size: 36px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cta__content h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
}
@media (max-width: 500px) {
  .cta__content h2 {
    max-width: 260px;
    margin-inline: auto;
  }
}
.cta__content p {
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 60px;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .cta__content p {
    font-size: 16px;
    margin-bottom: 40px;
    letter-spacing: 0.3px;
  }
}
.cta__content a {
  background-color: var(--color-2);
  color: var(--color-1);
  display: inline-block;
}
@media (max-width: 767px) {
  .cta__content a {
    padding: 10px 20px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 154px;
    display: block;
    width: 100%;
    margin-inline: auto;
  }
}

.hero-w-bg__content {
  padding-block: 221px 138px;
}
@media (max-width: 767px) {
  .hero-w-bg__content {
    padding-block: 117px 77px;
  }
}
.hero-w-bg.text-darkorange .hero-w-bg__title {
  text-transform: uppercase;
  color: var(--color-2);
  font-style: normal;
  font-family: "Poppins", sans-serif;
}
.hero-w-bg.text-darkorange .hero-w-bg__title span {
  font-family: "Cardo", sans-serif;
  text-transform: none;
}
@media (max-width: 767px) {
  .hero-w-bg.text-darkorange .hero-w-bg__content {
    padding-block: 115px 75px;
  }
}
.hero-w-bg.hero--terms-condition.text-orange .hero-w-bg__title {
  color: var(--color-5);
  font-style: italic;
}
@media (max-width: 767px) {
  .hero-w-bg--faqs .hero-w-bg__title {
    max-width: 352px;
  }
}
.hero-w-bg__title {
  font-family: "Cardo", sans-serif;
  color: var(--color-4);
  font-size: 68px;
  line-height: 1.4;
  font-style: italic;
}
@media (max-width: 767px) {
  .hero-w-bg__title {
    font-size: 36px;
    line-height: 1.2;
    max-width: 232px;
    margin-inline: auto;
  }
}
.hero-w-bg__title span {
  font-family: "Poppins", sans-serif;
}
.hero-w-bg__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.village-wisdom {
  background-color: var(--color-4);
  background-image: url(/images/village-wisdom-bg.png);
}
.village-wisdom .container-lg {
  max-width: 1703px;
  padding-block: 169px;
  gap: 166px;
}
@media (max-width: 1024px) {
  .village-wisdom .container-lg {
    flex-direction: column;
    gap: 50px;
    padding-block: 72px;
  }
}
.village-wisdom__details {
  max-width: 740px;
}
@media (max-width: 1024px) {
  .village-wisdom__details {
    max-width: 100%;
  }
}
.village-wisdom__details p {
  color: var(--color-1);
  font-family: "Cardo", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.96px;
}
@media (max-width: 1024px) {
  .village-wisdom__details p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .village-wisdom__details p {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.village-wisdom__icon-wrapper {
  height: 234px;
  max-width: 766px;
  border-radius: 100%;
  border: 1px solid var(--color-1);
  width: 100%;
}
@media (max-width: 767px) {
  .village-wisdom__icon-wrapper {
    max-width: 352px;
    height: 107px;
  }
}
.village-wisdom__title {
  color: var(--color-1);
  font-family: "Cardo", sans-serif;
  max-width: 449px;
  font-size: 30px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .village-wisdom__title {
    font-size: 16px;
    max-width: 252px;
  }
}
.village-wisdom__title span {
  font-style: italic;
}

.services-list {
  margin-bottom: 200px;
}
@media (max-width: 767px) {
  .services-list {
    margin-bottom: 80px;
  }
}
.services-list .container {
  max-width: 1720px;
  margin-inline: auto;
  padding-inline: 24px;
}
.services-list__img {
  flex: 1 0 50%;
}
.services-list__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .services-list__img img {
    border-radius: 24px;
  }
}
.services-list__details {
  flex: 1 0 50%;
  margin-inline: auto;
  padding: 30px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .services-list__details {
    padding: 0;
  }
}
.services-list__info {
  max-width: 602px;
}
@media (max-width: 1024px) {
  .services-list__info {
    max-width: unset;
  }
}
.services-list__header {
  gap: 40px;
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .services-list__header {
    margin-bottom: 24px;
    gap: 20px;
  }
}
.services-list__header h3 {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 32px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .services-list__header h3 {
    font-size: 20px;
  }
}
.services-list__inner p {
  font-family: "Cardo", sans-serif;
  color: var(--color-4);
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .services-list__inner p {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}
.services-list__inner p:nth-of-type(2) {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .services-list__wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
  .services-list__wrapper:last-child {
    margin-bottom: 0;
  }
}
.services-list__wrapper:nth-of-type(1) .services-list__img img {
  border-radius: 24px;
  border-bottom-right-radius: unset;
}
.services-list__wrapper:nth-of-type(2) .services-list__info p {
  letter-spacing: 0.2px;
}
.services-list__wrapper:nth-of-type(2) .services-list__img img {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.services-list__wrapper:nth-of-type(3) .services-list__info p {
  letter-spacing: 0.2px;
}
.services-list__wrapper:nth-of-type(3) .services-list__img img {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
.services-list__wrapper:nth-of-type(4) .services-list__img img {
  border-top-right-radius: 24px;
  border-bottom-right-radius: 24px;
}
.services-list__wrapper:nth-of-type(4) .services-list__info p {
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .services-list__wrapper:nth-of-type(4) .services-list__info p {
    letter-spacing: 0.5px;
  }
}

.tabs {
  margin-bottom: 162px;
}
@media (max-width: 767px) {
  .tabs {
    margin-bottom: 80px;
  }
}
.tabs .container {
  max-width: 1990px;
  margin-inline: auto;
}
.tabs__header {
  max-width: 1737px;
  width: 100%;
  padding-inline: 24px;
  margin: 0 auto 102px auto;
}
@media (max-width: 1024px) {
  .tabs__header {
    margin-bottom: 48px;
  }
}
.tabs__header h2 {
  color: var(--color-3);
  font-size: 48px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .tabs__header h2 {
    font-size: 38px;
    margin-bottom: 28px;
  }
}
@media (max-width: 767px) {
  .tabs__header h2 {
    max-width: 288px;
    font-size: 24px;
  }
}
.tabs__header h2 span {
  font-family: "Cardo", sans-serif;
  font-style: italic;
}
.tabs__buttons {
  gap: 25px;
}
.tabs__buttons::-webkit-scrollbar {
  display: none;
}
@media (max-width: 1200px) {
  .tabs__buttons {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 767px) {
  .tabs__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .tabs__buttons {
    gap: 12px;
  }
}
.tabs__buttons button {
  border: 2px solid rgba(204, 125, 69, 0.5019607843);
  border-radius: 69px;
  background-color: transparent;
  color: var(--color-2);
  padding: 12px 24px;
  font-size: 20px;
  line-height: 1.2;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .tabs__buttons button {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tabs__buttons button {
    font-size: 14px;
    line-height: 1.2;
    padding: 10px 20px;
    width: 100%;
  }
}
.tabs__buttons button.active {
  background-color: var(--color-2);
  color: var(--color-15);
}
.tabs__buttons-wrapper::-webkit-scrollbar {
  display: none;
}
.tabs__icon img {
  height: 120px;
}
@media (max-width: 767px) {
  .tabs__icon img {
    height: 110px;
  }
}
.tabs__inner {
  transition: all 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}
.tabs__inner.active {
  max-height: max-content;
  overflow: visible;
}
@media (max-width: 1024px) {
  .tabs__inner {
    flex-direction: column;
  }
}
.tabs__content {
  padding: 110px 150px 110px 124px;
  width: 100%;
  text-align: center;
}
@media (max-width: 1200px) {
  .tabs__content {
    padding: 40px 20px;
  }
}
.tabs__content:first-child {
  color: var(--color-4);
  background-color: var(--color-16);
  border-top-right-radius: 140px;
}
@media (max-width: 1024px) {
  .tabs__content:first-child {
    display: flex;
    border-radius: unset;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .tabs__content:first-child .tabs__icon svg {
    width: 63px;
    height: 80px;
  }
}
.tabs__content:last-child {
  color: var(--color-1);
  background-color: var(--color-4);
  border-top-left-radius: 140px;
}
@media (max-width: 1024px) {
  .tabs__content:last-child {
    display: flex;
    border-radius: unset;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .tabs__content:last-child .tabs__icon svg {
    width: 139px;
    height: 80px;
  }
}
.tabs__info {
  max-width: 685px;
  width: 100%;
}
.tabs__info h2 {
  color: inherit;
  font-family: "Cardo", sans-serif;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 65px;
  color: inherit;
  font-style: italic;
}
@media (max-width: 767px) {
  .tabs__info h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
.tabs__info h2 span {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
.tabs__info p {
  color: inherit;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Cardo", sans-serif;
  margin-top: 50px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .tabs__info p {
    font-size: 14px;
    margin-top: 30px;
  }
}

.featured-events {
  padding-block: 160px;
}
.featured-events__header {
  margin-bottom: 80px;
}
.featured-events__header h2 {
  color: var(--color-2);
  font-size: 40px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .featured-events__header h2 {
    font-size: 24px;
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .featured-events__header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }
}
.featured-events__select {
  width: 270px;
  border: 2px solid var(--color-17);
  border-radius: 65px;
}
@media (max-width: 1024px) {
  .featured-events__select {
    max-width: 100%;
    width: 100%;
  }
}
.featured-events__select select {
  appearance: none;
  outline: none;
  border: none;
  color: var(--color-4);
  padding: 12px 24px;
  font-size: 18px;
  background-color: transparent;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .featured-events__select select {
    font-size: 14px;
  }
}
.featured-events__select svg {
  position: absolute;
  top: 19px;
  right: 24px;
}
@media (max-width: 767px) {
  .featured-events__select svg {
    width: 15px;
    height: 7px;
    top: 17px;
  }
}
.featured-events__header-info {
  gap: 16px;
}
@media (max-width: 1024px) {
  .featured-events__header-info {
    width: 100%;
  }
}
.featured-events__header-info button {
  color: var(--color-2);
  font-size: 18px;
  line-height: 1.2;
  border-radius: 69px;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid var(--color-18);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .featured-events__header-info button {
    display: none;
  }
}

.gallery .container-lg {
  gap: 24px;
  padding-block: 214px 160px;
}
@media (max-width: 1200px) {
  .gallery .container-lg {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .gallery .container-lg {
    padding-block: 100px;
    gap: 40px;
  }
}
.gallery__slides {
  max-width: 730px;
  width: 100%;
}
@media (max-width: 1536px) {
  .gallery__slides {
    max-width: 600px;
  }
}
@media (max-width: 1200px) {
  .gallery__slides {
    max-width: 100%;
  }
}
.gallery__slider {
  margin-bottom: 24px;
}
@media (max-width: 1024px) {
  .gallery__slider {
    margin-bottom: 0;
  }
}
.gallery__slider .swiper-slide img {
  max-width: 730px;
  height: 465px;
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .gallery__slider .swiper-slide img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gallery__slider .swiper-slide img {
    height: 316px;
  }
}
.gallery__slider .swiper-pagination-bullets {
  bottom: 32px;
  right: 124px;
  display: flex;
  margin: 0;
  gap: 20px;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: none;
}
@media (max-width: 1200px) {
  .gallery__slider .swiper-pagination-bullets {
    display: flex;
  }
}
.gallery__slider .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1.2px solid var(--color-1);
  opacity: 1;
  background: transparent;
  margin: 0;
}
.gallery__slider .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--color-4);
}
@media (max-width: 1200px) {
  .gallery__thumbs {
    display: none;
  }
}
.gallery__thumbs .swiper-slide {
  cursor: pointer;
}
.gallery__thumbs .swiper-slide img {
  width: 229px;
  height: 194px;
  object-fit: cover;
  border-radius: 12px;
}
.gallery__details {
  max-width: 825px;
  width: 100%;
  padding-top: 20px;
}
@media (max-width: 1200px) {
  .gallery__details {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .gallery__details {
    padding-top: 0;
  }
}
.gallery__details-inner {
  padding-bottom: 60px;
  border-bottom: 1px solid var(--color-5);
}
@media (max-width: 1200px) {
  .gallery__details-inner {
    padding-bottom: 50px;
  }
}
.gallery__details-inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  color: var(--color-3);
  margin-bottom: 16px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .gallery__details-inner h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
.gallery__details-inner p {
  font-family: "Cardo", sans-serif;
  font-style: italic;
  font-size: 26px;
  line-height: 1.3;
  color: var(--color-22);
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .gallery__details-inner p {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.gallery__details-inner span {
  font-family: "Cardo", sans-serif;
  color: var(--color-2);
  display: block;
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .gallery__details-inner span {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.gallery__details-inner a {
  display: inline-block;
  padding: 14px 40px;
  color: var(--color-1);
  background-color: var(--color-4);
}
@media (max-width: 767px) {
  .gallery__details-inner a {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.gallery__details-info {
  color: var(--color-3);
  font-family: "Cardo", sans-serif;
}
.gallery__details-info h3 {
  font-family: inherit;
  color: inherit;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  padding-block: 60px 30px;
}
@media (max-width: 1200px) {
  .gallery__details-info h3 {
    padding-block: 50px 30px;
  }
}
@media (max-width: 767px) {
  .gallery__details-info h3 {
    font-size: 18px;
    max-width: 337px;
  }
}
.gallery__details-info p {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.8px;
}
@media (max-width: 767px) {
  .gallery__details-info p {
    font-size: 16px;
    letter-spacing: 0.7px;
  }
}
.gallery__details-info p:first-of-type {
  margin-bottom: 20px;
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .gallery__details-info p:first-of-type {
    letter-spacing: 0.8px;
  }
}
.gallery__details-info p:nth-of-type(3) {
  letter-spacing: 0.7px;
}
.gallery__details-info p a {
  color: var(--color-2);
}
.gallery__details-info ul {
  padding: 20px 0 20px 28px;
}
.gallery__details-info ul li {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .gallery__details-info ul li {
    font-size: 16px;
  }
}
.gallery__details-wrapper {
  text-transform: uppercase;
  gap: 28px;
  color: var(--color-4);
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  padding-top: 60px;
}
@media (max-width: 767px) {
  .gallery__details-wrapper {
    padding-top: 40px;
    font-size: 16px;
    gap: 16px;
  }
}
.gallery__details-icons {
  gap: 16px;
}
@media (max-width: 767px) {
  .gallery__details-icons {
    gap: 12px;
  }
}
.gallery__details-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-4);
  border-radius: 100%;
}

.resources .container-lg {
  padding-block: 160px;
}
@media (max-width: 767px) {
  .resources .container-lg {
    padding-block: 80px;
  }
}
.resources__header {
  margin-bottom: 100px;
  gap: 30px;
}
@media (max-width: 767px) {
  .resources__header {
    margin-bottom: 50px;
  }
}
.resources__header form {
  max-width: 403px;
}
@media (max-width: 1024px) {
  .resources__header form {
    display: none;
  }
}
.resources__header form input[type=text] {
  width: 100%;
  color: var(--color-4);
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 18px;
  line-height: 1.2;
  border-bottom: 1px solid var(--color-4);
  padding: 0 27px 16px 0;
}
.resources__header form input[type=text]::placeholder {
  color: var(--color-4);
}
.resources__header form button {
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background-color: transparent;
}
.resources__cta {
  gap: 24px;
}
@media (max-width: 1024px) {
  .resources__cta {
    justify-content: space-between;
    width: 100%;
  }
}
.resources__cta-btns {
  gap: 24px;
}
@media (max-width: 1024px) {
  .resources__cta-btns {
    display: none;
  }
}
.resources__cta-btns button {
  border: 2px solid var(--color-18);
  color: var(--color-2);
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  padding: 12px 24px;
  outline: none;
  background-color: transparent;
  border-radius: 69px;
  cursor: pointer;
}
.resources__select {
  width: 270px;
  border: 2px solid var(--color-17);
  border-radius: 65px;
}
@media (max-width: 1024px) {
  .resources__select {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .resources__select {
    max-width: 279px;
  }
}
.resources__select select {
  appearance: none;
  outline: none;
  border: none;
  color: var(--color-4);
  padding: 12px 24px;
  font-size: 18px;
  background-color: transparent;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .resources__select select {
    font-size: 14px;
  }
}
.resources__select svg {
  position: absolute;
  top: 19px;
  right: 24px;
}
@media (max-width: 767px) {
  .resources__select svg {
    width: 15px;
    height: 7px;
    top: 17px;
  }
}
.resources button.hidden {
  display: none;
  border: none;
  outline: none;
  background-color: transparent;
}
@media (max-width: 1024px) {
  .resources button.hidden {
    display: block;
  }
}
.resources__cards {
  gap: 100px 60px;
}
@media (max-width: 767px) {
  .resources__cards {
    gap: 24px;
    flex-direction: column;
  }
}
.resources__card {
  max-width: 518px;
  flex: 1 0 30%;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .resources__card {
    width: 100%;
    max-width: 100%;
    flex: none;
    border-radius: 12px;
    overflow: hidden;
  }
}
.resources__card picture img {
  border-radius: 20px;
}
@media (max-width: 1024px) {
  .resources__card picture img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .resources__card picture img {
    border-radius: unset;
  }
}
.resources__card p {
  font-family: "Cardo", sans-serif;
  font-size: 26px;
  line-height: 1.4;
  color: var(--color-3);
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .resources__card p {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 0.7px;
  }
}
@media (max-width: 767px) {
  .resources__card:nth-of-type(5) {
    display: none;
  }
}
@media (max-width: 767px) {
  .resources__card:nth-of-type(6) {
    display: none;
  }
}
@media (max-width: 767px) {
  .resources__card:nth-of-type(7) {
    display: none;
  }
}
@media (max-width: 767px) {
  .resources__card:nth-of-type(8) {
    display: none;
  }
}
@media (max-width: 767px) {
  .resources__card:nth-of-type(9) {
    display: none;
  }
}
.resources__card-header {
  padding-block: 30px;
}
.resources__card-header .btn {
  font-size: 16px;
  line-height: 1.4;
  font-family: "Poppins", sans-serif;
  border: 1px solid var(--color-2);
  color: var(--color-2);
  border-radius: 44px;
  padding: 4px 18px;
}
@media (max-width: 767px) {
  .resources__card-header .btn {
    font-size: 14px;
    line-height: 1.6;
    padding: 4px 14px;
  }
}
@media (max-width: 767px) {
  .resources__inner {
    border: 1px solid var(--color-4);
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
    padding: 0 24px 32px 24px;
  }
}
.resources__date {
  font-family: "Cardo", sans-serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-4);
}
@media (max-width: 767px) {
  .resources__date {
    display: none;
  }
}
.resources__date.hidden {
  display: none;
  font-size: 16px;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .resources__date.hidden {
    display: block;
  }
}
.resources__pagination {
  padding-top: 140px;
}
@media (max-width: 767px) {
  .resources__pagination {
    padding-top: 80px;
  }
}
.resources__pagination-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1.5px solid var(--color-4);
  background-color: transparent;
  outline: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.resources__pagination-wrapper.disabled {
  border: 1.5px solid var(--color-19);
}
.resources__pagination-inner {
  gap: 28px;
  padding-inline: 45px;
}
@media (max-width: 767px) {
  .resources__pagination-inner {
    padding-inline: 51px;
    gap: 32px;
  }
}
.resources__pagination-inner button {
  color: var(--color-4);
  font-size: 23px;
  line-height: 1.2;
  background-color: transparent;
  outline: none;
  border: none;
  cursor: pointer;
}
.resources__pagination-inner button:first-child {
  color: var(--color-2);
}
.resources__pagination-inner button:nth-of-type(4) {
  display: none;
}
@media (max-width: 767px) {
  .resources__pagination-inner button:nth-of-type(4) {
    display: block;
  }
}
@media (max-width: 767px) {
  .resources__pagination-inner button:nth-of-type(5) {
    display: none;
  }
}
@media (max-width: 767px) {
  .resources__pagination-inner button:nth-of-type(6) {
    display: none;
  }
}

.resources-single-article {
  padding-block: 200px 140px;
}
@media (max-width: 767px) {
  .resources-single-article {
    padding-block: 135px 80px;
  }
}
.resources-single-article__tags {
  gap: 16px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .resources-single-article__tags {
    gap: 12px;
    margin-bottom: 24px;
  }
}
.resources-single-article__tags div {
  color: var(--color-2);
  border: 1px solid var(--color-2);
  border-radius: 44px;
  padding: 4px 22px;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .resources-single-article__tags div {
    font-size: 14px;
  }
}
.resources-single-article__header {
  max-width: 1144px;
  margin-inline: auto;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .resources-single-article__header {
    margin-bottom: 45px;
  }
}
.resources-single-article__header h1 {
  color: var(--color-3);
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .resources-single-article__header h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.resources-single-article__header span {
  display: block;
  font-style: italic;
  text-align: center;
  color: var(--color-4);
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .resources-single-article__header span {
    font-size: 18px;
  }
}
.resources-single-article__img-wrapper picture img {
  border-radius: 20px;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 1024px) {
  .resources-single-article__img-wrapper picture img {
    width: 100%;
    margin-bottom: 24px;
  }
}
.resources-single-article__icon-wrapper {
  text-transform: uppercase;
  gap: 28px;
  color: var(--color-4);
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.3px;
  margin-bottom: 117px;
}
@media (max-width: 767px) {
  .resources-single-article__icon-wrapper {
    margin-bottom: 48px;
    font-size: 16px;
    gap: 16px;
  }
}
.resources-single-article__icons {
  gap: 16px;
}
@media (max-width: 767px) {
  .resources-single-article__icons {
    gap: 12px;
  }
}
.resources-single-article__icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-4);
  border-radius: 100%;
}
@media (max-width: 767px) {
  .resources-single-article__icon {
    width: 34px;
    height: 34px;
  }
}
.resources-single-article p {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .resources-single-article p {
    font-size: 16px;
    letter-spacing: 0.3px;
  }
}
.resources-single-article p:first-child {
  letter-spacing: 0.9px;
}
.resources-single-article p:nth-of-type(2) {
  margin-top: 30px;
}
.resources-single-article p:nth-of-type(8) {
  background-color: red;
}
.resources-single-article p a {
  color: var(--color-2);
}
.resources-single-article h3 {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  padding-block: 70px 35px;
}
@media (max-width: 767px) {
  .resources-single-article h3 {
    padding-block: 50px 25px;
    font-size: 18px;
    line-height: 1.6;
  }
}
.resources-single-article ul {
  padding: 40px 0 24px 35px;
}
.resources-single-article ul li {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.9px;
}
@media (max-width: 767px) {
  .resources-single-article ul li {
    font-size: 16px;
  }
}
.resources-single-article__quote {
  max-width: 1108px;
  margin: 88px auto;
  border-radius: 24px;
  border: 1px solid var(--color-2);
}
@media (max-width: 767px) {
  .resources-single-article__quote {
    margin-block: 48px;
  }
}
.resources-single-article__quote p {
  max-width: 892px;
  margin-inline: auto;
  font-family: "Cardo", sans-serif;
  font-style: italic;
  color: var(--color-2);
  font-size: 28px;
  line-height: 1.6;
  text-align: center;
  padding-block: 50px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .resources-single-article__quote p {
    font-size: 18px;
    padding: 28px 24px;
    max-width: 100%;
    text-align: left;
  }
}
.resources-single-article__cta {
  padding-top: 90px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .resources-single-article__cta {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .resources-single-article__cta {
    padding-top: 48px;
  }
}
@media (max-width: 1024px) {
  .resources-single-article__cta picture {
    width: 100%;
  }
  .resources-single-article__cta picture img {
    width: 100%;
  }
}
.resources-single-article__cta-details {
  max-width: 511px;
}
@media (max-width: 1024px) {
  .resources-single-article__cta-details {
    max-width: unset;
  }
}
.resources-single-article__cta-details h2 {
  max-width: 465px;
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 28px;
  line-height: 1.6;
  margin-bottom: 24px;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .resources-single-article__cta-details h2 {
    max-width: unset;
  }
}
@media (max-width: 767px) {
  .resources-single-article__cta-details h2 {
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
  }
}
.resources-single-article__cta-details h2 span {
  color: var(--color-2);
}
.resources-single-article__cta-details p {
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: var(--color-3);
  margin-bottom: 80px;
  letter-spacing: normal;
}
@media (max-width: 1100px) {
  .resources-single-article__cta-details p {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .resources-single-article__cta-details p {
    font-size: 16px;
  }
}
.resources-single-article__cta-details a {
  color: var(--color-15);
  background-color: var(--color-2);
  padding-block: 14px;
  display: inline-block;
}
@media (max-width: 767px) {
  .resources-single-article__cta-details a {
    padding: 10px 20px;
    font-size: 16px;
  }
}

.faqs {
  margin-block: 160px;
}
@media (max-width: 1024px) {
  .faqs {
    margin-block: 88px;
  }
}
.faqs__join-village {
  margin-block: 17px;
}
.faqs__join-village .faqs__answer {
  padding-top: 36px;
  max-height: 0;
}
@media (max-width: 767px) {
  .faqs__join-village .faqs__answer {
    padding-top: 24px;
  }
}
.faqs__join-village .faqs__answer.is-open {
  padding-bottom: 36px;
}
@media (max-width: 767px) {
  .faqs__join-village .faqs__answer.is-open {
    padding-block: 24px;
  }
}
.faqs__join-village .faqs__answer p:first-child {
  padding-bottom: 0;
}
.faqs .container-lg {
  gap: 30px;
}
@media (max-width: 1100px) {
  .faqs .container-lg {
    flex-direction: column;
    gap: 52px;
  }
}
.faqs__details {
  max-width: 486px;
}
@media (max-width: 1100px) {
  .faqs__details {
    max-width: 100%;
    width: 100%;
  }
}
.faqs__details h2 {
  font-size: 40px;
  line-height: 1.4;
  color: var(--color-3);
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .faqs__details h2 {
    font-size: 24px;
    margin-bottom: 24px;
    text-align: center;
    margin-inline: 0;
  }
}
.faqs__details h2 span {
  font-family: "Cardo", sans-serif;
  font-style: italic;
  color: var(--color-2);
}
@media (max-width: 767px) {
  .faqs__details h2 span {
    display: block;
  }
}
.faqs__cta {
  gap: 28px;
}
@media (max-width: 1100px) {
  .faqs__cta {
    display: none;
  }
}
.faqs__cta button {
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--color-2);
  font-size: 18px;
  line-height: 1.6;
  padding: 6px 22px;
  border: 1px solid var(--color-2);
  border-radius: 44px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.faqs__cta button:hover {
  background-color: var(--color-18);
  color: var(--color-12);
  border: 1px solid transparent;
}
.faqs__cta button.active {
  background-color: var(--color-2);
  color: var(--color-1);
}
.faqs__faq {
  border-top: 1.5px solid var(--color-21);
  padding: 36px 8px 0 8px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .faqs__faq {
    border-top: 1px solid var(--color-21);
  }
}
.faqs__faq:last-child {
  border-bottom: 1.5px solid var(--color-21);
}
@media (max-width: 767px) {
  .faqs__faq:last-child {
    border-bottom: 1px solid var(--color-21);
  }
}
@media (max-width: 767px) {
  .faqs__faq {
    padding: 28px 8px 0 8px;
  }
}
.faqs__inner {
  max-width: 816px;
  width: 100%;
}
@media (max-width: 1536px) {
  .faqs__inner {
    max-width: 700px;
  }
}
@media (max-width: 1100px) {
  .faqs__inner {
    max-width: 100%;
  }
}
.faqs__inner h2 {
  font-family: "Cardo", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  color: var(--color-3);
}
@media (max-width: 767px) {
  .faqs__inner h2 {
    font-size: 18px;
  }
}
@media (max-width: 500px) {
  .faqs__inner h2 {
    max-width: 286px;
  }
}
.faqs__inner-header {
  cursor: pointer;
  gap: 24px;
}
.faqs__inner-header__details {
  gap: 16px;
}
@media (max-width: 767px) {
  .faqs__inner-header__details {
    gap: 20px;
  }
}
.faqs__inner-header__details h2 {
  font-family: "Cardo", sans-serif;
  color: var(--color-2);
  font-size: 28px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 767px) {
  .faqs__inner-header__details h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .faqs__inner-header__details img {
    width: 32px;
  }
}
.faqs__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  padding-top: 36px;
}
@media (max-width: 767px) {
  .faqs__answer {
    padding-top: 24px;
  }
}
.faqs__answer.is-open {
  max-height: 1000px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .faqs__answer.is-open {
    padding-bottom: 28px;
  }
}
.faqs__answer p {
  color: var(--color-4);
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 1.7px;
}
.faqs__answer p a {
  text-decoration: none;
  color: var(--color-2);
}
@media (max-width: 767px) {
  .faqs__answer p {
    font-size: 16px;
    letter-spacing: normal;
  }
}
.faqs__answer p:first-child {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .faqs__icon-more {
    width: 24px;
    height: 24px;
  }
}
.faqs__icon.hidden {
  display: none;
}
.faqs__icon.visible {
  display: block;
}
.faqs__select {
  width: 100%;
  border: 2px solid var(--color-17);
  border-radius: 65px;
  display: none;
  height: 46px;
}
.faqs__select select {
  appearance: none;
  outline: none;
  border: none;
  color: var(--color-4);
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.2;
  background-color: transparent;
}
.faqs__select svg {
  position: absolute;
  top: 19px;
  right: 20px;
}

.membership {
  background-color: var(--color-8);
  background-image: url(../images/img-membership-bg.png);
}
.membership__details {
  padding-block: 175px 244px;
}
@media (max-width: 767px) {
  .membership__details {
    padding-block: 80px;
  }
}
.membership__details h2 {
  margin: 0 auto;
  font-size: 40px;
  color: var(--color-2);
  margin-bottom: 30px;
}
.membership__details h2 span {
  font-family: "Cardo";
  font-style: italic;
}
@media (max-width: 767px) {
  .membership__details h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}
.membership__details p {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  max-width: 695px;
  font-size: 24px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .membership__details p {
    font-size: 16px;
    margin-bottom: 40px;
  }
}
.membership__details p span {
  font-style: italic;
  color: var(--color-2);
}
.membership__details a {
  color: var(--color-1);
  background-color: var(--color-2);
  padding-block: 15px;
}
@media (max-width: 767px) {
  .membership__details a {
    font-size: 16px;
    padding: 10px 20px;
    max-width: 100%;
    width: 100%;
  }
}
.membership__bg {
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media (max-width: 1024px) {
  .membership__bg {
    display: none;
  }
}
.membership__bg:nth-of-type(1) {
  left: 0;
}
.membership__bg:nth-of-type(2) {
  right: 0;
}

.join-our-village {
  margin-block: 140px;
}
@media (max-width: 1100px) {
  .join-our-village {
    margin-block: 60px 80px;
  }
}
.join-our-village__bg {
  z-index: -1;
}
.join-our-village .container-lg {
  gap: 70px;
  align-items: center;
}
@media (max-width: 1100px) {
  .join-our-village .container-lg {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 1100px) {
  .join-our-village .container-lg picture {
    width: 100%;
  }
}
.join-our-village .container-lg picture img {
  border-radius: 20px;
}
@media (max-width: 1300px) {
  .join-our-village .container-lg picture img {
    width: 100%;
  }
}

.forms {
  background-image: url("/images/img-forms_bg.png");
  padding-block: 140px;
  background-color: var(--color-8);
}
.forms--join-us .inputs {
  max-width: 826px;
}
@media (max-width: 1100px) {
  .forms {
    padding-block: 80px;
  }
}
.forms__details {
  max-width: 557px;
}
@media (max-width: 1536px) {
  .forms__details {
    max-width: 474px;
  }
}
@media (max-width: 1280px) {
  .forms__details {
    max-width: 100%;
  }
}
@media (max-width: 1100px) {
  .forms__details {
    max-width: 100%;
  }
}
.forms__details h2 {
  color: var(--color-2);
  font-size: 48px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .forms__details h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 500px) {
  .forms__details h2 {
    max-width: 272px;
  }
}
.forms__details p {
  font-family: "Cardo", sans-serif;
  color: var(--color-3);
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .forms__details p {
    font-size: 16px;
  }
}
.forms__details p span {
  color: var(--color-2);
  font-style: italic;
}
.forms .container-lg {
  gap: 50px;
}
@media (max-width: 1280px) {
  .forms .container-lg {
    flex-direction: column;
  }
}
@media (max-width: 1100px) {
  .forms .container-lg {
    flex-direction: column;
    gap: 60px;
  }
}
.forms--contact picture {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .forms--contact picture {
    margin-bottom: 20px;
  }
}
.forms--contact picture img {
  display: block;
}
.forms--contact .forms__text {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .forms--contact .forms__text {
    margin-bottom: 20px;
  }
}
.forms--contact .forms__text h2 {
  margin-bottom: 0;
}
@media (max-width: 1536px) {
  .forms--contact .inputs {
    max-width: 740px;
  }
}
@media (max-width: 1300px) {
  .forms--contact .inputs {
    max-width: 600px;
  }
}
.forms--contact .forms__details span {
  font-family: "Cardo", sans-serif;
  font-style: italic;
}
.forms--contact .forms__details p {
  max-width: 400px;
}
@media (max-width: 767px) {
  .forms--contact .forms__details p {
    letter-spacing: 0.2px;
  }
}
@media (max-width: 1290px) {
  .forms--contact .container-lg {
    flex-direction: column;
  }
  .forms--contact .forms__details {
    max-width: 100%;
  }
  .forms--contact .inputs {
    width: 100%;
    max-width: 100%;
  }
  .forms--contact .inputs__wrapper .inputs__field {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .forms--contact .container-lg {
    gap: 100px;
  }
}
.forms img {
  left: 0;
  bottom: 0;
}
@media (max-width: 1100px) {
  .forms img {
    display: none;
  }
}
.forms__icons {
  margin-top: 72px;
  gap: 36px;
}
@media (max-width: 767px) {
  .forms__icons {
    margin-top: 40px;
    gap: 22px;
  }
}
.forms__icons-wrapper {
  gap: 20px;
}
.forms__icons-wrapper p {
  font-family: "Poppins", sans-serif;
  color: var(--color-4);
  font-size: 22px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .forms__icons-wrapper p {
    font-size: 16px;
  }
}
.forms__icons-wrapper img {
  display: block;
}
@media (max-width: 767px) {
  .forms__icons-wrapper img {
    width: 34px;
    height: 18px;
  }
}

.download .container-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 172px;
  padding-block: 160px;
}
@media (max-width: 1200px) {
  .download .container-lg {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.download_img {
  border-radius: 20px;
  overflow: hidden;
}
.download_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.download__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 140%;
  letter-spacing: 4%;
  margin-top: 40px;
  color: #283106;
}
.download__title span {
  font-family: "Cardo", sans-serif;
  font-style: italic;
  display: block;
}
@media (max-width: 1200px) {
  .download__title {
    font-size: 32px;
  }
}
.download__description {
  font-family: "Cardo", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 4%;
  margin-top: 48px;
  color: #283106;
}
@media (max-width: 1200px) {
  .download__description {
    font-size: 18px;
  }
}
.download__description span {
  display: block;
  margin-top: 30px;
  color: #CC7D45;
}
.download__buttons {
  display: flex;
  gap: 24px;
  margin-top: 72px;
  border: 1px solid rßd;
}
.terms-info .container {
  max-width: 1104px;
  padding: 160px 20px;
  margin: 0 auto;
  counter-reset: section;
}
@media (max-width: 767px) {
  .terms-info .container {
    padding-block: 60px;
  }
}
.terms-info__content {
  border-bottom: 1px solid var(--color-21);
  padding-bottom: 40px;
}
@media (max-width: 767px) {
  .terms-info__content {
    padding-bottom: 20px;
  }
}
.terms-info__heading {
  color: var(--color-3);
  font-family: "Cardo", sans-serif;
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .terms-info__heading {
    font-size: 20px;
  }
}
.terms-info__heading.fs-large {
  font-size: 40px;
}
@media (max-width: 767px) {
  .terms-info__heading.fs-large {
    font-size: 24px;
  }
}
.terms-info__date {
  color: var(--color-2);
  font-family: inherit;
  font-size: 24px;
}
@media (max-width: 767px) {
  .terms-info__date {
    font-size: 18px;
  }
}
.terms-info__details {
  padding-block: 40px 35px;
  border-bottom: 1.5px solid var(--color-21);
}
@media (max-width: 767px) {
  .terms-info__details {
    padding-block: 20px;
  }
}
.terms-info__details p {
  color: var(--color-4);
  font-size: 20px;
  font-family: "Cardo", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .terms-info__details p {
    font-size: 16px;
    letter-spacing: normal;
  }
}
.terms-info__details .text-bold {
  font-weight: 700;
}
.terms-info__details .mb-30 {
  margin-bottom: 30px;
}
.terms-info__details h3::before {
  counter-increment: section;
  content: counter(section) ". ";
}
.terms-info__details ul {
  padding: 20px 0 20px 30px;
}
@media (max-width: 767px) {
  .terms-info__details ul {
    font-size: 16px;
    padding: 20px 0 0 20px;
  }
}
.terms-info__details ul.text-bold {
  font-weight: 700;
}
.terms-info__details ul li {
  font-family: "Cardo", sans-serif;
  color: var(--color-4);
  font-size: 20px;
}
@media (max-width: 767px) {
  .terms-info__details ul li {
    font-size: 16px;
  }
}
.terms-info__details ul li span {
  font-weight: 400;
}
.terms-info__details.mb-20 p {
  margin-bottom: 20px;
}
.terms-info__details.mb-20 p:last-child {
  margin-bottom: 0;
}

.gradient-cards .container {
  padding-block: 140px 100px;
  max-width: 1655px;
  padding-inline: 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .gradient-cards .container {
    padding-block: 60px;
  }
}
.gradient-cards .container h2 {
  color: var(--color-2);
  font-size: 48px;
  line-height: 1.6;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .gradient-cards .container h2 {
    font-size: 24px;
    margin-bottom: 40px;
    letter-spacing: 0.96px;
    line-height: 1.4;
  }
}
.gradient-cards .container h2 span {
  font-family: "Cardo", sans-serif;
}
@media (max-width: 767px) {
  .gradient-cards .container h2 span {
    display: block;
  }
}
.gradient-cards__cards {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1024px) {
  .gradient-cards__cards {
    flex-direction: column;
  }
}
.gradient-cards__card {
  border: 1.5px solid var(--color-4);
  border-radius: 24px;
  padding: 50px 40px;
  background: linear-gradient(0deg, #EBECD0 0%, #DADCAE 100%);
  flex: 1 0 31%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .gradient-cards__card {
    padding: 35px 27px 32px 27px;
  }
}
.gradient-cards__card h3 {
  color: var(--color-3);
  font-family: "Cardo", sans-serif;
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .gradient-cards__card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.gradient-cards__card p {
  color: var(--color-4);
  font-family: "Cardo", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .gradient-cards__card p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.gradient-cards__card picture {
  align-self: center;
}
.gradient-cards__card--orange {
  border-color: var(--color-5);
  background: linear-gradient(0deg, rgba(248, 222, 200, 0.37) 0%, rgba(214, 173, 138, 0.37) 100%);
}

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