:root {
  --dark: #322F2C;
  --dark-brown: #241609;
  --brown: #775B45;
  --green: #7C7B5D;
  --blue: #A2B8B7;
  --dark-beige: #B6AF9F;
  --beige: #C6C0B0;
  --light-beige: #E9E5DC;
  --white: #FFFFFF;
  --beige-transparent: rgba(128, 118, 108, 0.4);
  --brown-transparent: rgba(36, 22, 9, 0.3019607843);
  --white-transparent-70: rgba(255, 255, 255, 0.6980392157);
  --white-transparent-50: rgba(255, 255, 255, 0.5);
  --white-transparent-35: rgba(255, 255, 255, 0.3490196078);
  --ease: cubic-bezier(0.215, 0.61, 0.355, 1);
}

@font-face {
  font-family: "TT Ricordi Allegria";
  src: local("TT Ricordi Allegria Medium");
  src: url("../fonts/TT-Ricordi-Allegria/TT-Ricordi-Allegria-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: local("Manrope Regular");
  src: url("../fonts/Manrope/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: local("Manrope Medium");
  src: url("../fonts/Manrope/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: local("Manrope Semibold");
  src: url("../fonts/Manrope/Manrope-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
html:has(.zones__item-popup[open]) {
  scrollbar-width: none;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}
body.scroll-lock {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--beige);
  overflow: hidden;
  position: relative;
}
.wrapper:has(.header__mob-menu.active):after {
  opacity: 1;
  visibility: visible;
}
.wrapper:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(42, 42, 42, 0.5)), to(rgba(42, 42, 42, 0.5)));
  background: linear-gradient(0deg, rgba(42, 42, 42, 0.5) 0%, rgba(42, 42, 42, 0.5) 100%);
  position: fixed;
  inset: 0;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}

.container {
  margin: 0 24px;
}

main {
  height: 100%;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

button:focus-visible, a:focus-visible {
  outline: none;
}

ul, ol, summary {
  list-style: none;
}

dialog {
  background-color: transparent;
  border: none;
}
dialog::-ms-backdrop {
  background: rgba(36, 22, 9, 0.4);
  backdrop-filter: blur(10px);
}
dialog::backdrop {
  background: rgba(36, 22, 9, 0.4);
  backdrop-filter: blur(10px);
}

.cmplz-cookiebanner {
  width: 420px;
  background-color: var(--brown-transparent) !important;
  backdrop-filter: blur(30px);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 12px 37px 7px !important;
  right: 24px !important;
  bottom: 16px !important;
  z-index: 7 !important;
}

.cmplz-cookiebanner .cmplz-message {
  width: calc(100% - 32px);
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.1 !important;
  letter-spacing: -0.28px;
  margin-right: 0 !important;
  margin-bottom: 2px !important;
}

.cmplz-btn.cmplz-accept {
  height: 40px !important;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px !important;
  line-height: 16px !important;
  padding: 12px !important;
}

#cmplz-manage-consent .cmplz-manage-consent {
  display: none;
}

.cmplz-close {
  width: 31px !important;
  height: 32px !important;
  border-radius: 50%;
  background-image: url(../img/icons/close-btn.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 16px;
  right: 21px;
}
.cmplz-close:focus-visible {
  outline: none !important;
}
.cmplz-close svg {
  display: none;
}

.cmplz-cookiebanner .cmplz-body {
  min-width: unset !important;
}

@media (max-width: 768px) {
  .cmplz-cookiebanner {
    width: auto !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 8px !important;
  }
}
@media (max-width: 767px) {
  .container {
    margin: 0 12px;
  }
}
.show-on-scroll {
  opacity: 0;
  visibility: hidden;
}

.text-line-reveal {
  opacity: 0;
  visibility: hidden;
}
.text-line-reveal.showed {
  opacity: 1;
  visibility: visible;
}

.text-line-wrap {
  overflow: hidden;
}

.text-line {
  display: inline-block;
  padding-bottom: 0.13em;
}

.splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.splide__arrow[disabled] path {
  stroke-opacity: 0.5;
}
.splide__arrow[disabled]:hover {
  cursor: default;
}

.twins-wrap {
  display: -ms-grid;
  display: grid;
  overflow: hidden;
}

.twin {
  display: inline-block;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  -webkit-transition: -webkit-transform 0.6s var(--ease);
  transition: -webkit-transform 0.6s var(--ease);
  transition: transform 0.6s var(--ease);
  transition: transform 0.6s var(--ease), -webkit-transform 0.6s var(--ease);
}
.twin--first {
  -webkit-transform: translateY(110%) rotate(0.001deg);
  -ms-transform: translateY(110%) rotate(0.001deg);
  transform: translateY(110%) rotate(0.001deg);
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--green);
  padding: 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
.button--dark {
  background-color: var(--dark-brown);
}
.button--transparent {
  background-color: var(--beige-transparent);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (hover: hover) and (pointer: fine) {
  .button:hover .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .button:hover .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
}

.double-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .double-button:hover .button-text-wrap .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .double-button:hover .button-text-wrap .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
  .double-button:hover .button-arrow-wrap .twin--first {
    -webkit-transform: translateX(0) rotate(0.001deg);
    -ms-transform: translateX(0) rotate(0.001deg);
    transform: translateX(0) rotate(0.001deg);
  }
  .double-button:hover .button-arrow-wrap .twin--second {
    -webkit-transform: translateX(140%) rotate(0.001deg);
    -ms-transform: translateX(140%) rotate(0.001deg);
    transform: translateX(140%) rotate(0.001deg);
  }
}
.double-button .button-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--green);
  padding: 12px;
  border-radius: 20px;
}
.double-button .button-arrow-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--green);
  padding: 15px;
  border-radius: 40px;
}
.double-button .button-arrow-wrap .twin--first {
  -webkit-transform: translateX(-140%) rotate(0.001deg);
  -ms-transform: translateX(-140%) rotate(0.001deg);
  transform: translateX(-140%) rotate(0.001deg);
}
.double-button--black .button-text-wrap,
.double-button--black .button-arrow-wrap {
  background-color: var(--dark-brown);
}
.double-button--dark .button-arrow-wrap,
.double-button--dark .button-text-wrap {
  background-color: #241609;
}

.button-text {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--white);
}

.service-page-animation {
  position: absolute;
  z-index: 1;
  will-change: transform;
}

.mob {
  display: none !important;
}

@media (max-width: 1024px) {
  .service-page-animation {
    position: relative;
  }
}
@media (max-width: 767px) {
  .desc {
    display: none !important;
  }
  .mob {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}
.preloader.finished .preloader__video {
  display: none;
}
.preloader.finished .preloader__top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.preloader.finished .preloader__bottom {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}

.preloader__top,
.preloader__bottom {
  background: var(--beige);
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  -webkit-transition: -webkit-transform 1.3s ease-in-out;
  transition: -webkit-transform 1.3s ease-in-out;
  transition: transform 1.3s ease-in-out;
  transition: transform 1.3s ease-in-out, -webkit-transform 1.3s ease-in-out;
}

.preloader__top {
  top: 0;
}

.preloader__bottom {
  bottom: 0;
}

.preloader__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-widget {
  position: fixed;
  right: 32px;
  bottom: 24px;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  background: var(--brown-transparent);
  backdrop-filter: blur(5px);
  border: 0.5px solid var(--white-transparent-50);
  border-radius: 100px;
  padding: 2px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.contact-widget.visible {
  opacity: 1;
  visibility: visible;
}
.contact-widget.open .contact-widget__icon--open {
  opacity: 0;
}
.contact-widget.open .contact-widget__icon--close {
  opacity: 1;
}
.contact-widget.open .contact-widget__label {
  display: none;
}
.contact-widget.open .contact-widget__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-widget__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .contact-widget__toggle:hover .contact-widget__button {
    background-color: var(--white-transparent-35);
  }
}
@media (hover: none), (pointer: coarse) {
  .contact-widget__toggle:active .contact-widget__button {
    background-color: var(--white-transparent-35);
  }
}

.contact-widget__button {
  width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: background-color 0.4s;
  transition: background-color 0.4s;
}

.contact-widget__icon--close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.contact-widget__label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: var(--white);
  display: inline-block;
  margin-left: 10px;
  margin-right: 12px;
}

