:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  background: none;
  opacity: 0;
  backdrop-filter: blur(0);
  transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out;
}
.modal--open {
  visibility: visible;
  pointer-events: auto;
  background: rgba(49, 58, 63, 0.8);
  opacity: 1;
  backdrop-filter: blur(16px);
}
.modal__body {
  width: 60%;
  height: 80%;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  top: min(16px, 4.2666666667vw);
  right: min(16px, 4.2666666667vw);
  display: flex;
  align-items: center;
  justify-content: start;
  width: min(32px, 8.5333333333vw);
  height: min(32px, 8.5333333333vw);
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .modal__close {
    top: 2.0833333333vw;
    right: 2.0833333333vw;
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
@media screen and (width >= 1024px) {
  .modal__close {
    top: 2.0833333333vw;
    right: 2.0833333333vw;
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
@media (hover: hover) {
  .modal__close:hover {
    transform: scale(1.1);
  }
}
.modal__close:active {
  transform: scale(0.9);
}
.modal__close::before, .modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(12px, 3.2vw);
  height: 0.5333333333vw;
  content: "";
  background-color: #323e4b;
}
@media screen and (width >= 768px) {
  .modal__close::before, .modal__close::after {
    width: 1.5625vw;
    height: 0.2604166667vw;
  }
}
@media screen and (width >= 1024px) {
  .modal__close::before, .modal__close::after {
    width: 0.625vw;
    height: 0.1041666667vw;
  }
}
.modal__close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.modal__close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
@media (hover: hover) {
  .modal__close:hover::before, .modal__close:hover::after {
    width: 14px;
  }
}
@media screen and (hover: hover) and (width >= 768px) {
  .modal__close:hover::before, .modal__close:hover::after {
    width: 1.8229166667vw;
  }
}
@media screen and (hover: hover) and (width >= 1024px) {
  .modal__close:hover::before, .modal__close:hover::after {
    width: 0.7291666667vw;
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.decorated-logo {
  display: flex;
  align-items: center;
  width: 100%;
}
.decorated-logo--white .decorated-logo__line {
  background: rgba(255, 255, 255, 0.2);
}
.decorated-logo--white .decorated-logo__icon {
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.decorated-logo--white svg {
  color: #fff;
}
.decorated-logo--forest .decorated-logo__line {
  background: rgba(33, 51, 43, 0.2);
}
.decorated-logo--forest .decorated-logo__icon {
  border: 1px solid rgba(33, 51, 43, 0.2);
}
.decorated-logo--forest svg {
  color: #21332b;
}
.decorated-logo__line {
  width: 100%;
  height: 1px;
}
.decorated-logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 44px;
  height: 44px;
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .decorated-logo__icon {
    max-width: 5.7291666667vw;
    height: 5.7291666667vw;
  }
}
@media screen and (width >= 1024px) {
  .decorated-logo__icon {
    max-width: max(28px, 2.2916666667vw);
    height: max(28px, 2.2916666667vw);
  }
}
.decorated-logo__icon svg {
  width: 24px;
  height: 18px;
}
@media screen and (width >= 768px) {
  .decorated-logo__icon svg {
    width: 3.125vw;
    height: 2.34375vw;
  }
}
@media screen and (width >= 1024px) {
  .decorated-logo__icon svg {
    width: max(18px, 1.25vw);
    height: max(14px, 0.9375vw);
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.next-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(64px, 12.8vw);
  height: min(64px, 12.8vw);
  overflow: hidden;
  background-color: #c58e5b;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .next-button {
    width: 64px;
    height: 64px;
  }
}
@media screen and (width >= 1024px) {
  .next-button {
    width: max(38px, 3.3333333333vw);
    height: max(38px, 3.3333333333vw);
  }
}
.next-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .next-button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
  }
  .next-button:hover::after {
    animation: shine-streak 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.next-button:active {
  filter: brightness(0.95);
  transform: scale(0.95);
}
.next-button svg {
  width: min(16px, 3.2vw);
  height: min(16px, 3.2vw);
  transform: rotate(270deg);
}
@media screen and (width >= 768px) {
  .next-button svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .next-button svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.next-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(0.5);
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.outline-button {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .outline-button {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .outline-button {
    font-size: max(14px, 0.9375vw);
  }
}
.outline-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-min-content;
  width: min-content;
  padding: min(16px, 4.2666666667vw) min(32px, 8.5333333333vw);
  overflow: hidden;
  color: #fff;
  text-wrap: nowrap;
  background-color: transparent;
  border-radius: 26.6666666667vw;
  transition: transform 0.3s ease, color 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}
@media screen and (width >= 768px) {
  .outline-button {
    padding: 2.0833333333vw 4.1666666667vw;
    border-radius: 13.0208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .outline-button {
    padding: 0.8333333333vw 1.6666666667vw;
    border-radius: 5.2083333333vw;
  }
}
.outline-button::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.outline-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
.outline-button span {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .outline-button:hover {
    transform: scale(1.05);
  }
  .outline-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .outline-button:hover::after {
    animation: shine-streak 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.outline-button:active {
  transform: scale(0.95);
}
.outline-button--forest {
  border: 2px solid #21332b;
}
.outline-button--forest::before {
  background-color: #21332b;
}
.outline-button--clay {
  border: 2px solid #c58e5b;
}
.outline-button--clay::before {
  background-color: #c58e5b;
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.prev-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(64px, 12.8vw);
  height: min(64px, 12.8vw);
  overflow: hidden;
  background-color: #c58e5b;
  border-radius: 50%;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .prev-button {
    width: 64px;
    height: 64px;
  }
}
@media screen and (width >= 1024px) {
  .prev-button {
    width: max(38px, 3.3333333333vw);
    height: max(38px, 3.3333333333vw);
  }
}
.prev-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .prev-button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
  }
  .prev-button:hover::after {
    animation: shine-streak 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.prev-button:active {
  filter: brightness(0.95);
  transform: scale(0.95);
}
.prev-button svg {
  width: min(16px, 3.2vw);
  height: min(16px, 3.2vw);
  transform: rotate(90deg);
}
@media screen and (width >= 768px) {
  .prev-button svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .prev-button svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.prev-button.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.8;
  filter: grayscale(0.5);
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.primary-button {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .primary-button {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .primary-button {
    font-size: max(14px, 0.9375vw);
  }
}
.primary-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-min-content;
  width: min-content;
  padding: min(16px, 4.2666666667vw) min(32px, 8.5333333333vw);
  overflow: hidden;
  text-wrap: nowrap;
  border-radius: 26.6666666667vw;
  transition: transform 0.3s ease, filter 0.3s ease;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .primary-button {
    padding: 2.0833333333vw 4.1666666667vw;
    border-radius: 13.0208333333vw;
  }
}
@media screen and (width >= 1024px) {
  .primary-button {
    padding: 0.8333333333vw 1.6666666667vw;
    border-radius: 5.2083333333vw;
  }
}
.primary-button::after {
  position: absolute;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  pointer-events: none;
  content: "";
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}
@media (hover: hover) {
  .primary-button:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
  }
  .primary-button:hover::after {
    animation: shine-streak 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
}
.primary-button:active {
  filter: brightness(0.95);
  transform: scale(0.95);
}
.primary-button--forest {
  background-color: #21332b;
}
.primary-button--clay {
  background-color: #c58e5b;
}

@keyframes shine-streak {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.section-separator {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 20px;
}
@media screen and (width >= 768px) {
  .section-separator {
    gap: 2.6041666667vw;
    height: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .section-separator {
    gap: 1.0416666667vw;
    height: 1.0416666667vw;
  }
}
.section-separator--forest .section-separator__line {
  background-color: rgba(33, 51, 43, 0.2);
}
.section-separator--forest .section-separator__logo {
  color: #21332b;
}
.section-separator--forest .section-separator__text {
  color: #21332b;
}
.section-separator--white .section-separator__line {
  background-color: rgba(255, 255, 255, 0.2);
}
.section-separator--white .section-separator__logo {
  color: #fff;
}
.section-separator--white .section-separator__text {
  color: #fff;
}
.section-separator__logo {
  width: 24px;
}
@media screen and (width >= 768px) {
  .section-separator__logo {
    width: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .section-separator__logo {
    width: max(18px, 1.25vw);
  }
}
.section-separator__logo svg {
  width: 100%;
}
.section-separator__line {
  width: 100%;
  height: 1px;
}
.section-separator__text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .section-separator__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .section-separator__text {
    font-size: max(14px, 0.9375vw);
  }
}
.section-separator__text {
  margin-left: auto;
  text-transform: uppercase;
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.contacts-popup.modal--open {
  background-color: #21332b;
}
.contacts-popup .modal__close {
  display: none;
}
.contacts-popup .modal__body {
  width: 100%;
  height: 100%;
}
.contacts-popup__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: end;
  justify-content: end;
  width: 100%;
  height: 100%;
  padding-bottom: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .contacts-popup__body {
    gap: 0.5208333333vw;
    padding-bottom: 3.125vw;
  }
}
.contacts-popup__button {
  width: 100%;
}
.contacts-popup__close {
  position: relative;
  display: flex;
  gap: min(12px, 3.2vw);
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: min(16px, 4.2666666667vw) min(32px, 8.5333333333vw);
  overflow: hidden;
  text-wrap: nowrap;
  border: 2px solid #c58e5b;
  border-radius: 26.6666666667vw;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease;
  will-change: transform, background-color;
}
@media screen and (width >= 768px) {
  .contacts-popup__close {
    gap: 1.5625vw;
    padding: 2.0833333333vw 4.1666666667vw;
    border-radius: 13.0208333333vw;
  }
}
.contacts-popup__close::before {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #c58e5b;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
@media (hover: hover) {
  .contacts-popup__close:hover {
    transform: scale(1.05);
  }
  .contacts-popup__close:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
  .contacts-popup__close:hover .contacts-popup__close-cross {
    transform: rotate(90deg);
  }
}
.contacts-popup__close:active {
  transform: scale(0.95);
}
.contacts-popup__close-text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .contacts-popup__close-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .contacts-popup__close-text {
    font-size: max(14px, 0.9375vw);
  }
}
.contacts-popup__close-text {
  position: relative;
  z-index: 1;
  color: #fff;
}
.contacts-popup__close-cross {
  position: relative;
  z-index: 1;
  width: 3.125vw;
  height: 3.125vw;
  transition: transform 0.4s ease;
}
.contacts-popup__close-cross::before, .contacts-popup__close-cross::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  content: "";
  background-color: #fff;
  transform: translateX(-50%) translateY(-50%);
}
.contacts-popup__close-cross::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.contacts-popup__close-cross::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.feedback-popup .modal__body {
  position: relative;
  width: calc(100% - min(48px, 9.6vw));
  height: auto;
  padding: min(48px, 6.4vw);
  background-color: #d1b38a;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .feedback-popup .modal__body {
    width: calc(100% - 6.25vw);
    padding: 6.25vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup .modal__body {
    width: 55.46875vw;
    padding: 2.5vw;
    border-radius: 1.25vw;
  }
}
.feedback-popup .modal__close {
  background-color: #21332b;
}
@media screen and (width >= 1024px) {
  .feedback-popup .modal__close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
}
.feedback-popup .modal__close::before, .feedback-popup .modal__close::after {
  background-color: #fff;
}
.feedback-popup__header {
  display: flex;
  flex-direction: column;
  gap: min(16px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .feedback-popup__header {
    gap: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__header {
    gap: 1.0416666667vw;
  }
}
.feedback-popup__logo {
  padding: 0 min(40px, 10.6666666667vw);
}
@media screen and (width >= 768px) {
  .feedback-popup__logo {
    padding: 0 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__logo {
    padding: 0 2.0833333333vw;
  }
}
.feedback-popup__title {
  font-family: "Angst", sans-serif;
  font-size: min(36px, 9.6vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .feedback-popup__title {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__title {
    font-size: max(38px, 3.3333333333vw);
  }
}
.feedback-popup__title {
  font-size: min(64px, 13.8666666667vw);
  color: #21332b;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (width >= 768px) {
  .feedback-popup__title {
    font-size: 8.3333333333vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__title {
    font-family: "Angst", sans-serif;
    font-size: min(36px, 9.6vw);
    font-weight: 400;
    line-height: 90%;
    color: #f6f6f6;
    letter-spacing: -0.03em;
    color: #21332b;
  }
}
@media screen and (width >= 1024px) and (width >= 768px) {
  .feedback-popup__title {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) and (width >= 1024px) {
  .feedback-popup__title {
    font-size: max(38px, 3.3333333333vw);
  }
}
.feedback-popup__subtitle {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .feedback-popup__subtitle {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__subtitle {
    font-size: max(18px, 1.25vw);
  }
}
.feedback-popup__subtitle {
  color: #313a3f;
  text-align: center;
}
.feedback-popup__form {
  margin-top: 6.4vw;
}
@media screen and (width >= 768px) {
  .feedback-popup__form {
    margin-top: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .feedback-popup__form {
    margin-top: 2.6041666667vw;
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.footer {
  position: relative;
  background-color: #313a3f;
}
.footer__img {
  position: absolute;
  inset: 0;
}
.footer__img::before {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(49, 58, 63, 0.2) 0%, rgba(49, 58, 63, 0.2) 100%), linear-gradient(180deg, #313a3f 0%, rgba(49, 58, 63, 0) 100%);
}
.footer__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  mix-blend-mode: lighten;
  opacity: 0.6;
}
.footer__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 60px;
  padding: min(100px, 21.3333333333vw) 0 min(80px, 16vw);
}
@media screen and (width >= 768px) {
  .footer__body {
    grid-template-columns: 46.875vw 35.4166666667vw auto;
    row-gap: 0;
    padding: 13.0208333333vw 0 10.4166666667vw;
  }
}
@media screen and (width >= 1024px) {
  .footer__body {
    grid-template-columns: 47.9166666667vw 23.125vw auto;
    padding: 8.3333333333vw 0;
  }
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: min(12px, 3.2vw);
}
@media screen and (width >= 768px) {
  .footer .footer-nav {
    gap: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-nav {
    gap: 0.625vw;
  }
}
.footer .footer-nav__item {
  font-family: "Angst", sans-serif;
  font-size: min(36px, 9.6vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .footer .footer-nav__item {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-nav__item {
    font-size: max(38px, 3.3333333333vw);
  }
}
.footer .footer-nav__item {
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer .footer-nav__item:hover {
    color: #c58e5b;
  }
}
.footer .footer-contacts {
  display: flex;
  flex-direction: column;
  gap: min(28px, 7.4666666667vw);
}
@media screen and (width >= 768px) {
  .footer .footer-contacts {
    gap: 3.6458333333vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts {
    gap: 2.5vw;
  }
}
.footer .footer-contacts__container {
  display: flex;
  flex-direction: column;
  gap: min(12px, 3.2vw);
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__container {
    gap: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__container {
    gap: 0.625vw;
  }
}
.footer .footer-contacts__title-container {
  display: flex;
  gap: min(12px, 3.2vw);
  align-items: center;
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__title-container {
    gap: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__title-container {
    gap: 0.625vw;
  }
}
.footer .footer-contacts__title {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__title {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__title {
    font-size: max(14px, 0.9375vw);
  }
}
.footer .footer-contacts__title {
  text-wrap: nowrap;
}
.footer .footer-contacts__decor-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.footer .footer-contacts__body {
  display: flex;
  flex-direction: column;
  gap: min(8px, 2.1333333333vw);
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__body {
    gap: 1.0416666667vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__body {
    gap: 0.4166666667vw;
  }
}
.footer .footer-contacts__text {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__text {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__text {
    font-size: max(18px, 1.25vw);
  }
}
.footer .footer-contacts__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: min(4px, 1.0666666667vw);
}
@media screen and (width >= 768px) {
  .footer .footer-contacts__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5208333333vw 4.6875vw;
    align-items: center;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-contacts__row {
    gap: 1.4583333333vw;
  }
}
.footer .footer-up {
  position: absolute;
  top: min(100px, 21.3333333333vw);
  right: 0;
  display: flex;
  gap: max(8px, 0.625vw);
  align-items: center;
  margin-bottom: auto;
  margin-left: auto;
  cursor: pointer;
  will-change: transform;
}
@media screen and (width >= 768px) {
  .footer .footer-up {
    position: static;
    top: inherit;
  }
}
.footer .footer-up__text {
  font-family: "Actay Wide", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .footer .footer-up__text {
    font-size: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-up__text {
    font-size: max(12px, 0.625vw);
  }
}
.footer .footer-up__text {
  display: none;
}
@media screen and (width >= 1024px) {
  .footer .footer-up__text {
    display: inline;
  }
}
.footer .footer-up__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(48px, 11.2vw);
  height: min(48px, 11.2vw);
  border: 1px solid rgba(175, 144, 103, 0.2);
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .footer .footer-up__button {
    width: 6.25vw;
    height: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-up__button {
    width: 4.1666666667vw;
    height: 4.1666666667vw;
  }
}
.footer .footer-up__button svg {
  width: min(16px, 3.2vw);
  height: min(16px, 3.2vw);
  rotate: 180deg;
}
@media screen and (width >= 768px) {
  .footer .footer-up__button svg {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .footer-up__button svg {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.footer .terms {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  padding-top: min(40px, 6.4vw);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (width >= 768px) {
  .footer .terms {
    padding-top: 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .terms {
    padding-top: 2.0833333333vw;
  }
}
.footer .terms__text {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .footer .terms__text {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .terms__text {
    font-size: max(18px, 1.25vw);
  }
}
.footer .terms__smart-orange {
  width: min(60px, 16vw);
  height: min(65px, 17.3333333333vw);
}
@media screen and (width >= 768px) {
  .footer .terms__smart-orange {
    width: 7.8125vw;
    height: 8.4635416667vw;
  }
}
@media screen and (width >= 1024px) {
  .footer .terms__smart-orange {
    width: 3.125vw;
    height: 3.3854166667vw;
  }
}
.footer .terms__smart-orange svg {
  width: 100%;
  height: 100%;
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.form {
  width: 100%;
  margin: 0 auto;
}

.inputs-wrapper {
  display: flex;
  flex-direction: column;
  gap: min(12px, 3.2vw);
  width: 100%;
}
@media screen and (width >= 768px) {
  .inputs-wrapper {
    gap: 2.6041666667vw;
  }
}
@media screen and (width >= 1024px) {
  .inputs-wrapper {
    flex-direction: row;
    gap: 1.0416666667vw;
  }
}

.form-field {
  position: relative;
  flex: 1;
}
.form-field__input {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .form-field__input {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .form-field__input {
    font-size: max(18px, 1.25vw);
  }
}
.form-field__input {
  width: 100%;
  padding: min(12px, 3.2vw) min(20px, 4.2666666667vw);
  color: #21332b;
  background-color: transparent;
  border: 1px solid rgba(33, 51, 43, 0.2);
  border-radius: min(8px, 3.2vw);
  transition: border-color 0.3s ease;
}
@media screen and (width >= 768px) {
  .form-field__input {
    padding: 2.6041666667vw;
    border-radius: 1.5625vw;
  }
}
@media screen and (width >= 1024px) {
  .form-field__input {
    padding: 1.0416666667vw;
    border-radius: 0.625vw;
  }
}
.form-field__input::-moz-placeholder {
  color: #21332b;
}
.form-field__input::placeholder {
  color: #21332b;
}
.form-field__input:focus {
  outline: none;
  border: 1px solid rgb(33, 51, 43);
}
.form-field[data-status=field--error] .form-field__input {
  border-color: #ff4d4d;
}

.form-disclaimer {
  margin-top: min(20px, 5.3333333333vw);
  font-family: "Actay", sans-serif;
  font-size: min(14px, 2.6666666667vw);
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  color: #313a3f;
  text-align: center;
  letter-spacing: -0.06em;
  opacity: 0.7;
}
@media screen and (width >= 768px) {
  .form-disclaimer {
    margin-top: 2.6041666667vw;
    font-size: 1.8229166667vw;
  }
}
@media screen and (width >= 1024px) {
  .form-disclaimer {
    margin-top: 1.0416666667vw;
    font-size: max(12px, 0.7291666667vw);
  }
}

.form__button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: min(48px, 6.4vw);
}
@media screen and (width >= 768px) {
  .form__button-wrapper {
    margin-top: 6.25vw;
  }
}
@media screen and (width >= 1024px) {
  .form__button-wrapper {
    margin-top: 2.6041666667vw;
  }
}

.input-message {
  position: absolute;
  bottom: -12px;
  left: 12px;
  font-size: 10px;
  color: #ff4d4d;
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background-color: transparent;
  border-bottom: 1px rgba(255, 255, 255, 0.2) solid;
  backdrop-filter: blur(0);
  transition: background-color 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}
.header--scrolled {
  background-color: #18261f;
  backdrop-filter: blur(50px);
}
.header__body {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: min(32px, 4.2666666667vw);
  border-right: 1px rgba(255, 255, 255, 0.2) solid;
}
@media screen and (width >= 768px) {
  .header__logo-container {
    padding-right: min(40px, 4.1666666667vw);
  }
}
@media screen and (width >= 1024px) {
  .header__logo-container {
    padding-right: 2.0833333333vw;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(143px, 15.2vw);
  height: min(56px, 10.1333333333vw);
}
@media screen and (width >= 768px) {
  .header__logo {
    width: min(174px, 18.6197916667vw);
    height: 100%;
  }
}
@media screen and (width >= 1024px) {
  .header__logo {
    width: 9.0625vw;
  }
}
.header__logo svg {
  width: 100%;
  height: 100%;
}
.header__logo-main {
  display: none;
}
@media screen and (width >= 768px) {
  .header__logo-main {
    display: block;
  }
}
.header__logo-mobile {
  display: block;
  color: #c58e5b;
}
@media screen and (width >= 768px) {
  .header__logo-mobile {
    display: none;
  }
}
.header .location {
  display: none;
  gap: 0.625vw;
  align-items: center;
  padding: 0 2.0833333333vw;
}
@media screen and (width >= 1024px) {
  .header .location {
    display: flex;
  }
}
.header .location__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.5104166667vw;
  height: 6.5104166667vw;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
@media screen and (width >= 1024px) {
  .header .location__icon-circle {
    width: max(28px, 1.875vw);
    height: max(28px, 1.875vw);
  }
}
.header .location__icon {
  width: 2.0833333333vw;
  height: 2.0833333333vw;
}
@media screen and (width >= 1024px) {
  .header .location__icon {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.header .location span {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .header .location span {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .location span {
    font-size: max(14px, 0.9375vw);
  }
}
.header .location span {
  position: relative;
}
.header .location span::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .header .location span:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header .feedback {
  display: flex;
  gap: 4.1666666667vw;
  align-items: center;
  margin-left: auto;
}
@media screen and (width >= 1024px) {
  .header .feedback {
    margin-right: 2.0833333333vw;
  }
}
.header .feedback__phone {
  display: flex;
  gap: 1.1458333333vw;
  align-items: center;
  cursor: pointer;
}
@media screen and (width >= 1024px) {
  .header .feedback__phone--mobile {
    display: none;
  }
}
.header .feedback__phone--desktop {
  display: none;
}
@media screen and (width >= 1024px) {
  .header .feedback__phone--desktop {
    display: flex;
  }
}
@media (hover: hover) {
  .header .feedback__phone:hover .feedback__phone-number::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .header .feedback__phone:hover .feedback__phone-label::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header .feedback__icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(50px, 10.6666666667vw);
  height: min(50px, 10.6666666667vw);
  border: 1px solid rgba(244, 245, 249, 0.4);
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .header .feedback__icon-circle {
    width: 6.5104166667vw;
    height: 6.5104166667vw;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__icon-circle {
    width: max(28px, 1.875vw);
    height: max(28px, 1.875vw);
  }
}
.header .feedback__icon {
  width: min(16px, 4.2666666667vw);
  height: min(16px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .header .feedback__icon {
    width: 2.0833333333vw;
    height: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__icon {
    width: max(12px, 0.8333333333vw);
    height: max(12px, 0.8333333333vw);
  }
}
.header .feedback__phone-number {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .header .feedback__phone-number {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__phone-number {
    font-size: max(14px, 0.9375vw);
  }
}
.header .feedback__phone-number {
  position: relative;
  display: none;
}
@media screen and (width >= 1024px) {
  .header .feedback__phone-number {
    display: flex;
  }
}
.header .feedback__phone-number::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .header .feedback__phone-number:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header .feedback__phone-label {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .header .feedback__phone-label {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__phone-label {
    font-size: max(14px, 0.9375vw);
  }
}
.header .feedback__phone-label {
  position: relative;
  display: none;
}
@media screen and (width >= 768px) {
  .header .feedback__phone-label {
    display: flex;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__phone-label {
    display: none;
  }
}
.header .feedback__phone-label::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .header .feedback__phone-label:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.header .feedback__button {
  display: none;
  gap: 0.625vw;
  align-items: center;
}
.header .feedback__button-text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .header .feedback__button-text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .feedback__button-text {
    font-size: max(14px, 0.9375vw);
  }
}
.header .feedback__button-text {
  text-transform: uppercase;
}
.header .feedback__button-arrow {
  width: 24px;
  height: 24px;
}
.header .feedback__button-arrow svg {
  width: 100%;
  height: 100%;
}
.header .planing-button-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: min(32px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .header .planing-button-container {
    padding-left: min(40px, 5.2083333333vw);
  }
}
@media screen and (width >= 1024px) {
  .header .planing-button-container {
    padding-left: 2.0833333333vw;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media screen and (width <= 768px) {
  .header .planing-button-container .primary-button {
    padding: 2.1333333333vw 4.2666666667vw;
  }
}
.header .menu {
  z-index: 1020;
  display: flex;
  gap: 1.5625vw;
  margin-left: min(40px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .header .menu {
    margin-left: min(40px, 5.2083333333vw);
  }
}
@media screen and (width >= 1024px) {
  .header .menu {
    gap: 0.78125vw;
    margin-left: 4.1666666667vw;
  }
}
@media (hover: hover) {
  .header .menu:hover .menu__icon::before, .header .menu:hover .menu__icon::after {
    width: 100%;
  }
}
.header .menu--active .menu__icon {
  animation: second-stick-active 0.3s forwards;
}
.header .menu--active .menu__icon::before {
  width: 100%;
  animation: first-stick-active 0.3s forwards;
}
.header .menu--active .menu__icon::after {
  width: 100%;
  animation: third-stick-active 0.3s forwards;
}
.header .menu--inactive .menu__icon {
  animation: second-stick-inactive 0.3s forwards;
}
.header .menu--inactive .menu__icon::before {
  animation: first-stick-inactive 0.3s forwards;
}
.header .menu--inactive .menu__icon::after {
  animation: third-stick-inactive 0.3s forwards;
}
.header .menu__text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .header .menu__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .header .menu__text {
    font-size: max(14px, 0.9375vw);
  }
}
.header .menu__text {
  display: none;
  text-transform: uppercase;
  transform: translateY(2px);
}
@media screen and (width >= 768px) {
  .header .menu__text {
    display: flex;
  }
}
.header .menu__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(48px, 10.6666666667vw);
  height: min(48px, 10.6666666667vw);
  border: 1px solid rgba(244, 245, 249, 0.4);
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .header .menu__icon-container {
    width: 3.125vw;
    height: 3.125vw;
    border: none;
  }
}
@media screen and (width >= 1024px) {
  .header .menu__icon-container {
    width: max(18px, 1.25vw);
    height: max(18px, 1.25vw);
  }
}
.header .menu__icon {
  position: relative;
  width: min(18px, 4.8vw);
  height: 2px;
  background-color: #fff;
}
@media screen and (width >= 768px) {
  .header .menu__icon {
    width: 2.34375vw;
  }
}
@media screen and (width >= 1024px) {
  .header .menu__icon {
    width: max(12px, 0.8333333333vw);
  }
}
.header .menu__icon::before, .header .menu__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  content: "";
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.header .menu__icon::before {
  width: 80%;
  transform: translateY(-250%);
}
.header .menu__icon::after {
  width: 50%;
  transform: translateY(150%);
}

.burger-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
  transition: visibility 0.4s ease, background-color 0.4s ease;
}
@media screen and (width >= 1024px) {
  .burger-menu {
    z-index: 99;
    padding-top: var(--header-height);
  }
}
.burger-menu--active {
  visibility: visible;
  pointer-events: initial;
  background-color: rgba(0, 0, 0, 0.6);
}
.burger-menu--active .burger-menu-close {
  opacity: 1;
}
.burger-menu--active .burger-menu__body {
  clip-path: inset(0 0 0 0);
}
.burger-menu__body {
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  background-color: #21332b;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s ease;
}
@media screen and (width >= 1024px) {
  .burger-menu__body {
    width: 50%;
  }
}
.burger-menu__body::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120.8333333333vw;
  height: 120.8333333333vw;
  content: "";
  background: rgba(228, 195, 149, 0.1);
  border-radius: 50%;
  filter: blur(30.5989583333vw);
  transform: translateX(50%) translateY(50%);
}
@media screen and (width >= 1024px) {
  .burger-menu__body::before {
    width: 48.3333333333vw;
    height: 48.3333333333vw;
    filter: blur(12.2395833333vw);
  }
}
.burger-menu__bg-img {
  position: absolute;
  inset: 0;
}
.burger-menu__bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.burger-menu__list {
  display: flex;
  flex-direction: column;
  gap: min(24px, 6.4vw);
  align-items: center;
  justify-content: center;
}
@media screen and (width >= 768px) {
  .burger-menu__list {
    gap: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu__list {
    gap: 0.625vw;
    align-items: start;
    justify-content: start;
  }
}
.burger-menu__item {
  font-family: "Angst", sans-serif;
  font-size: min(36px, 9.6vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .burger-menu__item {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu__item {
    font-size: max(38px, 3.3333333333vw);
  }
}
.burger-menu__item {
  position: relative;
  overflow: hidden;
  font-size: min(64px, 9.6vw);
  cursor: pointer;
  transition: color 0.3s ease;
}
@media screen and (width >= 768px) {
  .burger-menu__item {
    font-size: 8.3333333333vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu__item {
    font-family: "Angst", sans-serif;
    font-size: min(36px, 9.6vw);
    font-weight: 400;
    line-height: 90%;
    color: #f6f6f6;
    letter-spacing: -0.03em;
  }
}
@media screen and (width >= 1024px) and (width >= 768px) {
  .burger-menu__item {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) and (width >= 1024px) {
  .burger-menu__item {
    font-size: max(38px, 3.3333333333vw);
  }
}
@media (hover: hover) {
  .burger-menu__item:hover {
    color: #c58e5b;
  }
}

.burger-menu-close {
  position: absolute;
  top: 4.9479166667vw;
  right: min(24px, 4.2666666667vw);
  display: flex;
  gap: 1.5625vw;
  margin-left: min(40px, 4.2666666667vw);
  opacity: 0;
  transition: opacity 0.5s ease;
}
@media screen and (width >= 768px) {
  .burger-menu-close {
    right: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu-close {
    display: none;
  }
}
.burger-menu-close__text {
  font-family: "Actay Wide", sans-serif;
  font-size: min(18px, 4.2666666667vw);
  font-weight: 700;
  line-height: 140%;
  color: #f6f6f6;
  letter-spacing: -0.06em;
}
@media screen and (width >= 768px) {
  .burger-menu-close__text {
    font-size: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu-close__text {
    font-size: max(14px, 0.9375vw);
  }
}
.burger-menu-close__text {
  display: none;
  text-transform: uppercase;
  transform: translateY(4px);
}
@media screen and (width >= 768px) {
  .burger-menu-close__text {
    display: flex;
  }
}
.burger-menu-close__icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(48px, 10.6666666667vw);
  height: min(48px, 10.6666666667vw);
  border: 1px solid rgba(244, 245, 249, 0.4);
  border-radius: 50%;
}
@media screen and (width >= 768px) {
  .burger-menu-close__icon-container {
    width: 3.125vw;
    height: 3.125vw;
    border: none;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu-close__icon-container {
    width: max(18px, 1.25vw);
    height: max(18px, 1.25vw);
  }
}
.burger-menu-close__icon {
  position: relative;
  width: min(18px, 4.8vw);
}
@media screen and (width >= 768px) {
  .burger-menu-close__icon {
    width: 2.34375vw;
  }
}
@media screen and (width >= 1024px) {
  .burger-menu-close__icon {
    width: max(12px, 0.8333333333vw);
  }
}
.burger-menu-close__icon::before, .burger-menu-close__icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #fff;
  transition: width 0.3s ease-in-out;
}
.burger-menu-close__icon::before {
  transform: rotate(45deg);
}
.burger-menu-close__icon::after {
  transform: rotate(-45deg);
}

@keyframes first-stick-active {
  0% {
    transform: translateY(-250%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes second-stick-active {
  0% {
    display: inherit;
  }
  50% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes third-stick-active {
  0% {
    transform: translateY(150%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes first-stick-inactive {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-250%);
  }
}
@keyframes second-stick-inactive {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: transparent;
  }
  100% {
    display: inherit;
  }
}
@keyframes third-stick-inactive {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(150%);
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pagination__utility {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 343px;
}
@media screen and (width >= 768px) {
  .pagination__utility {
    gap: 32px;
  }
}
@media screen and (width >= 1024px) {
  .pagination__utility {
    gap: 2.5vw;
  }
}
.pagination__input {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 86px;
  padding: 4px 28px;
  pointer-events: none;
  border-radius: 100px;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: none;
  letter-spacing: -0.03em;
  text-decoration: none;
}
@media screen and (width >= 768px) {
  .pagination__input {
    font-size: 16px;
  }
}
@media screen and (width >= 1024px) {
  .pagination__input {
    font-size: 0.8333333333vw;
    font-size: clamp(12px, 12px + 6 * (100vw - 1024px) / 896, 16px);
  }
}
.pagination__more {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: none;
  letter-spacing: -0.03em;
  text-decoration: none;
}
@media screen and (width >= 768px) {
  .pagination__more {
    font-size: 16px;
  }
}
@media screen and (width >= 1024px) {
  .pagination__more {
    font-size: 0.8333333333vw;
    font-size: clamp(12px, 12px + 6 * (100vw - 1024px) / 896, 16px);
  }
}
.pagination__more {
  margin-top: 16px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-position: from-font;
}
@media screen and (width >= 768px) {
  .pagination__more {
    margin-top: 32px;
  }
}
@media screen and (width >= 1024px) {
  .pagination__more {
    margin-top: 40px;
  }
}
.pagination .pagination-count {
  display: flex;
  gap: 12px;
  align-items: center;
}
.pagination .pagination-count__current {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: none;
  letter-spacing: -0.03em;
  text-decoration: none;
}
@media screen and (width >= 768px) {
  .pagination .pagination-count__current {
    font-size: 16px;
  }
}
@media screen and (width >= 1024px) {
  .pagination .pagination-count__current {
    font-size: 0.8333333333vw;
    font-size: clamp(12px, 12px + 6 * (100vw - 1024px) / 896, 16px);
  }
}
.pagination .pagination-count__current {
  padding: 12px 24px;
  border-radius: 100px;
}
@media screen and (width >= 768px) {
  .pagination .pagination-count__current {
    padding: 22px 48px;
  }
}
.pagination .pagination-count__max {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: none;
  letter-spacing: -0.03em;
  text-decoration: none;
}
@media screen and (width >= 768px) {
  .pagination .pagination-count__max {
    font-size: 16px;
  }
}
@media screen and (width >= 1024px) {
  .pagination .pagination-count__max {
    font-size: 0.8333333333vw;
    font-size: clamp(12px, 12px + 6 * (100vw - 1024px) / 896, 16px);
  }
}
.pagination .pagination-count__max {
  text-wrap: nowrap;
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

.success-popup .modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: calc(100% - min(48px, 9.6vw));
  height: auto;
  padding: min(48px, 6.4vw);
  background-color: #d1b38a;
  border-radius: min(24px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .success-popup .modal__body {
    width: calc(100% - 6.25vw);
    padding: 6.25vw;
    border-radius: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup .modal__body {
    width: 55.46875vw;
    padding: 2.5vw;
    border-radius: 1.25vw;
  }
}
.success-popup .modal__close {
  background-color: #21332b;
}
@media screen and (width >= 1024px) {
  .success-popup .modal__close {
    top: 1.0416666667vw;
    right: 1.0416666667vw;
  }
}
.success-popup .modal__close::before, .success-popup .modal__close::after {
  background-color: #fff;
}
.success-popup__header {
  display: flex;
  flex-direction: column;
  gap: min(16px, 4.2666666667vw);
}
@media screen and (width >= 768px) {
  .success-popup__header {
    gap: 2.0833333333vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup__header {
    gap: 1.0416666667vw;
  }
}
.success-popup__logo {
  padding: 0 min(40px, 10.6666666667vw);
}
@media screen and (width >= 768px) {
  .success-popup__logo {
    padding: 0 5.2083333333vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup__logo {
    padding: 0 2.0833333333vw;
  }
}
.success-popup__title {
  font-family: "Angst", sans-serif;
  font-size: min(36px, 9.6vw);
  font-weight: 400;
  line-height: 90%;
  color: #f6f6f6;
  letter-spacing: -0.03em;
}
@media screen and (width >= 768px) {
  .success-popup__title {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup__title {
    font-size: max(38px, 3.3333333333vw);
  }
}
.success-popup__title {
  font-size: min(64px, 13.8666666667vw);
  color: #21332b;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (width >= 768px) {
  .success-popup__title {
    font-size: 8.3333333333vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup__title {
    font-family: "Angst", sans-serif;
    font-size: min(36px, 9.6vw);
    font-weight: 400;
    line-height: 90%;
    color: #f6f6f6;
    letter-spacing: -0.03em;
    color: #21332b;
  }
}
@media screen and (width >= 1024px) and (width >= 768px) {
  .success-popup__title {
    font-size: 4.6875vw;
  }
}
@media screen and (width >= 1024px) and (width >= 1024px) {
  .success-popup__title {
    font-size: max(38px, 3.3333333333vw);
  }
}
.success-popup__subtitle {
  font-family: "Actay", sans-serif;
  font-size: min(24px, 4.8vw);
  font-weight: 400;
  line-height: 140%;
  color: #ccc;
  letter-spacing: -0.02em;
}
@media screen and (width >= 768px) {
  .success-popup__subtitle {
    font-size: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .success-popup__subtitle {
    font-size: max(18px, 1.25vw);
  }
}
.success-popup__subtitle {
  color: #313a3f;
  text-align: center;
}
.success-popup__icon {
  width: min(80px, 12.8vw);
  height: min(80px, 12.8vw);
  margin-top: min(36px, 6.4vw);
}
@media screen and (width >= 768px) {
  .success-popup__icon {
    width: min(100px, 10.4166666667vw);
    height: min(100px, 10.4166666667vw);
    margin-top: min(50px, 4.6875vw);
  }
}
@media screen and (width >= 1024px) {
  .success-popup__icon {
    margin-top: 2.6041666667vw;
    width: 5.2083333333vw;
    height: 5.2083333333vw;
  }
}
.success-popup__icon svg {
  width: 100%;
  height: 100%;
}
.success-popup__close-button {
  margin-top: min(36px, 6.4vw);
}
@media screen and (width >= 768px) {
  .success-popup__close-button {
    margin-top: min(50px, 4.6875vw);
  }
}
@media screen and (width >= 1024px) {
  .success-popup__close-button {
    margin-top: 2.6041666667vw;
  }
}:root {
  --header-height: min(98px, 18.6vw);
  --section-gap: min(100px, 21.3vw);
  --content-title-gap: min(48px, 12.8vw);
  --title-separator-gap: min(40px, 10.6vw);
  --container-size: min(24px, 3.125vw);
}
@media (width >= 768px) {
  :root {
    --header-height: min(110px, 12.7vw);
    --section-gap: 13vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 5.2vw;
    --container-size: min(40px, 3.125vw);
  }
}
@media (width >= 1024px) {
  :root {
    --header-height: max(64px, 5vw);
    --section-gap: 10.4vw;
    --content-title-gap: 6.25vw;
    --title-separator-gap: 2vw;
    --container-size: 2vw;
  }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption,
th,
td {
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
}

q,
blockquote {
  quotes: none;
}

q::before,
q::after,
blockquote::before,
blockquote::after {
  content: "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

* {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

*::after,
*::before {
  box-sizing: border-box;
  line-height: 1;
  outline: none;
  border: none;
}

body,
div,
dl,
dt,
dd,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

fieldset,
img,
abbr {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.debug {
  z-index: 999999;
  position: fixed;
  width: 100%;
  height: 100vh;
}
.debug > div {
  height: inherit;
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 60px;
  padding-left: 60px;
}
@media screen and (max-width: 768px) {
  .debug > div {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.debug > div > div {
  height: inherit;
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.debug > div > div > div {
  box-sizing: border-box;
  overflow-wrap: break-word;
  margin-left: 10px;
  margin-right: 10px;
  width: calc(4.1666666667% - 20px);
  height: inherit;
  outline: 1px solid #ff0;
  background: rgba(0, 0, 0, 0.5);
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  font-size: 14px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden !important;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

body input,
body textarea {
  outline: none;
  border: #666 1px solid;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 20px;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

:placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

:input-placeholder {
  color: #ccc;
}

::input-placeholder {
  color: #ccc;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
  border-color: red;
}

body input:required:valid,
body textarea:required:valid {
  border-color: green;
}

img {
  display: block;
  width: 100%;
}

body *:focus {
  outline: none;
}

body.focus-tab--enable *:focus {
  outline: #4d90fe auto 7px;
  outline-offset: -2px;
}

button {
  padding: 0;
  margin: 0;
  background: none;
  border: navajowhite;
}

button:hover,
a:hover,
select:hover {
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown .flag-container,
  .intl-tel-input.separate-dial-code .flag-container {
    left: 5%;
  }
}

@media screen and (max-width: 1200px) {
  .intl-tel-input.allow-dropdown input,
  .intl-tel-input.allow-dropdown input[type=tel],
  .intl-tel-input.allow-dropdown input[type=text],
  .intl-tel-input.separate-dial-code input,
  .intl-tel-input.separate-dial-code input[type=tel],
  .intl-tel-input.separate-dial-code input[type=text] {
    padding-left: 95px;
  }
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

.container--full-screen {
  width: 100%;
  height: 100vh;
  max-height: none;
  padding: 0;
}

.text-uppercase {
  text-transform: uppercase;
}

.thumbs__item {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background-color: var(--color-white);
  border-radius: 4px;
  opacity: 1;
  transform-origin: center;
  transition: width 0.25s ease-out;
}
.thumbs__item[class*=active] {
  width: 16px;
  background-color: var(--color-blue);
}
.thumbs > :nth-child(n+2) {
  margin-left: 8px;
}

@font-face {
  font-family: Angst;
  font-weight: 100 900;
  src: url("../fonts/AngstVF.woff2") format("woff2-variations");
}
@font-face {
  font-family: Actay;
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Actay-Regular.woff2") format("woff2"), url("../fonts/Actay-Regular.woff") format("woff");
}
@font-face {
  font-family: Actay;
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/Actay-RegularItalic.woff2") format("woff2"), url("../fonts/Actay-RegularItalic.woff") format("woff");
}
@font-face {
  font-family: "Actay Condensed";
  font-style: normal;
  font-weight: 100;
  src: url("../fonts/ActayCondensed-Thin.woff2") format("woff2"), url("../fonts/ActayCondensed-Thin.woff") format("woff");
}
@font-face {
  font-family: "Actay Condensed";
  font-style: italic;
  font-weight: 100;
  src: url("../fonts/ActayCondensed-ThinItalic.woff2") format("woff2"), url("../fonts/ActayCondensed-ThinItalic.woff") format("woff");
}
@font-face {
  font-family: "Actay Wide";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/ActayWide-Bold.woff2") format("woff2"), url("../fonts/ActayWide-Bold.woff") format("woff");
}
@font-face {
  font-family: "Actay Wide";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/ActayWide-BoldItalic.woff2") format("woff2"), url("../fonts/ActayWide-BoldItalic.woff") format("woff");
}
html {
  height: 100%;
  background-color: #2c2c2c;
}

body {
  height: 100%;
}

::-webkit-scrollbar-track {
  background: #2c2c2c;
}

.container {
  padding-right: min(24px, 4.2666666667vw);
  padding-left: min(24px, 4.2666666667vw);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (width >= 768px) {
  .container {
    padding-right: 3.125vw;
    padding-left: 3.125vw;
  }
}
@media screen and (width >= 1024px) {
  .container {
    padding-right: 2.0833333333vw;
    padding-left: 2.0833333333vw;
  }
}
.container--mobile {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (width >= 768px) {
  .container--mobile {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (width >= 1024px) {
  .container--mobile {
    padding-right: 30px;
    padding-left: 30px;
  }
}/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}