.contact-widget__links {
  display: none;
  gap: 4px;
}
@media (hover: hover) and (pointer: fine) {
  .contact-widget__links .contact-widget__button:hover {
    background-color: var(--white-transparent-35);
  }
}
@media (hover: none), (pointer: coarse) {
  .contact-widget__links .contact-widget__button:active {
    background-color: var(--white-transparent-35);
  }
}

@media (max-width: 767px) {
  .contact-widget {
    right: 12px;
    bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .contact-widget__label {
    display: none;
  }
  .contact-widget__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  max-width: 1920px;
  -ms-grid-column-align: center;
  justify-self: center;
}

.header__desc-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__desc-menu .header__menu {
  padding: 8px 24px;
  border-radius: 20px;
  position: relative;
}
.header__desc-menu .header__menu:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: var(--brown-transparent);
  border-radius: inherit;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
@media (hover: hover) and (pointer: fine) {
  .header__desc-menu .header__menu .header__menu-item--dropdown:hover .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
  }
  .header__desc-menu .header__menu .header__menu-item--dropdown:hover .header__icon {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}
.header__desc-menu .header__menu .header__dropdown-menu {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 16px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}
.header__desc-menu .header__menu .header__dropdown-menu:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
  display: block;
}
.header__desc-menu .header__language-switcher {
  position: absolute;
  top: 0;
  left: -20px;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.header__desc-menu .header__language-switcher .header__language-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
}
.header__desc-menu .header__language-switcher .header__language,
.header__desc-menu .header__language-switcher .header__language-arrow,
.header__desc-menu .header__language-switcher .header__language-items {
  -webkit-transition: 0.4s var(--ease);
  transition: 0.4s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .header__desc-menu .header__language-switcher:hover .header__language {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .header__desc-menu .header__language-switcher:hover .header__language-items {
    opacity: 1;
    visibility: visible;
  }
  .header__desc-menu .header__language-switcher:hover .header__language-arrow {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
}

.header__brand,
.header__desc-menu .header__menu .header__dropdown-menu,
.header__mob-menu,
.header__menu-button,
.header__language,
.header__language-items {
  background-color: var(--brown-transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 20px;
}

.header__logo img {
  vertical-align: middle;
}

.header__name {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 0.9;
  color: var(--white);
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  position: relative;
}

.header__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  padding: 8px 10px 8px 12px;
  border-radius: 20px;
}

.header__icon,
.header__language-arrow {
  margin-top: 1px;
}

.header__menu-button,
.header__mob-menu {
  display: none;
}

.header__menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.header__menu-item--dropdown {
  position: relative;
}
.header__menu-item--dropdown .header__menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
@media (hover: hover) and (pointer: fine) {
  .header__menu-item .twins-wrap:hover .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .header__menu-item .twins-wrap:hover .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
}

.header__menu-link,
.header__language-code,
.header__language-item {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.28px;
  color: var(--white);
}
@media (max-width: 767px) {
  .header__menu-link,
  .header__language-code,
  .header__language-item {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.header__mob-menu {
  border-radius: 20px;
}

@media (max-width: 1350px), (hover: none), (pointer: coarse) {
  .header {
    top: 8px;
  }
  .header:has(.header__mob-menu.active) .header__close-button {
    opacity: 1;
  }
  .header:has(.header__mob-menu.active) .header__open-button {
    opacity: 0;
  }
  .header__mob-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    padding: 32px 24px;
    border-radius: 20px;
    margin-top: 8px;
    overflow-y: auto;
  }
  .header__mob-menu .double-button .button-text-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .header__menu-button {
    position: relative;
    border-radius: 20px;
  }
  .header__menu-button .header__close-button {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  .header__menu-button svg {
    -webkit-transition: 0.4s opacity;
    transition: 0.4s opacity;
  }
  .header__desc-menu .header__menu,
  .header__desc-menu .header__wrapper {
    display: none;
  }
  .header__desc-menu .header__menu-button {
    display: block;
    padding: 12px 22px;
  }
  .header__desc-menu .header__menu-button svg {
    vertical-align: middle;
  }
  .header__menu-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 24px;
  }
  .header__menu-item {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header__menu-item--dropdown.active .header__dropdown-menu {
    display: block;
  }
  .header__menu-item--dropdown.active .header__icon {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
  .header__menu-link {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
  .header__dropdown-menu {
    opacity: 1;
    visibility: visible;
    display: none;
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .header__dropdown-menu .header__menu-link {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.32px;
    padding: 10px 0;
  }
  .header__language,
  .header__language-items {
    background: rgba(255, 255, 255, 0.1);
  }
  .header__language-items {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border-radius: 0 0 4px 4px;
  }
  .header__language-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
  }
  .header__language-switcher.toggled .header__language {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .header__language-switcher.toggled .header__language-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__language-switcher.toggled .header__language-arrow {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
  }
  .header__language {
    gap: 26px;
  }
  .header__language-code,
  .header__language-item {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.26px;
    text-transform: uppercase;
  }
}
.first-screen {
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.first-screen--memberships .first-screen__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 146px;
  line-height: 0.85;
}
.first-screen--memberships .first-screen__name {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}
@media (max-width: 767px) {
  .first-screen--memberships .first-screen__name {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}
.first-screen--memberships .first-screen__wrapper {
  padding-bottom: 32px;
}
.first-screen--memberships .first-screen__bottom {
  gap: 24px;
}
.first-screen:not(.service-page-animation) {
  position: relative;
  top: 0 !important;
}

.first-screen__content {
  height: 100%;
}
.first-screen__content:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(42, 42, 42, 0.4)), to(rgba(42, 42, 42, 0.4)));
  background: linear-gradient(0deg, rgba(42, 42, 42, 0.4) 0%, rgba(42, 42, 42, 0.4) 100%);
  position: absolute;
  inset: 0;
}

.first-screen__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.first-screen__wrapper {
  width: 100vw;
  height: 100vh;
  position: absolute;
  inset: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 20px;
}

.service-page-animation .first-screen__wrapper {
  height: 100vh;
  position: fixed;
  pointer-events: none;
}

.first-screen__top {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.first-screen__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 90px;
  line-height: 0.85;
  color: var(--white);
  text-align: center;
  max-width: 1036px;
}
@media (max-width: 767px) {
  .first-screen__title {
    font-size: 48px;
  }
}

.first-screen__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.first-screen__line {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 0%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.35);
}

.first-screen__name {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 0.85;
  letter-spacing: -0.9px;
  color: var(--white);
  display: block;
}

@media (max-width: 1024px) {
  .service-page-animation .first-screen__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: auto;
  }
  .first-screen--memberships .first-screen__title {
    font-size: 100px;
  }
  .first-screen__video {
    max-height: none;
  }
}
@media (max-width: 767px), (max-height: 600px) {
  .first-screen--memberships .first-screen__title {
    font-size: 42px;
    line-height: 0.95;
  }
  .first-screen--memberships .first-screen__wrapper {
    padding-bottom: 24px;
  }
  .first-screen__wrapper {
    padding-bottom: 24px;
  }
  .first-screen__title {
    font-size: 48px;
  }
  .first-screen__bottom {
    gap: 24px;
  }
  .first-screen__line {
    height: 1px;
  }
  .first-screen__name {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}
.zones {
  min-height: 100vh;
  background-color: var(--beige);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}

.zones__top {
  padding-top: 80px;
  padding-bottom: 48px;
}
.zones__top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

.zones__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: var(--dark);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 767px) {
  .zones__title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.zones__text {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--dark);
  width: 66.9%;
}
@media (max-width: 767px) {
  .zones__text {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.48px;
  }
}

.zones__item {
  height: 295px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-size: cover;
  background-position: 50% 50%;
  padding: 120px 32px 82px;
  -webkit-transition: 0.3s height;
  transition: 0.3s height;
  cursor: pointer;
}
.zones__item:first-child {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-26.88%, rgba(50, 47, 44, 0)), color-stop(100%, rgba(50, 47, 44, 0.7)), to(rgba(50, 47, 44, 0.7))), url(../img/photos/zone-1.jpg) lightgray 50%/cover;
  background: linear-gradient(180deg, rgba(50, 47, 44, 0) -26.88%, rgba(50, 47, 44, 0.7) 100%, rgba(50, 47, 44, 0.7) 100%), url(../img/photos/zone-1.jpg) lightgray 50%/cover;
}
.zones__item:nth-child(2) {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-26.88%, rgba(50, 47, 44, 0)), color-stop(100%, rgba(50, 47, 44, 0.7)), to(rgba(50, 47, 44, 0.7))), url(../img/photos/zone-2.jpg) lightgray 50%/cover;
  background: linear-gradient(180deg, rgba(50, 47, 44, 0) -26.88%, rgba(50, 47, 44, 0.7) 100%, rgba(50, 47, 44, 0.7) 100%), url(../img/photos/zone-2.jpg) lightgray 50%/cover;
}
.zones__item:last-child {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-26.88%, rgba(50, 47, 44, 0)), color-stop(100%, rgba(50, 47, 44, 0.7)), to(rgba(50, 47, 44, 0.7))), url(../img/photos/zone-3.jpg) lightgray 50%/cover;
  background: linear-gradient(180deg, rgba(50, 47, 44, 0) -26.88%, rgba(50, 47, 44, 0.7) 100%, rgba(50, 47, 44, 0.7) 100%), url(../img/photos/zone-3.jpg) lightgray 50%/cover;
}
.zones__item.expanded {
  height: 483px;
}
.zones__item.expanded .zones__item-arrow {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

.zones__item-index {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--white);
  width: 31px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 15px;
  border: 1px solid var(--white-transparent-50);
}
@media (max-width: 767px) {
  .zones__item-index {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.zones__item-content {
  width: 67.2%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  padding-right: 92px;
}

.zones__item-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: var(--white);
}
@media (max-width: 767px) {
  .zones__item-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.zones__item-wrapper {
  height: 0;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.3s opacity 0.3s;
  transition: 0.3s opacity 0.3s;
}
.zones__item-wrapper.visible {
  height: 100%;
  opacity: 1;
}

.zones__item-desc {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--white);
  max-width: 552px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .zones__item-desc {
    line-height: 1.2;
  }
}

.zones__item-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.zones__item-actions .button {
  width: 183px;
}

.zones__item-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 10px;
  right: 0;
  padding: 12px 16px;
  border-radius: 100px;
  border: 1px solid var(--white-transparent-50);
  background: var(--beige-transparent);
  backdrop-filter: blur(5px);
}

.zones__item-arrow {
  vertical-align: middle;
  -webkit-transition: 0.4s -webkit-transform;
  transition: 0.4s -webkit-transform;
  transition: 0.4s transform;
  transition: 0.4s transform, 0.4s -webkit-transform;
}

.zones__item-popup {
  width: 790px;
  max-width: calc(100% - 5px);
  max-height: 100%;
  -ms-grid-column-align: end;
  justify-self: end;
  left: auto;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  overflow: visible;
  -webkit-transition: -webkit-transform 0.5s var(--ease);
  transition: -webkit-transform 0.5s var(--ease);
  transition: transform 0.5s var(--ease);
  transition: transform 0.5s var(--ease), -webkit-transform 0.5s var(--ease);
}
.zones__item-popup[open] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.zones__item-popup.showed {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.zones__item-popup-content-wrap {
  overflow-y: auto;
}

.zones__item-popup-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--beige);
  padding: 40px 60px;
  border-radius: 12px 0 0 12px;
}
.zones__item-popup-content .double-button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.zones__item-popup-close-btn {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background: var(--brown-transparent);
  backdrop-filter: blur(5px);
  padding: 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.zones__item-popup-close-btn svg {
  vertical-align: middle;
}

.zones__item-popup-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.zones__item-popup-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .zones__item-popup-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.zones__item-popup-desc,
.zones__item-popup-section-desc {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: #0D0D0D;
}
@media (max-width: 767px) {
  .zones__item-popup-desc,
  .zones__item-popup-section-desc {
    line-height: 1.2;
  }
}

.zones__item-popup-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 32px;
}

.zones__item-popup-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.zones__item-popup-section-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.zones__item-popup-section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: #0D0D0D;
}
@media (max-width: 767px) {
  .zones__item-popup-section-title {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.48px;
  }
}

.zones__item-popup-section-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.zones__item-popup-section-tag {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: -0.28px;
  color: var(--white);
  background: var(--brown-transparent);
  backdrop-filter: blur(20px);
  padding: 4px 16px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .zones__item-popup-section-tag {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.zones__item-popup-section-images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: 376px;
  grid-template-rows: 376px;
  gap: 8px;
}
.zones__item-popup-section-images--double {
  -ms-grid-rows: (376px)[2];
  grid-template-rows: repeat(2, 376px);
}
.zones__item-popup-section-images--triple {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 198px 376px;
  grid-template-rows: 198px 376px;
}
.zones__item-popup-section-images--triple .zones__item-popup-section-image:last-child {
  -ms-grid-column-span: 2;
  grid-column: span 2;
}

.zones__item-popup-section-image {
  width: 100%;
  border-radius: 4px;
}
.zones__item-popup-section-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

@media (max-width: 1024px) {
  .zones__top .container {
    gap: 34px;
  }
  .zones__text {
    width: 79.6%;
  }
  .zones__item-content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  .zones__top {
    padding-bottom: 40px;
  }
  .zones__top .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .zones__text {
    width: 100%;
  }
  .zones__item {
    height: 282px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 62px;
    padding: 24px;
  }
  .zones__item.expanded {
    height: 524px;
  }
  .zones__item-index {
    height: 46px;
  }
  .zones__item-content {
    width: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
  }
  .zones__item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
  }
  .zones__item-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .zones__item-actions .button {
    width: 100%;
  }
  .zones__item-btn {
    position: static;
    padding: 8px 12px;
    border-radius: 70px;
    border: 0.7px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3.5px);
  }
  .zones__item-arrow {
    width: 17.5px;
    height: auto;
  }
  .zones__item-popup {
    width: 100%;
    max-width: calc(100% - 12px);
  }
  .zones__item-popup-content {
    padding-right: 24px;
    padding-left: 24px;
  }
  .zones__item-popup-close-btn {
    position: absolute;
    top: 16px;
    right: 8px;
  }
  .zones__item-popup-head {
    gap: 16px;
  }
  .zones__item-popup-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
  .zones__item-popup-section {
    gap: 24px;
  }
  .zones__item-popup-section-info {
    gap: 16px;
  }
  .zones__item-popup-section-title {
    line-height: 1;
    letter-spacing: 0;
  }
  .zones__item-popup-section-tags {
    gap: 8px;
  }
  .zones__item-popup-section-tag {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
  .zones__item-popup-section-images {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    gap: 8px;
  }
  .zones__item-popup-section-images--double {
    -ms-grid-rows: (auto)[2];
    grid-template-rows: repeat(2, auto);
  }
  .zones__item-popup-section-images--triple {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
  }
  .zones__item-popup-section-images--triple .zones__item-popup-section-image:last-child {
    grid-column: auto;
  }
  .zones__item-popup-section-image {
    aspect-ratio: 1.786/1;
  }
}
.spa-gallery {
  width: 100%;
  height: 150vh;
  background-color: var(--beige);
  position: relative;
}

.spa-gallery__sticky {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: absolute;
  z-index: 1;
}

.spa-gallery__rows {
  height: 100vh;
  position: relative;
}

.spa-gallery__row {
  width: 100vw;
  height: 100vh;
}
.spa-gallery__row--top {
  bottom: 100%;
  position: absolute;
}
.spa-gallery__row--bottom {
  position: absolute;
  top: 100%;
}

.spa-gallery__image {
  width: 100%;
  height: 100vh;
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.spa-gallery__image--left {
  left: auto;
  right: 100%;
}
.spa-gallery__image--right {
  left: 100%;
  right: auto;
}
.spa-gallery__image--midleft {
  left: auto;
  right: 50%;
}
.spa-gallery__image--midright {
  left: 50%;
  right: auto;
}
.spa-gallery__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.spa-gallery__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.spa-gallery__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: var(--white);
  will-change: transform;
}
@media (max-width: 767px) {
  .spa-gallery__title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.spa-gallery__text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  will-change: transform;
}
@media (max-width: 767px) {
  .spa-gallery__text {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.spa-menu {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  position: relative;
  background-color: var(--beige);
  padding-top: 100px;
  padding-bottom: 100px;
  z-index: 1;
}

.spa-menu__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: var(--dark);
}
@media (max-width: 767px) {
  .spa-menu__title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.spa-menu__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.spa-menu__item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 1/1.75;
  position: relative;
}
.spa-menu__item:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0.1)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
  position: absolute;
  inset: 0;
}

.spa-menu__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.spa-menu__item-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 16px;
}

.spa-menu__item-index {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--white);
  width: 31px;
  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  border-radius: 15px;
  border: 1px solid var(--white-transparent-50);
}
@media (max-width: 767px) {
  .spa-menu__item-index {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.spa-menu__item-wrapper {
  height: 0;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  padding: 0 10px;
  overflow: hidden;
  -webkit-transition: 0.5s height, 0.5s opacity;
  transition: 0.5s height, 0.5s opacity;
}
.spa-menu__item-wrapper.visible {
  height: 182px;
  opacity: 1;
}
@media (hover: none), (pointer: coarse) {
  .spa-menu__item-wrapper {
    height: 182px;
    opacity: 1;
  }
}

.spa-menu__item-info {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 16px;
}

.spa-menu__item-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .spa-menu__item-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.spa-menu__item-desc {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .spa-menu__item-desc {
    line-height: 1.2;
  }
}

@media (max-width: 1024px) {
  .spa-menu__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .spa-menu__item {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: calc(50% - 6px);
    aspect-ratio: 0.85/1;
  }
  .spa-menu__item-wrapper {
    height: 172px;
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .spa-menu {
    gap: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .spa-menu__item-index {
    height: 46px;
  }
  .spa-menu__item {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
    aspect-ratio: 1/1.43;
  }
  .spa-menu__item-wrapper {
    height: auto;
    gap: 40px;
    padding-left: 14px;
    padding-right: 14px;
  }
}
.promo {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.promo .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.promo__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 24px 18px;
  border-bottom: 0.5px solid var(--white-transparent-70);
  z-index: 1;
}

.promo__wrapper,
.promo__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.promo__content {
  width: 100%;
  padding: 36px 30px 36px 24px;
}

.promo__text {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: var(--white);
}
@media (max-width: 767px) {
  .promo__text {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.promo__number,
.promo__desc {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--white);
}
@media (max-width: 767px) {
  .promo__number,
  .promo__desc {
    line-height: 1.2;
  }
}

.promo__backgrounds-slider {
  position: absolute;
  inset: 0;
}
.promo__backgrounds-slider:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(29, 28, 27, 0.4)), to(rgba(29, 28, 27, 0.4)));
  background: linear-gradient(0deg, rgba(29, 28, 27, 0.4) 0%, rgba(29, 28, 27, 0.4) 100%);
  backdrop-filter: blur(7px);
  position: absolute;
  inset: 0;
}

.promo__titles-slider {
  max-width: 800px;
}

.promo__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.96px;
  color: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .promo__title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.promo__images-slider {
  margin-top: 40px;
  margin-bottom: 48px;
}

.promo__tags-slider {
  max-width: 800px;
  margin-top: 16px;
}

.promo__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
}

.promo__tag {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: var(--white);
  background: var(--beige-transparent);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--white-transparent-50);
}

.promo__descriptions-slider {
  width: 25.7%;
  position: absolute;
  left: 24px;
  bottom: 36px;
}
.promo__descriptions-slider .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.promo__arrows {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 68px;
  padding: 12px;
  border-radius: 100px;
  border: 0.5px solid var(--white-transparent-50);
  background: rgba(36, 22, 9, 0.3);
  backdrop-filter: blur(5px);
  position: absolute;
  top: calc(50% + 10px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 30px;
  z-index: 1;
  --progress: 0deg;
}
.promo__arrows::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(var(--white) var(--progress), transparent 0);
  padding: 2px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #000)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #000));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.promo__button {
  z-index: 1;
}

@media (max-width: 1024px) {
  .promo__descriptions-slider {
    width: 100%;
    position: static;
    margin-bottom: 48px;
  }
  .promo__descriptions-slider .splide__slide {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .promo__text:has(+ .promo__number) {
    width: 172px;
  }
  .promo__title {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.48px;
  }
  .promo__wrapper {
    margin-left: 12px;
    margin-right: 12px;
  }
  .promo__header {
    padding: 32px 0 18px;
  }
  .promo__content {
    padding: 42px 0 32px;
  }
  .promo__images-slider {
    margin-top: 32px;
    margin-bottom: 32px;
  }
  .promo__descriptions-slider {
    margin-bottom: 32px;
  }
  .promo__arrows {
    gap: 24px;
    top: calc(50% + 47px);
    right: 12px;
  }
  .promo__button {
    width: 100%;
  }
  .promo__button .button-text-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.reviews {
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--beige);
  padding: 120px 0;
  position: relative;
}
.reviews .container {
  height: 100%;
}

.reviews__title-wrap {
  position: absolute;
  width: 100%;
  max-width: 805px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.reviews__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: var(--dark-brown);
  text-align: center;
}
@media (max-width: 767px) {
  .reviews__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.reviews__background {
  width: 695px;
  position: absolute;
  top: 50%;
  left: calc(50% - 29px);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.reviews__background img {
  width: 100%;
}

.reviews__slider {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.reviews__slider .splide__track {
  overflow: visible;
}
.reviews__slider .splide__slide {
  width: 398px;
  min-height: 608px;
  background-image: url(../img/backgrounds/review-bg.jpg);
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 228px 32px 32px;
  border-radius: 4px;
}

.reviews__item-title {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .reviews__item-title {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.48px;
  }
}

.reviews__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.reviews__item-text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .reviews__item-text {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.reviews__item-client {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--brown-transparent);
}
@media (max-width: 767px) {
  .reviews__item-client {
    line-height: 1.2;
  }
}

.reviews__arrows {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.reviews__arrows .splide__arrow {
  width: 42px;
  height: 42px;
  background-color: var(--beige-transparent);
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews__arrows .splide__arrow--prev .twin--first {
  -webkit-transform: translateX(140%) rotate(0.001deg);
  -ms-transform: translateX(140%) rotate(0.001deg);
  transform: translateX(140%) rotate(0.001deg);
}
@media (hover: hover) and (pointer: fine) {
  .reviews__arrows .splide__arrow--prev:not([disabled]):hover .twin--first {
    -webkit-transform: translateX(0) rotate(0.001deg);
    -ms-transform: translateX(0) rotate(0.001deg);
    transform: translateX(0) rotate(0.001deg);
  }
  .reviews__arrows .splide__arrow--prev:not([disabled]):hover .twin--second {
    -webkit-transform: translateX(-140%) rotate(0.001deg);
    -ms-transform: translateX(-140%) rotate(0.001deg);
    transform: translateX(-140%) rotate(0.001deg);
  }
}
.reviews__arrows .splide__arrow--next .twin--first {
  -webkit-transform: translateX(-140%) rotate(0.001deg);
  -ms-transform: translateX(-140%) rotate(0.001deg);
  transform: translateX(-140%) rotate(0.001deg);
}
@media (hover: hover) and (pointer: fine) {
  .reviews__arrows .splide__arrow--next:not([disabled]):hover .twin--first {
    -webkit-transform: translateX(0) rotate(0.001deg);
    -ms-transform: translateX(0) rotate(0.001deg);
    transform: translateX(0) rotate(0.001deg);
  }
  .reviews__arrows .splide__arrow--next:not([disabled]):hover .twin--second {
    -webkit-transform: translateX(140%) rotate(0.001deg);
    -ms-transform: translateX(140%) rotate(0.001deg);
    transform: translateX(140%) rotate(0.001deg);
  }
}

@media (max-width: 1024px) {
  .reviews {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .reviews__title-wrap {
    max-width: 302px;
  }
  .reviews__title {
    line-height: 1.15;
  }
  .reviews__background {
    width: 407px;
    left: 50%;
  }
  .reviews__slider .splide__slide {
    width: 316px;
    min-height: 470px;
    padding-top: 90px;
  }
}
.banner {
  position: relative;
}

.banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}

.banner__video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.banner__wrapper {
  padding: 186px 32px;
}
.banner__wrapper:before {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(50, 47, 44, 0.4)), to(rgba(50, 47, 44, 0.4)));
  background: linear-gradient(0deg, rgba(50, 47, 44, 0.4) 0%, rgba(50, 47, 44, 0.4) 100%);
  position: absolute;
  inset: 0;
}

.banner__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  z-index: 1;
}

.banner__title {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -1.12px;
  color: var(--white);
}
@media (max-width: 767px) {
  .banner__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.banner__line {
  width: 1px;
  height: 0%;
  background: rgba(255, 255, 255, 0.35);
}

.banner__cta {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 36px;
  z-index: 1;
}
.banner__cta:has(.banner__cta-title) {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.banner__cta-title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
  color: var(--white);
}
@media (max-width: 767px) {
  .banner__cta-title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

.banner__button .button-text-wrap {
  width: 185px;
}

@media (max-width: 1024px) {
  .banner__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .banner__wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .banner__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .banner__wrapper {
    padding: 32px 12px;
  }
  .banner__text {
    height: 332px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
  }
  .banner__title:not(.desc) {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
  .banner__title:not(.desc) .text-line-wrap {
    text-align: center;
  }
  .banner__cta {
    width: 100%;
    gap: 20px;
  }
  .banner__cta-title {
    text-align: center;
  }
  .banner__line {
    width: 0%;
    height: 1px;
    margin-bottom: 24px;
  }
  .banner__button .button-text-wrap {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.legal {
  padding-top: 112px;
  padding-bottom: 80px;
}
.legal .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 56px;
  padding: 0 138px;
}
.legal .container:has(.legal__title--certificates) {
  gap: 32px;
}

.legal__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 90px;
  line-height: 0.85;
  color: var(--dark-brown);
  text-align: center;
}
@media (max-width: 767px) {
  .legal__title {
    font-size: 48px;
  }
}
.legal__title--certificates {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
  text-align: left;
}
@media (max-width: 767px) {
  .legal__title--certificates {
    font-size: 40px;
    line-height: 0.85;
  }
}

.legal__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 56px;
}

.legal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

.legal__item-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--dark-brown);
  text-align: center;
}
@media (max-width: 767px) {
  .legal__item-title {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}

.legal__text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--dark-brown);
  white-space: pre-line;
}
@media (max-width: 767px) {
  .legal__text {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

@media (max-width: 1024px) {
  .legal .container {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .legal {
    padding-top: 120px;
    padding-bottom: 0;
  }
  .legal .container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
  }
  .legal .container:has(.legal__title--certificates) {
    gap: 20px;
  }
  .legal__title {
    font-size: 32px;
    text-align: left;
  }
  .legal__title--certificates {
    font-size: 40px;
  }
  .legal__title--rules {
    font-size: 42px;
    line-height: 0.95;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: center;
  }
  .legal__items {
    gap: 32px;
    margin-top: 12px;
  }
  .legal__item {
    gap: 20px;
  }
  .legal__item-title {
    -ms-flex-item-align: start;
    align-self: flex-start;
    text-align: left;
  }
}
.error-404 {
  height: 100%;
  padding-top: 112px;
  padding-bottom: 80px;
}
.error-404 .container {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.error-404__wrapper {
  position: relative;
  margin-bottom: 24px;
}

.error-404__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 500px;
  line-height: 0.85;
  color: var(--dark-beige);
}
.error-404__title .text-line {
  padding-bottom: 0;
}

.error-404__subtitle {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 0.85;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--dark-brown);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.error-404__text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--dark-brown);
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .error-404__text {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

@media (max-width: 1024px) {
  .error-404__title {
    font-size: 400px;
  }
}
@media (max-width: 767px) {
  .error-404 {
    padding-top: 120px;
    padding-bottom: 0;
  }
  .error-404__wrapper {
    margin-bottom: 20px;
  }
  .error-404__title {
    font-size: 190px;
  }
  .error-404__subtitle {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.48px;
  }
  .error-404__text {
    margin-bottom: 20px;
  }
  .error-404__button {
    width: 100%;
  }
  .error-404__button .button-text-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.contacts {
  margin-top: 137px;
}
@media (max-width: 768px) {
  .contacts {
    margin-top: 120px;
  }
}
.contacts__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contacts__social-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 106px;
  border: 0.5px solid var(--dark-beige);
}
.contacts__social-item:first-child {
  border-left: none;
}
@media (max-width: 768px) {
  .contacts__social-item:first-child {
    border-left: 0.5px solid var(--dark-beige);
  }
}
.contacts__social-item:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .contacts__social-item:last-child {
    border-right: 0.5px solid var(--dark-beige);
  }
}
.contacts__social-item-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.contacts__social-item-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--green);
  z-index: -1;
  -webkit-transition: width 0.7s;
  transition: width 0.7s;
}
@media (hover: hover) and (pointer: fine) {
  .contacts__social-item-link:hover .contacts__social-item-icon path:first-child {
    fill: var(--white);
  }
  .contacts__social-item-link:hover::after {
    width: 100%;
  }
}
@media (hover: none), (pointer: coarse) {
  .contacts__social-item-link:active .contacts__social-item-icon path:first-child {
    fill: var(--white);
  }
  .contacts__social-item-link:active::after {
    width: 100%;
  }
}
.contacts__social-item-icon path {
  -webkit-transition: fill 0.7s;
  transition: fill 0.7s;
}
.contacts__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contacts__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
}
@media (max-width: 767px) {
  .contacts__title {
    font-size: 40px;
    line-height: 0.85;
  }
}
@media (max-width: 768px) {
  .contacts__title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 32px;
  }
}

.contacts-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .contacts-info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contacts-info {
    margin-bottom: 60px;
  }
}

.contacts-text__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #B6AF9F;
  padding: 24px 0;
  gap: 16px;
}
@media (max-width: 576px) {
  .contacts-text__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px 0;
  }
}
.contacts-text__row:last-of-type {
  border-bottom: none;
}
@media (hover: hover) and (pointer: fine) {
  .contacts-text__row .twins-wrap:hover .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .contacts-text__row .twins-wrap:hover .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
}
.contacts-text__row-title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.28px;
  color: #775B45;
}
.contacts-text__row-value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: #241609;
}
@media (max-width: 767px) {
  .contacts-text__row-value {
    line-height: 1.2;
  }
}
.contacts-text__row-value a {
  color: #241609;
  text-decoration: none;
}

.contact-text__phones {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  width: 336px;
}
@media (max-width: 576px) {
  .contact-text__phones {
    width: 100%;
    gap: 8px;
    font-size: 18px;
  }
}
.contact-text__phones-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contact-text__phones-row p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: #8e8576;
}
@media (max-width: 767px) {
  .contact-text__phones-row p {
    line-height: 1.2;
  }
}

.contacts-map iframe {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}
@media (max-width: 1200px) {
  .contacts-map.-desktop- {
    display: none;
  }
}
.contacts-map.-mobile- {
  display: none;
  margin-bottom: 60px;
}
@media (max-width: 1200px) {
  .contacts-map.-mobile- {
    display: block;
  }
}

.contacts-schedule-info {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}

.contacts-works {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #241609;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .contacts-works {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.contacts-works:first-child {
  margin-bottom: 40px;
}
.contacts-works__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
  max-width: 443px;
}
@media (max-width: 767px) {
  .contacts-works__title {
    font-size: 40px;
    line-height: 0.85;
  }
}
@media (max-width: 768px) {
  .contacts-works__title {
    font-size: 42px;
  }
}
.contacts-works__value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  max-width: 465px;
}
@media (max-width: 767px) {
  .contacts-works__value {
    line-height: 1.2;
  }
}

.contacts-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .contacts-schedule {
    margin-bottom: 60px;
  }
}
.contacts-schedule__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 0;
  color: #241609;
  border-bottom: 1px solid #b6af9f;
}
@media (max-width: 1200px) {
  .contacts-schedule__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
    padding-top: 0;
  }
}
.contacts-schedule__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.48px;
}
@media (max-width: 767px) {
  .contacts-schedule__title {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}
@media (max-width: 1200px) {
  .contacts-schedule__title {
    font-size: 24px;
  }
}
.contacts-schedule__value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  max-width: 465px;
}
@media (max-width: 767px) {
  .contacts-schedule__value {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.spa-page {
  color: #241609;
}
.spa-page__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 146px;
  line-height: 0.85;
  color: #fff;
}
@media (max-width: 992px) {
  .spa-page__title {
    text-align: center;
    font-size: 42px;
  }
}
.spa-page__name {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .spa-page__name {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}
.spa-page__big-screen {
  position: relative;
  top: 0 !important;
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.spa-page-prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 40px;
  min-height: 100vh;
  background-color: var(--beige);
  position: relative;
  padding-top: 56px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
@media (max-width: 992px) {
  .spa-page-prices {
    padding-top: 80px;
  }
}

.spa-page-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .spa-page-tabs {
    margin-bottom: 24px;
  }
}
.spa-page-tabs__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 32px;
  background-color: #8e8576;
  padding: 8px;
  border-radius: 60px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
}
.spa-page-tabs__wrapper a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  border-radius: 60px;
}
.spa-page-tabs__wrapper a.active {
  background-color: #241609;
  padding: 16px 20px;
}
@media (max-width: 767px) {
  .spa-page-tabs__wrapper {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.spa-page-tab-block {
  display: none;
  color: #241609;
}
.spa-page-tab-block.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .spa-page-tab-block.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spa-page-tab-block__column {
  background: url("../img/backgrounds/tariff-adult.svg") no-repeat bottom right;
  background-color: #E9E5DC;
  width: 100%;
  padding: 32px;
}
.spa-page-tab-block__column.-for-kids- {
  background: url("../img/backgrounds/tariff-kid.svg") no-repeat top right;
  background-color: #E9E5DC;
}
.spa-page-tab-block__column.-for-kids- .spa-page-tab-block__title-block {
  margin-bottom: 8px;
}
.spa-page-tab-block__column.-for-kids- .spa-page-tab-block__hint {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .spa-page-tab-block__column.-for-kids- {
    background: none;
    background-color: #E9E5DC;
  }
}
@media (max-width: 992px) {
  .spa-page-tab-block__column {
    background: none;
    background-color: #E9E5DC;
  }
}
.spa-page-tab-block__title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 72px;
}
@media (max-width: 992px) {
  .spa-page-tab-block__title-block {
    margin-bottom: 20px;
  }
}
.spa-page-tab-block__title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
}
@media (max-width: 767px) {
  .spa-page-tab-block__title {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.48px;
  }
}
.spa-page-tab-block__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 4px;
}
.spa-page-tab-block__price p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.6px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .spa-page-tab-block__price p {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.48px;
  }
}
.spa-page-tab-block__price span {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -2%;
  color: #8d8984;
}
.spa-page-tab-block__info {
  border-top: 1px solid #dfdbd1;
  padding-top: 12px;
  padding-bottom: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .spa-page-tab-block__info {
    line-height: 1.2;
  }
}
.spa-page-tab-block__info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.spa-page-tab-block__info ul li::before {
  width: 24px;
  height: 24px;
  content: url("../img/icons/check.svg");
  padding-right: 16px;
}
.spa-page-tab-block__info-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 16px;
}
.spa-page-tab-block__info-title {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: #000;
}
@media (max-width: 767px) {
  .spa-page-tab-block__info-title {
    line-height: 1.2;
  }
}
.spa-page-tab-block__info-more {
  font-family: Manrope;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #000;
  border-bottom: 1px solid #000;
}
.spa-page-tab-block__info-more:after {
  content: url("../img/icons/right-arrow.svg");
  padding-left: 16px;
}
.spa-page-tab-block__button {
  margin-top: 32px;
}
.spa-page-tab-block__hint {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .spa-page-tab-block__hint {
    line-height: 1.2;
  }
}

.spa-page-high-price {
  color: #241609;
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .spa-page-high-price {
    margin-bottom: 40px;
  }
}
.spa-page-high-price__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 992px) {
  .spa-page-high-price__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spa-page-high-price__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 992px) {
  .spa-page-high-price__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}
.spa-page-high-price__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
  max-width: 570px;
}
@media (max-width: 767px) {
  .spa-page-high-price__title {
    font-size: 40px;
    line-height: 0.85;
  }
}
@media (max-width: 992px) {
  .spa-page-high-price__title {
    margin-bottom: 20px;
  }
}
.spa-page-high-price__days {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 767px) {
  .spa-page-high-price__days {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}
.spa-page-high-price__hint {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  max-width: 184px;
}
@media (max-width: 767px) {
  .spa-page-high-price__hint {
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .spa-page-high-price__hint {
    max-width: 100%;
  }
}

.spa-page-schedule {
  color: #241609;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .spa-page-schedule {
    margin-bottom: 80px;
  }
}
.spa-page-schedule__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .spa-page-schedule__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
  }
}
.spa-page-schedule__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 992px) {
  .spa-page-schedule__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.spa-page-schedule__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
}
@media (max-width: 767px) {
  .spa-page-schedule__title {
    font-size: 40px;
    line-height: 0.85;
  }
}
.spa-page-schedule__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 453px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .spa-page-schedule__info {
    line-height: 1.2;
  }
}
@media (max-width: 992px) {
  .spa-page-schedule__info {
    max-width: 100%;
    margin-bottom: 32px;
  }
}
.spa-page-schedule__btn .button-text-wrap {
  width: 100%;
}
.spa-page-schedule__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid #b6af9f;
}
@media (max-width: 992px) {
  .spa-page-schedule__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 0;
  }
}
.spa-page-schedule__block-title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
}
@media (max-width: 767px) {
  .spa-page-schedule__block-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.spa-page-schedule__block-column {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 767px) {
  .spa-page-schedule__block-column {
    font-size: 16px;
    letter-spacing: -0.32px;
  }
}

.spa-page-consultation {
  margin-top: 56px;
  color: #241609;
  margin-bottom: 120px;
}
.spa-page-consultation .services__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .spa-page-consultation .services__image {
    display: none;
  }
}
.spa-page-consultation__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}
.spa-page-consultation__prices {
  width: 100%;
}
.spa-page-consultation__title {
  margin-top: 80px;
  margin-bottom: 12px;
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
}
@media (max-width: 767px) {
  .spa-page-consultation__title {
    font-size: 40px;
    line-height: 0.85;
  }
}
.spa-page-consultation__img {
  width: 100%;
}
@media (max-width: 992px) {
  .spa-page-consultation__img {
    display: none;
  }
}
.spa-page-consultation__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.price-block {
  border-bottom: 1px solid #b6af9f;
  padding: 32px 0;
}
@media (max-width: 992px) {
  .price-block {
    padding: 24px 0;
  }
}
.price-block__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .price-block__title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.price-block__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  max-width: 437px;
}
@media (max-width: 767px) {
  .price-block__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.price-block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .price-block__btn .button-text-wrap {
    width: 100%;
  }
}
.price-block__btn a {
  -ms-grid-column-align: start;
  justify-self: start;
}
@media (max-width: 992px) {
  .price-block__btn a {
    width: 100%;
  }
}
.price-block__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
.price-block__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.price-block__price-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}
@media (max-width: 992px) {
  .price-block__price-row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .price-block__price-row {
    line-height: 1.2;
  }
}
.price-block__price-row span {
  white-space: nowrap;
}
.price-block__price-hint {
  color: #7c776e;
}
.price-block__price-hint:after {
  content: "//";
  padding: 0px 12px;
}
.price-block__text {
  margin-bottom: 24px;
}
.price-block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.price-block__btn a {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.spa-page-additional {
  margin-bottom: 120px;
}
.spa-page-additional .services__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .spa-page-additional .services__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media (max-width: 992px) {
  .spa-page-additional .services__image {
    width: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

.spa-page-additional-block {
  color: #241609;
}
.spa-page-additional-block__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.spa-page-additional-block__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
}
@media (max-width: 767px) {
  .spa-page-additional-block__title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.spa-page-additional-block__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .spa-page-additional-block__price {
    line-height: 1.2;
  }
}
.spa-page-additional-block__price span {
  white-space: nowrap;
}
.intro {
  width: 100%;
  height: 100vh;
  height: 100svh;
}

.intro__content {
  height: 100%;
  border-radius: inherit;
}
.intro__content:after {
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(42, 42, 42, 0.4)), to(rgba(42, 42, 42, 0.4)));
  background: linear-gradient(0deg, rgba(42, 42, 42, 0.4) 0%, rgba(42, 42, 42, 0.4) 100%);
  border-radius: inherit;
  position: absolute;
  inset: 0;
}

.intro__video {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.intro__wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none;
}

.intro__top {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.intro__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 146px;
  line-height: 0.85;
  color: var(--white);
  text-align: center;
  max-width: 1036px;
}

.intro__bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.intro__line {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: 0%;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.35);
}

.intro__name {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 46px;
  line-height: 0.85;
  letter-spacing: -0.9px;
  color: var(--white);
  display: block;
}

@media (max-width: 1024px) {
  .intro__video {
    max-height: none;
  }
  .intro__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: auto;
  }
  .intro__title {
    font-size: 100px;
  }
}
@media (max-width: 767px), (max-height: 600px) {
  .intro__title {
    font-size: 60px;
  }
  .intro__bottom {
    gap: 24px;
  }
  .intro__line {
    height: 1px;
  }
  .intro__name {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}
.services {
  padding-bottom: 120px;
}
.services--extra .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.services--extra .services__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.services--extra .services__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
@media (min-width: 1025px) {
  .services--extra .container {
    margin-right: 0;
  }
}
.services:not(.services--extra) {
  min-height: 100vh;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 56px;
  padding-top: 56px;
  pointer-events: none;
}
.services:not(.services--extra).showed {
  pointer-events: auto;
}
.services:not(.services--extra) .services__item:first-child .services__item-content {
  padding-top: 0;
}
.services:not(.services--extra) .services__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1025px) {
  .services:not(.services--extra) .container {
    margin-left: 0;
  }
}

.services__title {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -1.12px;
  color: var(--dark-brown);
  text-align: center;
}
@media (max-width: 767px) {
  .services__title {
    font-size: 40px;
    line-height: 0.85;
  }
}

.services__tabs-wrap {
  max-width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.services__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  background-color: var(--brown-transparent);
  backdrop-filter: blur(20px);
  padding: 8px;
  border-radius: 40px;
  margin-left: 24px;
  margin-right: 24px;
}

.services__tab {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.4px;
  color: var(--white);
  background-color: transparent;
  padding: 16px 20px;
  border-radius: 40px;
  text-align: center;
  white-space: nowrap;
}
.services__tab.selected {
  background-color: var(--dark-brown);
}

.services__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
}

.services__video,
.services__image {
  width: 40vw;
}

.services__image {
  border-radius: 4px;
}
.services__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.services__wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.services__items {
  display: none;
}
.services__items.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services__item {
  cursor: pointer;
}

.services__item-content {
  padding: 32px 0;
}

.services__item-top[open] + .services__item-bottom {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}
.services__item-top[open] .services__item-arrow {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

.services__item-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
  list-style: none;
}
.services__item-summary::-webkit-details-marker {
  display: none;
}

.services__item-name {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .services__item-name {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.services__item-right-wrapper {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  margin-top: 10px;
}

.services__item-tariffs {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 7px;
  margin-top: 3px;
}

.services__item-tariff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.services__item-tariff,
.services__item-desc p,
.services__item-desc li {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .services__item-tariff,
  .services__item-desc p,
  .services__item-desc li {
    line-height: 1.2;
  }
}

.services__item-duration,
.services__item-separator {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--brown-transparent);
}
@media (max-width: 767px) {
  .services__item-duration,
  .services__item-separator {
    line-height: 1.2;
  }
}

.services__item-arrow {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-top: 7px;
  margin-bottom: 7px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.services__item-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.services__item-info-wrap {
  overflow: hidden;
}

.services__item-info {
  margin-top: 32px;
}

.services__item-desc {
  max-width: 36vw;
}
.services__item-desc ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  list-style: disc;
  padding-left: 16px;
}

.services__item-line {
  width: 0%;
  height: 0.5px;
  background: var(--dark-beige);
}

@media (min-width: 1351px) and (hover: hover) and (pointer: fine) {
  .service-page .services:not(.services--extra) {
    padding-top: 80px;
  }
}
@media (max-width: 1024px) {
  .services--extra .services__item:first-child .services__item-content {
    padding-top: 0;
  }
  .services:not(.services--extra) {
    pointer-events: auto;
  }
  .services__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .services__wrapper {
    width: 100%;
  }
  .services__video {
    display: none;
  }
  .services__image {
    width: 100vw;
    -webkit-transform: translateX(-24px);
    -ms-transform: translateX(-24px);
    transform: translateX(-24px);
  }
  .services__item-desc {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .services {
    padding-bottom: 80px;
  }
  .services--extra .container {
    gap: 32px;
  }
  .services--extra .services__item-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .services:not(.services--extra) {
    gap: 32px;
    padding-top: 80px;
  }
  .services__title {
    text-align: left;
  }
  .services__content {
    gap: 32px;
  }
  .services__wrapper {
    gap: 24px;
  }
  .services__tabs {
    gap: 0;
    padding: 4px;
    margin-left: 12px;
    margin-right: 12px;
  }
  .services__tab {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: -0.32px;
    padding: 12px 16px;
  }
  .services__image {
    aspect-ratio: 1.3/1;
    -webkit-transform: translateX(-12px);
    -ms-transform: translateX(-12px);
    transform: translateX(-12px);
  }
  .services__button .button-text-wrap {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .services__item-content {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .services__item-summary {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .services__item-info {
    margin-top: 20px;
  }
  .services__item-left-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .services__item-right-wrapper {
    margin-top: 0;
  }
  .services__item-tariffs {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 0;
  }
}
.offers {
  padding-bottom: 120px;
}

.offers__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.offers__item {
  width: calc(50% - 8px);
  aspect-ratio: 1.81/1;
  min-height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: var(--light-beige);
  border-radius: 4px;
  position: relative;
}
.offers__item:last-child {
  background-image: url(../img/backgrounds/offers-bg-desc.png);
  background-size: auto 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px;
}

.offers__item-tag {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--white);
  background: var(--brown-transparent);
  backdrop-filter: blur(20px);
  padding: 16px;
  border-radius: 40px;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
}

.offers__item-img {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: inherit;
  position: relative;
}
.offers__item-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.offers__item-bottom {
  padding: 32px;
}

.offers__item-text {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .offers__item-text {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.48px;
  }
}

.offers__item-wrapper {
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.offers__item-caption {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.64px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .offers__item-caption {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}

.offers__item-value {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 200px;
  line-height: 1.1;
  letter-spacing: -4px;
  -webkit-transform: translateY(36px);
  -ms-transform: translateY(36px);
  transform: translateY(36px);
}

@media (max-width: 1024px) {
  .offers__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .offers__item {
    width: 100%;
    aspect-ratio: auto;
  }
  .offers__item:last-child {
    background-image: url(../img/backgrounds/offers-bg-mob.png);
  }
}
@media (max-width: 767px) {
  .offers {
    padding-bottom: 80px;
  }
  .offers__item-caption {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
  .offers__item-value {
    font-size: 130px;
    letter-spacing: -2.6px;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.footer {
  background-color: var(--beige);
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 0.5px solid var(--dark-beige);
}

.footer__cols {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__col-wrap {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer__col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer__col .twins-wrap:hover .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .footer__col .twins-wrap:hover .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
}
.footer__col .twins-wrap .footer__col-value {
  padding-bottom: 2px;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__logo {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 0.5px solid var(--dark-beige);
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__social-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 106px;
  border: 0.5px solid var(--dark-beige);
}

.footer__social-item-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.footer__social-item-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--green);
  z-index: -1;
  -webkit-transition: width 0.7s;
  transition: width 0.7s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__social-item-link:hover .footer__social-item-icon path:first-child {
    fill: var(--white);
  }
  .footer__social-item-link:hover::after {
    width: 100%;
  }
}
@media (hover: none), (pointer: coarse) {
  .footer__social-item-link:active .footer__social-item-icon path:first-child {
    fill: var(--white);
  }
  .footer__social-item-link:active::after {
    width: 100%;
  }
}

.footer__social-item-icon path {
  -webkit-transition: fill 0.7s;
  transition: fill 0.7s;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.footer__nav--tab {
  display: none;
}

.footer__nav-item {
  height: 106px;
  border: 0.5px solid var(--dark-beige);
}

.footer__nav-item-link {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 10px 10px 30px;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.footer__nav-item-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--green);
  z-index: -1;
  -webkit-transition: width 0.7s;
  transition: width 0.7s;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-item-link:hover .footer__nav-item-number,
  .footer__nav-item-link:hover .footer__nav-item-name {
    color: var(--white);
  }
  .footer__nav-item-link:hover::after {
    width: 100%;
  }
}
@media (hover: none), (pointer: coarse) {
  .footer__nav-item-link:active .footer__nav-item-number,
  .footer__nav-item-link:active .footer__nav-item-name {
    color: var(--white);
  }
  .footer__nav-item-link:active::after {
    width: 100%;
  }
}

.footer__nav-item-number,
.footer__col-name {
  font-family: "TT Ricordi Allegria", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.28px;
  color: var(--brown);
}

.footer__nav-item-number {
  margin-top: 3px;
  -webkit-transition: color 0.7s;
  transition: color 0.7s;
}

.footer__nav-item-name {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.4px;
  color: var(--dark-brown);
  -webkit-transition: color 0.7s;
  transition: color 0.7s;
}
@media (max-width: 767px) {
  .footer__nav-item-name {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: -0.32px;
  }
}

.footer__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__middle .footer__col {
  height: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border: 0.5px solid var(--dark-beige);
}

.footer__col-value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--dark-brown);
}
@media (max-width: 767px) {
  .footer__col-value {
    line-height: 1.2;
  }
}

.footer__col-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.footer__col-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
}

.footer__col-label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.32px;
  color: var(--brown-transparent);
}
@media (max-width: 767px) {
  .footer__col-label {
    line-height: 1.2;
  }
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 24px;
  padding: 18px 20px 24px;
  border: 0.5px solid var(--dark-beige);
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 32px;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 24px;
}
@media (hover: hover) and (pointer: fine) {
  .footer__items .twins-wrap:hover .twin--first {
    -webkit-transform: translateY(0) rotate(0.001deg);
    -ms-transform: translateY(0) rotate(0.001deg);
    transform: translateY(0) rotate(0.001deg);
  }
  .footer__items .twins-wrap:hover .twin--second {
    -webkit-transform: translateY(-110%) rotate(0.001deg);
    -ms-transform: translateY(-110%) rotate(0.001deg);
    transform: translateY(-110%) rotate(0.001deg);
  }
}

.footer__item {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.28px;
  color: var(--brown-transparent);
  text-decoration: underline;
  padding-bottom: 2px;
}

@media (max-width: 1200px) {
  .footer__top,
  .footer__middle,
  .footer__bottom,
  .footer__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__top {
    border-top: 0;
  }
  .footer__logo {
    padding: 32px 0;
    border-top: 0;
    border-left: 0;
    border-right: 0;
  }
  .footer__logo-img {
    width: 176px;
  }
  .footer__nav--desc {
    display: none;
  }
  .footer__nav--tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__middle .footer__col {
    height: auto;
  }
  .footer__col-name--site br {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__col-value,
  .footer__col-label {
    line-height: 1.1;
  }
  .footer__logo-img {
    width: 128px;
  }
  .footer__nav-item {
    height: 68px;
  }
  .footer__nav-item-link {
    gap: 8px;
    padding-left: 12px;
  }
  .footer__nav-item-number {
    margin-top: 2px;
  }
  .footer__social-item {
    height: 90px;
  }
  .footer__social-item-icon {
    width: auto;
    height: auto;
    max-width: 24px;
    max-height: 24px;
  }
  .footer__bottom {
    padding-left: 12px;
    padding-right: 12px;
  }
  .footer__item {
    font-weight: 600;
  }
}/*# sourceMappingURL=main.css.map */
