@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
   Убираем внутренние отступы слева тегам списков,
   у которых есть атрибут class
  */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
   Убираем внешние отступы body и двум другим тегам,
   у которых есть атрибут class
  */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
   Убираем внешние отступы вертикали нужным тегам,
   у которых есть атрибут class
  */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
   Убираем стандартный маркер маркированному списку,
   у которого есть атрибут class
  */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
   Обнуляем вертикальные внешние отступы параграфа,
   объявляем локальную переменную для внешнего отступа вниз,
   чтобы избежать взаимодействие с более сложным селектором
  */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
   Внешний отступ вниз для параграфа без атрибута class,
   который расположен не последним среди своих соседних элементов
  */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
   Упрощаем работу с изображениями и видео
  */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
   Наследуем свойства шрифт для полей ввода
  */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  scrollbar-gutter: stable;
}

/**
   Плавный скролл
  */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

/**
   Нормализация высоты элемента ссылки при его инспектировании в DevTools
  */
a:where([class]) {
  display: inline-flex;
}

/**
   Курсор-рука при наведении на элемент
  */
button,
label {
  cursor: pointer;
}

/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут fill со значением 'none' или начинается с 'url')
  */
/**
   Приводим к единому цвету svg-элементы
   (за исключением тех, у которых уже указан
   атрибут stroke со значением 'none')
  */
:where([stroke]:not([stroke=none], [stroke^=url])) {
  stroke: currentColor;
}

/**
   Чиним баг задержки смены цвета при взаимодействии с svg-элементами
  */
svg * {
  transition-property: fill, stroke;
}

/**
   Приведение рамок таблиц в классический 'collapse' вид
  */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
   Удаляем все анимации и переходы для людей,
   которые предпочитают их не использовать
  */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap; /* Браузер покажет системный шрифт, пока грузится Oswald */
}
@font-face {
  font-family: "Montserrat Alternates";
  src: url("../fonts/MontserratAlternates-Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light-blue: #077450;
  --color-dark-blue: #0B6B4B;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-red: #ff0000;
  --color-translucent-green: #96D8C3;
  --color-translucent-blue-primary: #07745099;
  --color-translucent-blue-secondary: #2e6ddc1a;
  --color-translucent-blue-third: #487bc780;
  --color-translucent-blue-fourth: #487bc7cc;
  --color-translucent-blue-fifth: #7198dc4d;
  --gold-grad: linear-gradient(90deg, #F9C924 0%, #E4AF18 32%, #FFF98C 68%, #FFD440 100%);

  --shadow-blue: #487bc740;
  --shadow-blue-alt: #487bc759;
  --linear-gradient-primary: linear-gradient(90deg, rgba(7, 116, 54, 0.2) 49%, #077436 100%);
;
  --border-white: 2px solid var(--color-white);
  --border-blue: 2px solid var(--color-dark-blue);
  --underline-white: 1px solid var(--color-white);
  --underline-blue: 1px solid var(--color-dark-blue);
  --section-underline: 5px solid var(--color-white);
  --font-family-base: "Montserrat Alternates", sans-serif;
  --font-family-alt: "Oswald", serif;
  --container-width: 1216px;
  --container-padding-x: 20px;
  --icon-height: 34px;
  --button-height: 60px;
}
@media (max-width: 1000px) {
  :root {
    --button-height: 55px;
  }
}
@media (max-width: 480px) {
  :root {
    --button-height: 60px;
  }
}
@media (max-width: 480px) {
  :root {
    --button-height: 50px;
  }
}
:root {
  --transition-duration: 0.8s;
  --animation-delay: 1s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 1000px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .hidden-phone {
    display: none !important;
  }
}

@media (min-width: 1001px) {
  .visible-mobile {
    display: none !important;
  }
}

@supports (-webkit-touch-callout: none) {
  .video-element {
    position: relative;
    background-color: #000;
  }
  .video-element::-webkit-media-controls-start-playback-button {
    display: none;
  }
  .video-element::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="none" stroke="white" stroke-width="5"/><polygon points="40,30 70,50 40,70" fill="white"/></svg>') center no-repeat;
    background-size: cover, 80px 80px;
    pointer-events: none;
    z-index: 1;
  }
}

@keyframes opacity0-1 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  font-size: clamp(16px, 1.8vw, 18px);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-dark-blue);
  background-color: var(--color-white);
}

input {
  cursor: pointer;
}

a,
button,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

h1 {
  font-size: 127px;
}
@media (max-width: 1000px) {
  h1 {
    font-size: clamp(32px, 8.4vw, 84px);
  }
}

h2 {
  font-size: 127px;
}
@media (max-width: 1000px) {
  h2 {
    font-size: clamp(32px, 8.4vw, 84px);
  }
}

h3 {
  font-size: 48px;
}
@media (max-width: 1000px) {
  h3 {
    font-size: clamp(24px, 4vw, 40px);
  }
}

h4 {
  font-size: 28px;
  line-height: 1.4;
}
@media (max-width: 1000px) {
  h4 {
    font-size: clamp(22px, 2.8vw, 28px);
    line-height: 1.4;
  }
}

h5 {
  font-size: 20px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: var(--border-blue);
  color: var(--color-white);
}

.button--long {
  position: relative; /* Важно для позиционирования псевдоэлемента */
  height: var(--button-height);
  padding-inline: 35px;
  color: var(--color-white);
  background-color: var(--color-translucent-blue-primary);
  border: 1px solid transparent; /* Задаем дефолтную рамку, чтобы кнопка не дергалась при ховере */
  font-size: 24px;
  overflow: hidden; /* Чтобы градиент не вылезал за скругления кнопки */
  z-index: 1;

  /* Плавно анимируем цвет текста и рамку */
  transition: color var(--transition-duration), border-color var(--transition-duration);
}

/* Создаем скрытый слой с золотым градиентом */
.button--long::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;
  transition: opacity var(--transition-duration);
  z-index: -1; /* Прячем под текст кнопки */
}
@media (max-width: 768px) {
  .button--long {
    font-size: 20px;
    padding-inline: clamp(5px, -85px + 15.63%, 35px);
  }
}
@media (max-width: 480px) {
  .button--long {
    font-size: 24px;
  }
}
@media (max-width: 360px) {
  .button--long {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .button--long:hover {
    border-color: white;
    color: black;
  }
  .button--long:hover::before {
    opacity: 1; /* Плавно включаем золото */
  }
}

/* Для мобилок (тап пальцем) */
@media (hover: none) {
  .button--long:active {
    border-color: white;
    color: black;
  }
  .button--long:active::before {
    opacity: 1; /* Плавно включаем золото */
  }
}
.button--white {
  background-color: var(--color-white);
  color: var(--color-dark-blue);
}
@media (hover: hover) {
  .button--white:hover {
    background-color: var(--color-white);
  }
}
@media (hover: none) {
  .button--white:active {
    background-color: var(--color-white);
  }
}
.button--light-blue {
  background-color: var(--color-light-blue);
}
.button--border-white {
  border: var(--border-white);
}
.button--border-blue {
  border: var(--border-blue);
}
@media (hover: hover) {
  .button--border-blue:hover {
    border: var(--border-blue);
  }
}
@media (hover: none) {
  .button--border-blue:active {
    border: var(--border-blue);
  }
}

.many-text + .button--long {
  width: 100%;
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 50px;
  aspect-ratio: 1;
  border: var(--border-white);
  background-color: var(--color-dark-blue);
  position: relative;
}
@media (hover: hover) {
  .burger-button:hover {
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .burger-button:active {
    background-color: var(--color-accent);
  }
}
.burger-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 60%;
  height: 2px;
  background-color: var(--color-white);
  box-shadow: 0 -12px var(--color-white), 0 12px var(--color-white);
}

.cross-button {
  padding: 0;
  background-color: transparent;
  border: none;
  width: 50px;
  aspect-ratio: 1;
  position: relative;
}
@media (hover: hover) {
  .cross-button:hover {
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .cross-button:active {
    background-color: var(--color-accent);
  }
}
.cross-button::before, .cross-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47%;
  height: 5px;
  border-radius: 3px;
  background-color: var(--color-white);
}
.cross-button::before {
  rotate: 45deg;
}
.cross-button::after {
  rotate: -45deg;
}

.lang-button {
  background-color: var(--color-dark-blue);
  padding: 7px 10px;
  font-size: inherit;
  height: 34px;
  width: 87px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
.lang-button summary {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 4px;
  width: 100%;
  list-style: none;
}
.lang-button__item {
  background-color: var(--color-dark-blue);
  text-align: left;
  justify-content: flex-start;
  color: currentColor;
  border: none;
  padding: 5px 10px;
  height: 34px;
  width: 87px;
}

.lang-button summary::after {
  content: "";
  margin-left: 8px;
  display: inline-block;
  width: 10px;
  height: 13px;
  margin-left: 8px;
  background-image: url('data:image/svg+xml;utf8,<svg width="10" height="13" viewBox="0 0 10 13" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 6.5L0.249999 12.1292L0.25 0.870834L10 6.5Z" fill="white"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}

/* Анимация маркера при открытии */
.lang-button[open] summary::after {
  transform: rotate(90deg);
}

.warning {
  font-size: 24px;
  text-align: center;
  padding-block: 25px;
  line-height: 1.5;
}

.video-container {
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
  border-bottom: var(--underline-blue);
  display: block;
}
.video-container__body {
  width: 100%;
  aspect-ratio: 1216/690; /* Соотношение сторон (ширина/высота) */
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-overlay {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  border: none;
  padding-inline: 20px;
  color: var(--color-white);
  background-color: var(--color-light-blue);
}
.mobile-overlay:modal {
  max-width: 100%;
  max-height: 100%;
}
.mobile-overlay__cross-button-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.mobile-overlay__cross-button {
  position: absolute;
  top: -15px;
  right: -15px;
  -webkit-appearance: none; /* Важно для Safari */
  -moz-appearance: none;
       appearance: none;
}
.mobile-overlay__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
  padding-block: clamp(35px, 2px + 4.31vw, 45px);
  font-size: 20px;
}
@media (max-width: 480px) {
  .mobile-overlay__list {
    font-size: 24px;
    padding-block: clamp(63px, -27px + 25vw, 93px);
  }
}
.mobile-overlay__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 10px;
}
@media (hover: hover) {
  .mobile-overlay__link:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .mobile-overlay__link:active::after {
    width: 100%;
  }
}
.mobile-overlay__link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition-duration: inherit;
}
.mobile-overlay__link--active::after {
  width: 100%;
}

body:has(dialog[open]) {
  overflow: clip;
}

.header {
  background-color: var(--color-light-blue);
  box-shadow: 0px 2px 3px 0px rgba(72, 123, 199, 0.3019607843);
  position: sticky;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
}
.header.hide-on-scroll {
  transform: translateY(-100%);
  transition: transform var(--transition-duration) ease;
}
.header.show-on-scroll-up {
  transform: translateY(0);
  position: sticky;
}
.header__body {
  color: var(--color-white);
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  gap: 20px;
}
@media (max-width: 480px) {
  .header__body {
    padding-inline: 30px;

  }
}
@media (max-width: 360px) {
  .header__body {
    padding-inline: 20px;
  }
}
.header__menu {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  font-size: 20px;
}
.header__menu-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__menu-list--left {
  flex-grow: 1;
  justify-content: space-around;
  gap: 25px;
}
@media (min-width: 1001px) {
  .header__menu-list {
    padding-inline: 20px;
  }
}
@media (max-width: 1000px) {
  .header__menu-list {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1001px) {
  .header__menu-list {
    gap: clamp(6px, -30px + 3.61vw, 15px);
  }
}
.header__menu-item {
  display: flex;
  flex-shrink: 1;
}
.header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-align: center;
  height: 48px;
  width: -moz-max-content;
  width: max-content;
  padding: 10px;
}
@media screen and (max-width: 1250px) and (min-width: 1001px) {
  .header__menu-link {
    padding: clamp(3px, -34px + 3.5vw, 10px);
  }
}
.header__menu-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 100%;
  opacity: 0;
  height: 2px;
  background-color: currentColor;
  transition-duration: inherit;
}
@media (hover: hover) {
  .header__menu-link:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .header__menu-link:active::after {
    opacity: 1;
  }
}
.header__menu-link--active::after {
  opacity: 1;
}
.header__menu-icon {
  position: relative;
}
.header__menu-icon--has-notification {
  margin-right: 16px;
}
.header__menu-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
  min-width: 34px;
}
.header__menu-notification-wrapper {
  font: inherit;
  padding-block: 1px;
  position: absolute;
  left: 26px;
  bottom: 40%;
  text-align: center;
  border-radius: 1px;
  width: 32px;
  height: 19px;
  background-color: var(--color-red);
  color: var(--color-white);
}
@media (max-width: 768px) {
  .header__burger-button {
    width: 40px;
    aspect-ratio: 1;
  }
  .header__burger-button::after {
    box-shadow: 0 -10px var(--color-white), 0 10px var(--color-white);
  }
}
@media (max-width: 480px) {
  .header__burger-button {
    width: 50px;
    aspect-ratio: 1;
  }
  .header__burger-button::after {
    box-shadow: 0 -12px var(--color-white), 0 12px var(--color-white);
  }
}
@media (max-width: 360px) {
  .header__burger-button {
    width: 40px;
    aspect-ratio: 1;
  }
  .header__burger-button::after {
    box-shadow: 0 -10px var(--color-white), 0 10px var(--color-white);
  }
}
.header__logo {
  width: auto;
  height: 100%;
}

.breadcrumbs {
  padding-top: clamp(25px, 8px + 2.16vw, 30px);
  padding-bottom: 25px;
  border-bottom: var(--underline-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  -moz-column-gap: clamp(15px, 7px + 1.74vw, 20px);
       column-gap: clamp(15px, 7px + 1.74vw, 20px);
  row-gap: 10px;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding-top: clamp(20px, 12px + 1.74vw, 25px);
    padding-bottom: clamp(10px, -15px + 5.21vw, 25px);
  }
}
@media (max-width: 480px) {
  .breadcrumbs {
    padding-top: clamp(10px, -20px + 8.33vw, 20px);
  }
}
.breadcrumbs__link {
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 28px);
}
.breadcrumbs__link-icon-wrapper {
  margin-left: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .breadcrumbs__link-icon-wrapper {
    margin-left: 5px;
  }
  .breadcrumbs__link-icon-wrapper svg {
    width: 16px;
    height: 13px;
  }
}
.green-svg path {
  fill: var(--color-dark-blue) !important;
}
.breadcrumbs__link-icon-wrapper svg path {
  fill: var(--color-dark-blue);
}


.calendar {
  width: 100%;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(3, 1fr);
}
.calendar--2-columns {
  grid-template-columns: repeat(2, 1fr);
}
.calendar :where([fill]:not([fill=none], [fill^=url])) {
  fill: currentColor;
}
@media (max-width: 576px) {
  .calendar {
    grid-template-columns: repeat(2, 1fr);
    font-size: clamp(16px, 0.583rem + 1.85vw, 20px);
  }
}
.calendar__field-control {
  border-radius: 0;
  min-width: 0;
  font-size: inherit;
  text-align: center;
}
.calendar__field-control--color-black::placeholder {
  color: white;
  transition: color var(--transition-duration);
}

@media (hover: hover) {
  .calendar__field-control--color-black:hover {
  background: var(--gold-grad);
}
.calendar__field-control--color-black:hover::placeholder {
  color: black !important;
}
}
@media (hover: none) {
  .calendar__field-control--color-black:active {
  background: var(--gold-grad);
}
.calendar__field-control--color-black:active::placeholder {
  color: black !important;
}
}

.calendar__submit-button {
  gap: 10px;
  grid-column: -1/1;
  font-size: inherit;
}
@media (max-width: 576px) {
  .calendar__submit-button {
    grid-column: -1/2;
  }
}
.calendar__submit-button--long {
  grid-column: -1/1;
}
.calendar__submit-button-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar__submit-button-icon-wrapper svg {
  width: clamp(16px, 1px + 4.17vw, 25px);
  aspect-ratio: 1;
}
.calendar__two-in-one {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  font-size: inherit;
}
.calendar__two-in-one-field {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2px;
       column-gap: 2px;
}
.calendar__two-in-one-field--duration {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.calendar__two-in-one-field--date-and-time {
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-block: 15px;
}
.calendar__two-in-one-field-control {
  background-color: transparent;
  border: none;
  width: 42px;
  color: inherit;
}
.calendar__two-in-one-field-control--long {
  width: auto;
  max-width: 128px;
}
.calendar__two-in-one-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  aspect-ratio: 1;
}
.calendar__two-in-one-icon-wrapper svg {
  width: 16px;
  aspect-ratio: 1;
}
.calendar__two-in-one-icon-wrapper--children svg {
  width: 13px;
  aspect-ratio: 1;
}

.house-card {
  height: clamp(260px, -104px + 47.41vw, 370px);
  background-color: var(--color-light-blue);
  overflow: hidden;
}
@media (max-width: 480px) {
  .house-card {
    height: clamp(210px, 60px + 41.67vw, 260px);
  }
}
.house-card__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform var(--transition-duration) ease;
}
.house-card__link {
  width: 100%;
  height: 100%;
  position: relative;
}
/* @media (hover: hover) {
  .house-card__link:hover .house-card__image {
    transform: scale(1.1);
  }
  .house-card__link:hover span {
    background: var(--gold-grad);
    color: black;
  }
}
@media (hover: none) {
  .house-card__link:active .house-card__image {
    transform: scale(1.1);
  }
  .house-card__link:active span {
    background: var(--gold-grad);
    color: black;
  }
}
.house-card__link span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: var(--color-white);
  background-color: var(--color-translucent-blue-primary);
  font-size: clamp(40px, -14px + 5.37vw, 48px);
  font-weight: 700;
  width: 100%;
  height: clamp(80px, 27px + 6.9vw, 96px);
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: all var(--transition-duration), color 0s;
    /* transition-duration: var(--transition-duration);
} */
.house-card__link span {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  color: var(--color-white);
  background-color: var(--color-translucent-blue-primary);
  font-size: clamp(40px, -14px + 5.37vw, 48px);
  font-weight: 700;
  width: 100%;
  height: clamp(80px, 27px + 6.9vw, 96px);
  display: flex;
  justify-content: center;
  align-items: center;

  /* Плавно анимируем цвет текста */
  transition: color var(--transition-duration);

  overflow: hidden;
  z-index: 1;
}

/* Скрытый золотой слой */
.house-card__link span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-grad);
  opacity: 0;

  /* Плавно анимируем появление фона с ТОЙ ЖЕ скоростью */
  transition: opacity var(--transition-duration);
  z-index: -1;
}

 @media (hover: hover) {
  .house-card__link:hover .house-card__image {
    transform: scale(1.1);
  }

  /* Плавно проявляем золотой градиент */
  .house-card__link:hover span::before {
    opacity: 1;
  }

  /* Плавно перекрашиваем текст в черный */
  .house-card__link:hover span {
    color: black;
  }
}

@media (hover: none) {
  .house-card__link:active .house-card__image {
    transform: scale(1.1);
  }

  /* Плавно проявляем золотой градиент */
  .house-card__link:active span::before {
    opacity: 1;
  }

  /* Плавно перекрашиваем текст в черный */
  .house-card__link:active span {
    color: black;
  }
}
/* найти и сделать */

@media (max-width: 1000px) {
  .house-card__link span {
    font-size: clamp(26px, 3.6vw, 36px);
    height: clamp(70px, 40px + 8.33vw, 80px);
  }
}

.room-card {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 1px 4px 0px var(--shadow-blue);
}
.room-card__image {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.room-card__header {
  height: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .room-card__header {
    height: clamp(230px, -5px + 30.6vw, 300px);
  }
}
@media (max-width: 480px) {
  .room-card__header {
    height: clamp(200px, 20px + 50vw, 260px);
  }
}
.room-card__header-link {
  position: absolute;
  bottom: 0;
  color: var(--color-white);
  background: var(--linear-gradient-primary);
  font-size: 20px;
  font-weight: 400;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding-right: 23px;
  height: clamp(40px, 4px + 4.74vw, 51px);
  transition-duration: var(--transition-duration);
  opacity: 0;
}
@media (max-width: 1000px) {
  .room-card__header-link {
    opacity: 1;
  }
}
@media (max-width: 1000px) and (hover: hover) {
  .room-card__header-link:hover {
    background-color: var(--color-light-blue);
  }
}
@media (max-width: 1000px) and (hover: none) {
  .room-card__header-link:active {
    background-color: var(--color-translucent-blue-fourth);
  }
}
@media (max-width: 480px) {
  .room-card__header-link {
    height: clamp(40px, 7px + 9.17vw, 51px);
  }
}
@media (hover: hover) {
  .room-card:hover .room-card__header-link {
    opacity: 1;
  }
}
@media (hover: none) {
  .room-card:active .room-card__header-link {
    opacity: 1;
  }
}
.room-card__subtitle, .room-card__bed-description, .room-card__prices, .room-card__checkbox {
  color: var(--color-black);
}
.room-card__body {
  padding: 0 10px 10px;
}
.room-card__titles {
  margin-block: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.room-card__beds {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 19px;
  min-height: 95px;
}
.room-card__bed {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 23px;
       column-gap: 23px;
  font-size: 18px;
}
.room-card__bed-icon-wrapper svg {
  max-width: 33px;
  max-height: 33px;
}
.room-card__bed-description {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 6px;
       column-gap: 6px;
}
.room-card__prices-and-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  margin-block: 45px;
  min-height: 92px;
}
.room-card__prices {
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 15px;
  font-weight: 700;
  font-size: clamp(28px, 15px + 1.72vw, 32px);
}
@media (max-width: 480px) {
  .room-card__prices {
    font-size: clamp(24px, 6.67vw, 32px);
  }
}
.room-card__price-regular:nth-last-of-type(2) {
  font-weight: 400;
  text-decoration: line-through;
  font-size: clamp(22px, 15px + 0.86vw, 24px);
}
@media (max-width: 480px) {
  .room-card__price-regular:nth-last-of-type(2) {
    font-size: clamp(20px, 8px + 3.33vw, 24px);
  }
}
.room-card__checkbox-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 5px;
       column-gap: 5px;
}
.room-card__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: clamp(16px, 0.625rem + 1.67vw, 18px);
}
.room-card__checkbox::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  border: var(--border-blue);
  background-color: transparent;
}
.room-card__checkbox-control:checked + .room-card__checkbox::before {
  background-color: transparent;
  border-color: var(--color-dark-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='17' viewBox='0 0 21 17' fill='none'%3E%3Cpath d='M21 3.52082L8.12133 17L0 8.50001L3.36396 4.9792L8.12133 9.95842L17.6361 0L21 3.52082Z' fill='%23487BC7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 13px;
}
.room-card__icons {
  padding-block: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  padding-inline: 141px;
  border-bottom: var(--border-blue);
  border-top: var(--border-blue);
}
@media (max-width: 1000px) {
  .room-card__icons {
    padding-inline: clamp(19px, -173px + 25vw, 77px);
  }
}
@media (max-width: 480px) {
  .room-card__icons {
    padding-inline: clamp(8px, -154px + 45vw, 62px);
  }
}
.room-card__button-submit {
  margin-top: 20px;
  height: 55px;
  width: 100%;
}

.price-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 4px 0px var(--shadow-blue-alt);
  padding-block: clamp(26px, 18px + 2.19vw, 40px);
  padding-inline: clamp(15px, 9px + 1.56vw, 25px);
  font-weight: 700;
  font-size: clamp(18px, 12px + 1.56vw, 28px);
  margin-bottom: 10px;
}
.price-card__price {
  margin-left: auto;
  color: var(--color-black);
}

.booking-card {
  overflow: hidden;
  box-shadow: 0px 0px 4px 0px var(--shadow-blue-alt);
  height: 100%;
  display: grid;
  grid-template-columns: 186px 1fr;
}
@media (max-width: 1000px) {
  .booking-card {
    grid-template-columns: 1fr;
    align-content: start;
  }
}
.booking-card__image-wrapper {
  width: 186px;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .booking-card__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 475/293;
  }
}
@media (max-width: 1000px) and (max-width: 670px) {
  .booking-card__image-wrapper {
    aspect-ratio: 440/250;
  }
}
.booking-card__image-wrapper img {
  height: 100%;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1000px) {
  .booking-card__image-wrapper img {
    width: 100%;
    height: auto;
  }
}
.booking-card__body {
  padding-block: 16px;
  padding-inline: clamp(16px, -198px + 21vw, 37px);
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
@media (max-width: 1000px) {
  .booking-card__body {
    padding-inline: 20px;
    padding-block: clamp(22px, -2px + 6.67vw, 30px);
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 63px;
  }
}
.booking-card__body-first-part, .booking-card__body-second-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .booking-card__body-first-part {
    justify-content: flex-start;
    row-gap: 45px;
  }
  .booking-card__body-second-part {
    justify-content: flex-start;
    row-gap: 20px;
    margin-bottom: auto;
  }
}
.booking-card__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 35px;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  font-size: clamp(24px, 17px + 0.93vw, 28px);
  line-height: 1.4;
}
@media (max-width: 1000px) {
  .booking-card__title {
    line-height: 2;
  }
}
@media (max-width: 670px) {
  .booking-card__title {
    flex-direction: column;
    align-items: flex-start;
  }
}
.booking-card__title-room {
  color: var(--color-black);
  font-size: clamp(22px, 12px + 1.24vw, 28px);
}
@media (max-width: 480px) {
  .booking-card__title {
    font-size: clamp(22px, 10px + 3.33vw, 26px);
  }
  .booking-card__title-room {
    font-size: clamp(20px, 14px + 1.67vw, 22px);
  }
}
.booking-card__info-list {
  display: flex;
  justify-content: flex-start;
  -moz-column-gap: 28px;
       column-gap: 28px;
}
@media (max-width: 1000px) {
  .booking-card__info-list {
    flex-direction: column;
  }
}
.booking-card__info-item {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
}
.booking-card__info-icon-wrapper {
  height: 43px;
}
.booking-card__info-text {
  color: var(--color-black);
  font-size: 20px;
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking-card__price {
  font-weight: 400;
  font-size: clamp(20px, 9px + 2.35vw, 24px);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  min-height: 35px;
  -moz-column-gap: clamp(8px, -196px + 20.41vw, 18px);
       column-gap: clamp(8px, -196px + 20.41vw, 18px);
  align-self: flex-end;
}
@media (max-width: 1000px) {
  .booking-card__price {
    -moz-column-gap: 18px;
         column-gap: 18px;
  }
}
.booking-card__price-icon-wrapper {
  color: var(--color-dark-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking-card__price-bold {
  font-weight: 700;
}
.booking-card__button, .booking-card__status {
  color: black;
  margin-left: auto;
  width: -moz-max-content;
  width: max-content;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  .booking-card__button, .booking-card__status {
    margin-left: 0;
    justify-content: flex-start;
    font-size: clamp(16px, 5px + 2.35vw, 20px);
  }
}
.booking-card__button-icon-wrapper, .booking-card__status-icon-wrapper {
  height: 43px;
}
.booking-card__button {
  padding: 0;
  background-color: transparent;
  border: none;
}
.booking-card__button-icon-wrapper {
  color: var(--color-dark-blue);
  transition-duration: var(--transition-duration);
}
@media (hover: hover) {
  .booking-card__button-icon-wrapper:hover {
    color: var(--color-red);
  }
}
@media (hover: none) {
  .booking-card__button-icon-wrapper:active {
    color: var(--color-red);
  }
}
.booking-card__button-text {
  height: 43px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.booking-card__info-icon-wrapper, .booking-card__button-icon-wrapper, .booking-card__status-icon-wrapper {
  position: relative;
  margin-right: 30px;
}
.booking-card__info-icon-wrapper svg, .booking-card__button-icon-wrapper svg, .booking-card__status-icon-wrapper svg {
  position: absolute;
  top: 45%;
  translate: 0 -50%;
}
.booking-card__info-item--small-column-gap .booking-card__info-icon-wrapper {
  margin-right: 50px;
}

.hours-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 0px 4px 0px var(--shadow-blue-alt);
  padding-block: 40px;
  padding-inline: 25px;
  font-size: clamp(22px, 15px + 1.88vw, 34px);
}
@media (max-width: 1000px) {
  .hours-card {
    padding-block: clamp(20px, 14px + 1.56vw, 30px);
  }
}
.hours-card__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .hours-card__icon-wrapper svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .hours-card__icon-wrapper svg {
    width: 35px;
    height: 35px;
  }
}
.hours-card__time {
  margin-left: auto;
}

.gallery-card {
  position: relative;
  aspect-ratio: 399/255;
  overflow: hidden;
}
@media (hover: hover) {
  .gallery-card:hover .gallery-card__picture,
  .gallery-card:hover .gallery-card__video {
    transform: scale(1.1);
  }
}
@media (hover: none) {
  .gallery-card:active .gallery-card__picture,
  .gallery-card:active .gallery-card__video {
    transform: scale(1.1);
  }
}
.gallery-card__picture, .gallery-card__video {
  transition: transform var(--transition-duration) ease;
}
.gallery-card__link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.gallery-card__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-card__picture {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-card__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dark-blue-mess {
  padding-block: 30px;
}
@media (max-width: 480px) {
  .dark-blue-mess__container {
    padding-inline: 0;
  }
}
.dark-blue-mess__body {
  color: var(--color-white);
  background-color: var(--color-light-blue);
  text-align: center;
  padding-block: clamp(50px, -66px + 15.09vw, 85px);
  padding-inline: clamp(35px, -15px + 6.47vw, 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}
@media (max-width: 768px) {
  .dark-blue-mess__body {
    padding-inline: clamp(20px, 7px + 3.68vw, 35px);
  }
}
.dark-blue-mess__title {
  font-size: 46px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .dark-blue-mess__title {
    font-size: clamp(24px, 15px + 2.5vw, 40px);
  }
}
.dark-blue-mess__paragraph {
  max-width: 638px;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
}
.dark-blue-mess__button-cont {
  width: 100%;
  max-width: 638px;
  padding-inline: clamp(20px, 11px + 1.92vw, 30px);
}
.dark-blue-mess__button {
  width: 100%;
  background-color: var(--color-translucent-blue-primary);
  border-color: var(--color-white);
}
@media (max-width: 480px) {
  .dark-blue-mess__button {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .dark-blue-mess__button:hover {
    border-color: var(--color-white);
  }
}
@media (hover: none) {
  .dark-blue-mess__button:active {
    border-color: var(--color-white);
  }
}

.many-text {
  font-weight: 400;
  font-size: clamp(18px, -2px + 2.59vw, 24px);
  line-height: 2;
  color: var(--color-black);
  padding-top: 20px;
  padding-bottom: 25px;
}
.many-text ul {
  margin-block: 0;
}

.photos-description {
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
  border-bottom: var(--underline-blue);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 25px;
}
@media (max-width: 1000px) {
  .photos-description {
    grid-template-columns: 1fr;
    row-gap: clamp(15px, 6px + 1.92vw, 25px);
    grid-template-rows: auto auto auto;
  }
}
@media (min-width: 1001px) {
  .photos-description--reverse {
    grid-template-areas: "text image1" "text image2";
  }
  .photos-description--reverse .photos-description__image-wrapper:first-child {
    grid-area: image1;
  }
  .photos-description--reverse .photos-description__image-wrapper:last-child {
    grid-area: image2;
  }
  .photos-description--reverse .photos-description__text {
    grid-area: text;
  }
}
.photos-description__image-wrapper {
  overflow: hidden;
}
.photos-description__image-wrapper:first-child {
  grid-row: 1;
  grid-column: 1;
}
@media (max-width: 1000px) {
  .photos-description__image-wrapper:first-child {
    grid-row: 1;
    grid-column: 1;
  }
}
.photos-description__image-wrapper:last-child {
  grid-row: 2;
  grid-column: 1;
}
@media (max-width: 1000px) {
  .photos-description__image-wrapper:last-child {
    grid-row: 3;
    grid-column: 1;
  }
}
.photos-description__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photos-description__text {
  grid-column: 2;
  grid-row: 1/span 2; /* Занимает две строки */
  align-self: flex-start;
  color: var(--color-black);
  font-size: clamp(20px, 4px + 1.54vw, 24px);
  line-height: 2;
}
@media (max-width: 1000px) {
  .photos-description__text {
    font-size: clamp(18px, -2px + 2.59vw, 24px);
    grid-row: 2;
    grid-column: 1;
  }
}
.photos-description__text ul {
  margin-block: 0;
}

.section-secondary--in-rooms-more-details .swiper {
  border-bottom: var(--underline-blue);
  width: 100%;
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
}
.section-secondary--in-rooms-more-details .swiper-container {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 1216/690;
}
.section-secondary--in-rooms-more-details .swiper-container::part(button-prev) {
  left: 10%;
}
.section-secondary--in-rooms-more-details .swiper-container::part(button-next) {
  right: 10%;
  left: auto;
}
.section-secondary--in-rooms-more-details .swiper-container::part(pagination) {
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(18px, 10px + 2.19vw, 32px);
  bottom: 11%;
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none; /* Отключаем события для контейнера */
}
.section-secondary--in-rooms-more-details .swiper-container::part(button-prev), .section-secondary--in-rooms-more-details .swiper-container::part(button-next) {
  color: var(--color-white);
  background-color: var(--color-translucent-blue-primary);
  padding: 20px;
  width: 43px;
  height: 43px;
  position: absolute;
  bottom: 12.75%;
  z-index: 20;
  top: auto;
  transform: translateY(calc(50% - 10px)) translateZ(0);
  transition-duration: var(--transition-duration);
}
@media (hover: hover) {
  .section-secondary--in-rooms-more-details .swiper-container::part(button-prev):hover, .section-secondary--in-rooms-more-details .swiper-container::part(button-next):hover {
    background-color: var(--color-dark-blue);
  }
}
@media (hover: none) {
  .section-secondary--in-rooms-more-details .swiper-container::part(button-prev):active, .section-secondary--in-rooms-more-details .swiper-container::part(button-next):active {
    background-color: var(--color-dark-blue);
  }
}
@media (max-width: 1000px) {
  .section-secondary--in-rooms-more-details .swiper-container::part(button-prev), .section-secondary--in-rooms-more-details .swiper-container::part(button-next) {
    display: none !important;
  }
}
.section-secondary--in-rooms-more-details .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-secondary--in-rooms-more-details .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-modal {
  position: absolute;
  overflow-x: hidden;
  top: var(--window-scroll-top, 0);
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: transparent;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease, background-color 0.8s ease;
}
.gallery-modal--open {
  opacity: 1;
  visibility: visible;
  z-index: 1000;
  background-color: var(--color-translucent-blue-fourth);
}
.gallery-modal__content {
  max-width: 95%;
  max-height: 95%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 45px;
  padding-inline: clamp(80px, -113px + 19.29vw, 134px);
  background-color: var(--color-white);
  transform: translateX(100%);
  transition: transform 0.8s ease;
  will-change: transform;
}
@media (max-width: 1000px) {
  .gallery-modal__content {
    padding-block: clamp(56px, -7px + 8.19vw, 75px);
    padding-inline: clamp(64px, 11px + 6.9vw, 80px);
  }
}
@media (max-width: 768px) {
  .gallery-modal__content {
    padding: clamp(30px, 8px + 6.13vw, 55px);
  }
}
.gallery-modal--open .gallery-modal__content {
  transform: translateX(0);
}
.gallery-modal {
  transition: opacity 0.8s ease, visibility 0.8s ease, background-color 0.8s ease, z-index 0s 0.8s;
}
.gallery-modal--open {
  transition: opacity 0.8s ease, visibility 0.8s ease, background-color 0.8s ease, z-index 0s;
}
.gallery-modal__cross-button {
  position: absolute;
  z-index: 1010;
  top: 2%;
  left: 2%;
  width: 50px;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .gallery-modal__cross-button {
    top: 1%;
    left: 1%;
  }
}
@media (max-width: 480px) {
  .gallery-modal__cross-button {
    width: clamp(30px, 15px + 4.17vw, 35px);
    aspect-ratio: 1;
  }
}
.gallery-modal__cross-button::before, .gallery-modal__cross-button::after {
  background-color: var(--color-dark-blue);
  width: 20px;
  height: 4px;
}
.gallery-modal .swiper-button-prev, .gallery-modal .swiper-button-next {
  position: absolute;
  z-index: 20;
  top: auto;
  bottom: 20%;
  transform: translateY(calc(50% - 10px));
  width: 86px;
  height: 86px;
  padding: 20px;
  color: var(--color-white);
  background-color: var(--color-translucent-blue-primary);
  transition: opacity var(--transition-duration) ease, visibility var(--transition-duration) ease, background-color var(--transition-duration) ease;
}
@media (hover: hover) {
  .gallery-modal .swiper-button-prev:hover, .gallery-modal .swiper-button-next:hover {
    background-color: var(--color-dark-blue);
  }
}
@media (hover: none) {
  .gallery-modal .swiper-button-prev:active, .gallery-modal .swiper-button-next:active {
    background-color: var(--color-dark-blue);
  }
}
@media (max-width: 768px) {
  .gallery-modal .swiper-button-prev, .gallery-modal .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.gallery-modal .swiper-button-prev::after, .gallery-modal .swiper-button-next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (max-width: 768px) {
  .gallery-modal .swiper-button-prev::after, .gallery-modal .swiper-button-next::after {
    font-size: 20px;
  }
}
.gallery-modal .swiper-pagination-fraction {
  color: var(--color-white);
  font-weight: 400;
  font-size: clamp(18px, 10px + 2.19vw, 32px);
  bottom: 20%;
  transform: translateY(calc(50% - 10px));
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: opacity var(--transition-duration) ease, visibility var(--transition-duration) ease;
}
.gallery-modal .swiper-button-prev {
  left: 10%;
}
.gallery-modal .swiper-button-next {
  right: 10%;
  left: auto;
}
.gallery-modal__swiper {
  width: auto;
  height: 602px;
  max-height: 100%;
  aspect-ratio: 948/602;
}
@media (max-width: 1000px) {
  .gallery-modal__swiper {
    width: 948px;
    height: auto;
    max-width: 100%;
    aspect-ratio: 770/500;
  }
}
@media (max-width: 768px) {
  .gallery-modal__swiper {
    aspect-ratio: 600/380;
  }
}
.gallery-modal__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden; /* Скрываем все слайды по умолчанию */
}
.gallery-modal__swiper .swiper-slide-active {
  visibility: visible; /* Показываем только активный слайд */
}
.gallery-modal__swiper .swiper-slide img,
.gallery-modal__swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1001px) {
  .gallery-modal__swiper {
    position: relative;
  }
  .gallery-modal__swiper:hover .swiper-button-prev,
  .gallery-modal__swiper:hover .swiper-button-next,
  .gallery-modal__swiper:hover .swiper-pagination {
    opacity: 1;
    visibility: visible;
  }
  .gallery-modal__swiper .swiper-button-prev,
  .gallery-modal__swiper .swiper-button-next,
  .gallery-modal__swiper .swiper-pagination {
    opacity: 0;
    visibility: hidden;
  }
}

html.gallery-modal-open {
  overflow: hidden; /* Блокируем скролл страницы при открытой модалке */
}

.rooms {
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
}
.rooms__list {
  display: grid;
  gap: clamp(10px, -9990px + 1000vw, 20px);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 570px) {
  .rooms__list {
    grid-template-columns: 1fr;
  }
}

.room-details-about {
  border-bottom: var(--underline-blue);
}
.room-details-about__many-text {
  color: var(--color-black);
  font-size: clamp(18px, -2px + 2.59vw, 24px);
  line-height: 2;
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
}
.room-details-in {
  border-bottom: var(--underline-blue);
}
.room-details-in__icon-list {
  font-weight: 700;
  font-size: clamp(18px, 5px + 1.72vw, 22px);
  line-height: 1.5;
  padding-block: clamp(30px, 21px + 2.5vw, 46px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 46px;
  justify-items: center;
  align-items: start;
  justify-content: start;
}
@media (max-width: 768px) {
  .room-details-in__icon-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 570px) {
  .room-details-in__icon-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 430px) {
  .room-details-in__icon-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.room-details-in__icon-item {
  width: -moz-min-content;
  width: min-content;
  min-width: 143px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 5px;
}
@media (min-width: 360px) and (max-width: 618px) {
  .room-details-in__icon-item {
    min-width: 130px;
  }
}
.room-details-in__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  aspect-ratio: 1;
}
@media (min-width: 431px) and (max-width: 618px) {
  .room-details-in__icon-wrapper {
    width: 70px;
  }
  .room-details-in__icon-wrapper svg {
    max-width: 90%;
    max-height: 86%;
  }
}
.room-details-in__icon-description {
  color: var(--color-black);
}

.prices {
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 3px + 3.47vw, 30px);
}
.prices:last-of-type {
  padding-bottom: clamp(10px, -7px + 3.47vw, 20px);
}
.prices__title {
  border-bottom: var(--underline-blue);
  border-top: var(--underline-blue);
  padding-top: clamp(20px, 11px + 1.92vw, 30px);
  padding-bottom: clamp(15px, 6px + 1.92vw, 25px);
  margin-top: clamp(10px, -7px + 3.47vw, 20px);
}
.prices__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding-block: 20px;
}
.prices__button {
  width: 100%;
  position: relative;
  top: -10px;
}

.prices:first-of-type .prices__title {
  border-top: none;
  margin-top: 0;
}

.hours {
  padding-block: clamp(20px, 3px + 3.47vw, 30px);
  color: var(--color-black);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 3px + 3.47vw, 30px);
}
.hours__info {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  -moz-column-gap: clamp(20px, 5px + 4.17vw, 25px);
       column-gap: clamp(20px, 5px + 4.17vw, 25px);
}
.hours__info--date {
  font-size: 30px;
}
@media (max-width: 1000px) {
  .hours__info--date {
    font-size: clamp(20px, 15px + 1.25vw, 28px);
  }
}
.hours__info--warning {
  font-size: clamp(18px, 13px + 1.47vw, 24px);
}
.hours__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.booking-mess {
  height: clamp(364px, -186px + 71.55vw, 530px);
  padding-bottom: clamp(25px, -17px + 8.65vw, 70px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 480px) {
  .booking-mess {
    height: 203px;
  }
}
@media (max-width: 360px) {
  .booking-mess {
    height: 225px;
  }
}
.booking-mess__text {
  text-align: center;
  width: 77%;
  max-width: 730px;
  color: var(--color-dark-blue);
  font-weight: 700;
  font-size: 38px;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .booking-mess__text {
    font-size: clamp(20px, 13px + 1.88vw, 32px);
  }
}
@media (max-width: 768px) {
  .booking-mess__text {
    width: 94%;
    max-width: 600px;
  }
}
@media (max-width: 480px) {
  .booking-mess__text {
    width: 100%;
  }
}

.bookings {
  padding-top: 30px;
  padding-bottom: 10px;
}
@media (max-width: 670px) {
  .bookings {
    padding-bottom: 20px;
  }
}
.bookings__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 10px;
}
@media (max-width: 1000px) {
  .bookings__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 670px) {
  .bookings__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.bookings__total-cost {
  margin-top: 10px;
  border-block: var(--underline-blue);
  padding-block: clamp(20px, 4px + 2.08vw, 25px);
  display: flex;
  justify-content: space-between;
  line-height: 2;
  font-size: clamp(34px, 14px + 2.59vw, 40px);
}
@media (max-width: 670px) {
  .bookings__total-cost {
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    padding-block: 13px;
    font-size: clamp(24px, 15px + 2.58vw, 32px);
  }
}
.bookings__total-cost--black {
  color: var(--color-black);
}
.bookings__button-cont {
  border-bottom: var(--underline-blue);
  padding-bottom: clamp(20px, 11px + 1.92vw, 30px);
}
.bookings__button-cont-body {
  background-color: var(--color-translucent-green);
  padding-block: 63px;
  padding-inline: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bookings__button {
  max-width: 638px;
  width: 100%;
}
.bookings-successful {
  text-align: center;
  border-bottom: var(--underline-blue);
  padding-inline: 32px;
  padding-block: clamp(15px, -5px + 5.47vw, 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.bookings-successful__title {
  font-size: clamp(35px, -0.576rem + 4.42vw, 46px);
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (max-width: 1000px) {
  .bookings-successful__title {
    font-size: clamp(24px, 0.938rem + 2.5vw, 40px);
  }
}
@media (max-width: 1000px) and (max-width: 1000px) {
  .bookings-successful__title {
    max-width: 638px;
    width: 100%;
  }
}
.bookings-successful__title-icon-wrapper {
  margin-left: clamp(20px, 0.898rem + 1.56vw, 30px);
  position: relative;
}
.bookings-successful__title-icon-wrapper svg {
  width: clamp(18px, 9px + 2.5vw, 34px);
  aspect-ratio: 1;
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
}
.bookings-successful__text {
  color: var(--color-black);
  font-weight: 700;
  font-size: clamp(16px, 9px + 1.96vw, 24px);
  line-height: 2.2;
}
@media (max-width: 1000px) and (max-width: 1000px) {
  .bookings-successful__text {
    max-width: 638px;
    width: 100%;
  }
}

.section-secondary:last-of-type .bookings {
  padding-bottom: clamp(20px, 11px + 1.92vw, 30px);
}

.free-services {
  padding-block: clamp(20px, 3px + 3.47vw, 30px);
}
.free-services__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 10px;
}
@media (max-width: 768px) {
  .free-services__list {
    grid-template-columns: 1fr;
  }
}
.free-services__item {
  height: clamp(150px, 50px + 12.99vw, 180px);
  box-shadow: 0px 0px 4px 0px var(--shadow-blue-alt);
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  padding-inline: clamp(40px, -201px + 24.1vw, 100px);
  -moz-column-gap: clamp(20px, -48px + 8.62vw, 40px);
       column-gap: clamp(20px, -48px + 8.62vw, 40px);
  font-size: clamp(23px, 10px + 1.72vw, 28px);
}
@media (max-width: 1000px) {
  .free-services__item {
    height: clamp(110px, -100px + 58.33vw, 180px);
    padding-inline: clamp(20px, -46px + 8.62vw, 40px);
  }
}
@media (max-width: 768px) {
  .free-services__item {
    padding-inline: clamp(20px, 2px + 4.9vw, 40px);
    font-size: clamp(18px, 11px + 1.96vw, 26px);
    -moz-column-gap: clamp(20px, -10px + 8.33vw, 30px);
         column-gap: clamp(20px, -10px + 8.33vw, 30px);
  }
}
@media (min-width: 769px) {
  .free-services__item:nth-child(even) {
    justify-content: center;
  }
}
@media (max-width: 1000px) and (min-width: 769px) {
  .free-services__icon-wrapper {
    width: 68px;
    aspect-ratio: 1;
  }
  .free-services__icon-wrapper svg {
    max-width: 100%;
    max-height: 100%;
  }
}
@media (max-width: 480px) {
  .free-services__icon-wrapper {
    width: 68px;
    aspect-ratio: 1;
  }
  .free-services__icon-wrapper svg {
    max-width: 100%;
    max-height: 100%;
  }
}

.contacts-blue {
  padding-block: 30px;
}
@media (max-width: 480px) {
  .contacts-blue__container {
    padding-inline: 0;
  }
}
.contacts-blue--has-mess {
  font-weight: 700;
}
.contacts-blue__mess {
  background-color: var(--color-translucent-green);
  text-align: center;
  padding-block: clamp(50px, -66px + 15.09vw, 85px);
  padding-inline: clamp(35px, -15px + 6.47vw, 50px);
}
@media (max-width: 768px) {
  .contacts-blue__mess {
    padding-inline: clamp(20px, 7px + 3.68vw, 35px);
  }
}
.contacts-blue__mess-title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: clamp(10px, -8px + 4.9vw, 30px);
       column-gap: clamp(10px, -8px + 4.9vw, 30px);
  font-size: 46px;
}
@media (max-width: 1000px) {
  .contacts-blue__mess-title {
    font-size: clamp(24px, 15px + 2.5vw, 40px);
  }
}
@media (max-width: 1000px) {
  .contacts-blue__mess-title-icon-wrapper {
    width: clamp(20px, 14px + 1.56vw, 30px);
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -4px;
  }
  .contacts-blue__mess-title-icon-wrapper svg {
    max-width: 100%;
    max-height: 100%;
  }
}
.contacts-blue__mess-paragraph {
  margin-top: calc(clamp(50px, -70px + 15.09vw, 85px) - 20px);
  color: black;
  font-size: clamp(18px, -2px + 2.59vw, 24px);
  line-height: 2.2;
}
.contacts-blue__links {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
.contacts-blue__form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
  background-color: var(--color-translucent-green);
  padding-block: 65px;
}
@media (max-width: 1000px) {
  .contacts-blue__form {
    padding-block: clamp(70px, 53px + 2.16vw, 75px);
  }
}
@media (max-width: 768px) {
  .contacts-blue__form {
    padding-inline: clamp(20px, 2px + 4.9vw, 40px);
  }
}
@media (max-width: 480px) {
  .contacts-blue__form {
    padding-block: clamp(50px, -10px + 16.67vw, 70px);
  }
}
.contacts-blue__form-title {
  font-size: 42px;
}
@media (max-width: 1000px) {
  .contacts-blue__form-title {
    font-size: clamp(24px, 13px + 3.19vw, 37px);
  }
}
.contacts-blue__form-elements {
  width: 100%;
  max-width: 638px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 75px;
}
@media (max-width: 480px) {
  .contacts-blue__form-elements {
    font-size: 20px;
    row-gap: clamp(45px, -45px + 25vw, 75px);
  }
}
.contacts-blue__form-controls {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 35px;
}
.contacts-blue__field-control {
  width: 100%;
  font-size: inherit;
  padding-inline: 18px;
}
.contacts-blue__field-control::-moz-placeholder {
  color: var(--color-light-blue);
}
.contacts-blue__field-control::placeholder {
  color: var(--color-light-blue);
}
.contacts-blue__submit-button {
  width: 100%;
  font-size: inherit;
  gap: 10px;
}
@media (hover: hover) {
  .contacts-blue__submit-button:hover {
    border-color: var(--color-white);
  }
}
@media (hover: none) {
  .contacts-blue__submit-button:active {
    border-color: var(--color-white);
  }
}
@media (hover: hover) {
  .contacts-blue__submit-button--light-blue:hover {
    border-color: var(--color-dark-blue);
  }
}
@media (hover: none) {
  .contacts-blue__submit-button--light-blue:active {
    border-color: var(--color-dark-blue);
  }
}

.contacts-white {
  color: var(--color-black);
  padding-block: clamp(60px, -9940px + 1000vw, 70px);
}
@media (max-width: 768px) {
  .contacts-white {
    padding-block: clamp(50px, 35px + 4.17vw, 55px);
  }
}
.contacts-white__address {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(60px, -9940px + 1000vw, 70px);
}
@media (max-width: 768px) {
  .contacts-white__address {
    row-gap: clamp(50px, 35px + 4.17vw, 55px);
  }
}
.contacts-white__phone-and-email {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.contacts-white__link {
  font-family: var(--font-family-alt);
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: clamp(14px, 2px + 3.33vw, 18px);
       column-gap: clamp(14px, 2px + 3.33vw, 18px);
  letter-spacing: 0.07em;
}
.contacts-white__link--phone {
  font-size: clamp(28px, -7772px + 800vw, 36px);
}
@media (max-width: 480px) {
  .contacts-white__link--phone {
    font-size: clamp(22px, 4px + 5vw, 28px);
  }
}
.contacts-white__link--email {
  font-size: clamp(20px, -5980px + 600vw, 26px);
}
@media (max-width: 480px) {
  .contacts-white__link--email {
    font-size: clamp(16px, 4px + 3.33vw, 20px);
  }
}
.contacts-white__link-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(35px, -4965px + 500vw, 40px);
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .contacts-white__link-icon-wrapper {
    width: clamp(30px, 22px + 1.74vw, 35px);
    aspect-ratio: 1;
  }
}
.contacts-white__link-icon-wrapper--in-phone-and-email {
  position: relative;
  top: 1px;
}
.contacts-white__link-icon-wrapper svg {
  max-width: 100%;
  max-height: 100%;
}
.contacts-white__physical-address {
  font-size: clamp(16px, 12px + 1.25vw, 20px);
  line-height: 1.5;
  text-align: center;
}
.contacts-white__messengers {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.contacts-white__messengers-link-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
}
.contacts-white__messengers-link-icon-wrapper svg {
  max-width: 100%;
  max-height: 100%;
}

.gallery {
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
}
.gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 1000px) {
  .gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery__list {
    grid-template-columns: 1fr;
  }
}

.hero-primary {
  position: relative;
  overflow: hidden;
  height: 758px;
  border-bottom: var(--section-underline);
}
@media (max-width: 1000px) {
  .hero-primary {
    height: clamp(410px, 215px + 25.43vw, 469px);
  }
}
@media (max-width: 480px) {
  .hero-primary {
    height: clamp(245px, 50px + 54.17vw, 310px);
  }
}
.hero-primary__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-60%, -65%) scale(1.35);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1585px) {
  .hero-primary__video {
    transform: translate(-67%, -65%) scale(1.5);
  }
}
@media (max-width: 1000px) {
  .hero-primary__video {
    transform: translate(-64%, -65%) scale(1.6);
  }
}
@media (max-width: 480px) {
  .hero-primary__video {
    transform: translate(-60%, -65%) scale(1.7);
  }
}
.hero-primary__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-translucent-blue-secondary);
}
.hero-primary__body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 126px;
  padding-bottom: 176px;
}
@media (max-width: 1000px) {
  .hero-primary__body {
    padding-top: clamp(47px, 24px + 3.02vw, 54px);
    padding-bottom: clamp(15px, 4px + 2.27vw, 20px);
  }
}
@media (max-width: 480px) {
  .hero-primary__body {
    padding-top: clamp(27px, -21px + 13.33vw, 43px);
  }
}
.hero-primary__logo-icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear 0.2s 1 normal forwards;
}
.hero-primary__logo-icon-wrapper svg {
  color: var(--color-white);
  width: 789px;
  height: auto;
}
@media (max-width: 1000px) {
  .hero-primary__logo-icon-wrapper svg {
    width: 57%;
  }
}
@media (max-width: 768px) {
  .hero-primary__logo-icon-wrapper svg {
    width: 63%;
  }
}
@media (max-width: 480px) {
  .hero-primary__logo-icon-wrapper svg {
    width: 68%;
  }
}
.hero-primary__calendar {
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear var(--animation-delay) 1 normal forwards;
}
.hero-primary__calendar .calendar__field-control::-moz-placeholder {
  color: var(--color-white);
}
.hero-primary__calendar .calendar__field-control::placeholder {
  color: var(--color-white);
}

.hero-secondary {
  height: 344px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-translucent-green);
}
@media (max-width: 1000px) {
  .hero-secondary {
    height: clamp(160px, 106px + 11.15vw, 218px);
  }
}
@media (max-width: 480px) {
  .hero-secondary {
    height: clamp(130px, 40px + 25vw, 160px);
  }
}
.hero-secondary--bg-img-districts {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/districts-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/districts-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/districts-page-background-image2x.webp") 2x, url("../images_apartment/bg/districts-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/districts-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/districts-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/districts-page-background-image2x.webp") 2x, url("../images_apartment/bg/districts-page-background-image1x.webp") 1x);
}
.hero-secondary--bg-img-rooms {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/rooms-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/rooms-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/rooms-page-background-image2x.webp") 2x, url("../images_apartment/bg/rooms-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/rooms-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/rooms-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/rooms-page-background-image2x.webp") 2x, url("../images_apartment/bg/rooms-page-background-image1x.webp") 1x);
}
.hero-secondary--bg-img-bookings {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/bookings-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/bookings-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/bookings-page-background-image2x.webp") 2x, url("../images_apartment/bg/bookings-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/bookings-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/bookings-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/bookings-page-background-image2x.webp") 2x, url("../images_apartment/bg/bookings-page-background-image1x.webp") 1x);
}
.hero-secondary--bg-img-about-us {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url("../images_apartment/bg/about-us-page-background-image1x.webp");
  background-image: -webkit-image-set(url("../images_apartment/bg/about-us-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/about-us-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/about-us-page-background-image2x.webp") type("image/webp") 2x, url("../images_apartment/bg/about-us-page-background-image1x.webp") type("image/webp") 1x);
  background-image: image-set( url("../images_apartment/bg/about-us-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/about-us-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/about-us-page-background-image2x.webp") type("image/webp") 2x, url("../images_apartment/bg/about-us-page-background-image1x.webp") type("image/webp") 1x);
}
.hero-secondary--bg-img-prices {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/prices-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/prices-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/prices-page-background-image2x.webp") 2x, url("../images_apartment/bg/prices-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/prices-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/prices-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/prices-page-background-image2x.webp") 2x, url("../images_apartment/bg/prices-page-background-image1x.webp") 1x);
}
.hero-secondary--bg-img-contacts {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/contacts-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/contacts-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/contacts-page-background-image2x.webp") 2x, url("../images_apartment/bg/contacts-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/contacts-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/contacts-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/contacts-page-background-image2x.webp") 2x, url("../images_apartment/bg/contacts-page-background-image1x.webp") 1x);
  background-position: 38% 50%;
}
@media (max-width: 768px) {
  .hero-secondary--bg-img-contacts {
    background-position: 51% 50%;
  }
}
@media (max-width: 768px) {
  .hero-secondary--bg-img-contacts {
    background-position: 34% 50%;
  }
}
.hero-secondary--bg-img-rules {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/rules-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/rules-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/rules-page-background-image2x.webp") 2x, url("../images_apartment/bg/rules-page-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/rules-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/rules-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/rules-page-background-image2x.webp") 2x, url("../images_apartment/bg/rules-page-background-image1x.webp") 1x);
  background-position: 45% 50%;
  height: 660px;
}
@media (max-width: 1000px) {
  .hero-secondary--bg-img-rules {
    height: clamp(240px, 147px + 23.33vw, 380px);
  }
}
.hero-secondary--bg-img-rules .hero-secondary__title {
  max-width: 75%;
}
.hero-secondary__title {
  font-family: var(--font-family-alt);
  color: var(--color-white);
  text-align: center;
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear 0.2s 1 normal forwards;
  font-size: 127px;
  text-shadow: 0px 0px 2.8px #043C2AA6;

}
.hero-secondary__title--long {
  font-size: clamp(5.563rem, -0.396rem + 9.52vw, 7.938rem);
}
@media (max-width: 1000px) {
  .hero-secondary__title {
    font-size: clamp(70px, 1.478rem + 6.03vw, 74px);
  }
}
@media (max-width: 768px) {
  .hero-secondary__title {
    font-size: clamp(32px, -2px + 9.31vw, 70px);
  }
}

.hero-tertiary {
  position: relative;
  overflow: hidden;
  height: 660px;
}
@media (max-width: 1000px) {
  .hero-tertiary {
    height: clamp(240px, 161px + 21.88vw, 380px);
  }
}
.hero-tertiary__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -64%) scale(1.3);
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-tertiary__bg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-translucent-blue-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-tertiary__body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 130px;
}
@media (max-width: 1000px) {
  .hero-tertiary__body {
    row-gap: clamp(40px, -46px + 11.21vw, 66px);
  }
}
@media (max-width: 480px) {
  .hero-tertiary__body {
    align-self: flex-end;
    row-gap: 55px;
    padding-bottom: 20px;
  }
}
.hero-tertiary__title {
  color: var(--color-white);
  text-align: center;
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear 0.2s 1 normal forwards;
  font-size: 127px;
}
@media (max-width: 1000px) {
  .hero-tertiary__title {
    font-size: clamp(70px, 1.478rem + 6.03vw, 74px);
  }
}
@media (max-width: 768px) {
  .hero-tertiary__title {
    font-size: clamp(32px, -2px + 9.31vw, 70px);
  }
}
.hero-tertiary__button {
  width: 100%;
  max-width: 1129px;
  font-size: clamp(20px, -3980rem + 400vw, 24px);
}
@media (max-width: 480px) {
  .hero-tertiary__button {
    font-size: 24px;
  }
}

.section-primary {
  height: 858px;
  border-bottom: var(--section-underline);
  background-color: var(--color-light-blue);
}
@media (max-width: 1000px) {
  .section-primary {
    height: clamp(448px, 210px + 31.03vw, 520px);
  }
}
@media (max-width: 768px) {
  .section-primary {
    height: clamp(336px, 150px + 38.89vw, 448px);
  }
}
@media (max-width: 480px) {
  .section-primary {
    height: clamp(280px, 112px + 46.67vw, 336px);
  }
}
.section-primary--bg-img-main {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/main-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/main-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/main-page-background-image2x.webp") 2x, url("../images_apartment/bg/main-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/main-page-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/main-page-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/main-page-background-image2x.webp") 2x, url("../images_apartment/bg/main-background-image1x.webp") 1x);
}
.section-primary--bg-img-rooms {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/homepage-rooms-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-rooms-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-rooms-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-rooms-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/homepage-rooms-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-rooms-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-rooms-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-rooms-background-image1x.webp") 1x);
}
.section-primary--bg-img-price {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/homepage-price-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-price-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-price-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-price-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/homepage-price-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-price-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-price-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-price-background-image1x.webp") 1x);
}
@media (max-width: 1000px) {
  .section-primary--bg-img-price {
    background-position-x: 38%;
  }
}
.section-primary--bg-img-about {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/homepage-about-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-about-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-about-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-about-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/homepage-about-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-about-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-about-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-about-background-image1x.webp") 1x);
}
.section-primary--bg-img-contacts {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images_apartment/bg/homepage-contacts-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-contacts-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-contacts-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-contacts-background-image1x.webp") 1x);
  background-image: image-set(url("../images_apartment/bg/homepage-contacts-background-image2x.avif") type("image/avif") 2x, url("../images_apartment/bg/homepage-contacts-background-image1x.avif") type("image/avif") 1x, url("../images_apartment/bg/homepage-contacts-background-image2x.webp") 2x, url("../images_apartment/bg/homepage-contacts-background-image1x.webp") 1x);
  background-position-x: 33%;
}
.section-primary--bg-img-rooms-hotel {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images/bg/homepage-rooms-background-image2x.avif") type("image/avif") 2x, url("../images/bg/homepage-rooms-background-image1x.avif") type("image/avif") 1x, url("../images/bg/homepage-rooms-background-image2x.webp") 2x, url("../images/bg/homepage-rooms-background-image1x.webp") 1x);
  background-image: image-set(url("../images/bg/homepage-rooms-background-image2x.avif") type("image/avif") 2x, url("../images/bg/homepage-rooms-background-image1x.avif") type("image/avif") 1x, url("../images/bg/homepage-rooms-background-image2x.webp") 2x, url("../images/bg/homepage-rooms-background-image1x.webp") 1x);
}
@media (max-width: 1000px) {
  .section-primary--bg-img-contacts {
    background-position-x: 55%;
  }
}
@media (max-width: 768px) {
  .section-primary--bg-img-contacts {
    background-position-x: 32%;
  }
}
@media (max-width: 480px) {
  .section-primary--bg-img-contacts {
    background-position-x: 24%;
  }
}
.section-primary__body {
  height: 100%;
  padding-block: 20px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 104px;
}
@media (max-width: 1000px) {
  .section-primary__body {
    row-gap: clamp(70px, 37px + 4.31vw, 80px);
  }
}
@media (max-width: 480px) {
  .section-primary__body {
    row-gap: clamp(86px, 26px + 16.67vw, 106px);
    justify-content: flex-end;
  }
}
.section-primary__title {
  font-family: var(--font-family-alt);
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear 0.2s 1 normal forwards;
}
.section-primary__title--white {
  color: white;
  text-shadow: 0px 0px 2.8px #043C2AA6;
}
.section-primary__title--column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-primary__title--text-l {
  font-size: clamp(2rem, -1.0865rem + 13.7177vw, 10.625rem);
}
.section-primary__title--text-s {
  font-size: clamp(1.4rem, -0.7607rem + 9.6032vw, 7.438rem);
}
.section-primary__link {
  opacity: 0;
  animation: opacity0-1 var(--transition-duration) linear var(--animation-delay) 1 normal forwards;
  width: 383px;
}
@media (max-width: 1000px) {
  .section-primary__link {
    width: clamp(300px, 168px + 17.24vw, 340px);
  }
}
@media (max-width: 480px) {
  .section-primary__link {
    width: 100%;
  }
}
.section-primary__calendar {
  width: 808px;
}
@media (max-width: 1000px) {
  .section-primary__calendar {
    width: 100%;
  }
}

.section-gallery {
  --bold-border-size: 14px;
  --bold-border-white: var(--bold-border-size) solid var(--color-white);
  height: 1103px;
  border-bottom: var(--bold-border-white);
  border-top: calc(var(--bold-border-size) - 5px) solid var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1000px) {
  .section-gallery {
    --bold-border-size: 7px;
    height: clamp(557px, 286px + 37.93vw, 665px);
  }
}
@media (min-width: 481px) {
  .section-gallery {
    border-inline: var(--bold-border-white);
  }
}
@media (max-width: 480px) {
  .section-gallery {
    --bold-border-size: 5px;
    border-top: none;
    height: clamp(523px, 283px + 66.67vw, 603px);
  }
}
.section-gallery__body {
  height: auto;
  width: 100%;
}
@media (max-width: 480px) {
  .section-gallery__body {
    margin-top: auto;
  }
}
.section-gallery__images-block {
  height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1000px) {
  .section-gallery__images-block {
    height: clamp(136px, 113px + 6.41vw, 177px);
  }
}
@media (max-width: 480px) {
  .section-gallery__images-block {
    grid-template-columns: 1fr 1fr;
  }
}
.section-gallery__images-block--top {
  border-bottom: var(--bold-border-white);
}
.section-gallery__images-block--bottom {
  border-top: var(--bold-border-white);
}
.section-gallery__images-wrapper {
  overflow: hidden;
}
@media (min-width: 481px) {
  .section-gallery__images-wrapper:nth-child(2) {
    border-inline: var(--bold-border-white);
  }
}
@media (max-width: 480px) {
  .section-gallery__images-wrapper:last-child:not(.section-gallery__images-wrapper--right-to-left) {
    border-left: var(--bold-border-white);
  }
  .section-gallery__images-wrapper--left-to-right {
    grid-area: 1/2/2/3;
    border-left: var(--bold-border-white);
  }
  .section-gallery__images-wrapper--right-to-left {
    grid-area: 1/1/2/2;
    border-left: none;
  }
}
.section-gallery__images-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-secondary {
  color: var(--color-dark-blue);
}
.section-secondary__header {
  border-bottom: var(--underline-blue);
  padding-top: clamp(20px, 11px + 1.92vw, 30px);
  padding-bottom: clamp(15px, 6px + 1.92vw, 25px);
}
.section-secondary__header--whithout-underline {
  border-bottom: none;
}
.section-secondary__header--whith-border-top {
  border-top: var(--underline-blue);
}
.section-secondary__title--size-as-subtitle {
  font-size: 40px;
}
@media (max-width: 1000px) {
  .section-secondary__title--size-as-subtitle {
    font-size: clamp(24px, 14px + 2.08vw, 30px);
  }
}
.section-secondary__title--whith-icon {
  display: inline-flex;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .section-secondary__title--whith-icon {
    font-size: clamp(19px, 4px + 4.17vw, 24px);
  }
}
.section-secondary__title--whith-icon:has(.section-secondary__title-icon-wrapper--not-touch) {
  align-items: center;
}
@media (max-width: 480px) {
  .section-secondary__title--whith-icon:has(.section-secondary__title-icon-wrapper--not-touch) {
    font-size: 24px;
  }
}
.section-secondary__title-icon-wrapper {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.section-secondary__title-icon-wrapper--not-touch {
  width: clamp(36px, 26px + 2.08vw, 42px);
  aspect-ratio: 1;
  position: relative;
  top: -2px;
}
.section-secondary__title-icon-wrapper--palm {
  width: clamp(24px, 8px + 4.38vw, 52px);
  aspect-ratio: 1;
}
.section-secondary__title-icon-wrapper svg {
  max-width: 100%;
  max-height: 100%;
}
.section-secondary__subtitle {
  padding-top: clamp(20px, 11px + 1.92vw, 30px);
  font-size: 40px;
}
@media (max-width: 1000px) {
  .section-secondary__subtitle {
    font-size: clamp(24px, 14px + 2.08vw, 30px);
  }
}
.section-secondary__calendar {
  border-bottom: var(--underline-blue);
  padding-block: 36px;
}
@media (max-width: 1000px) {
  .section-secondary__calendar {
    padding-block: clamp(20px, 11px + 1.92vw, 30px);
  }
}
.section-secondary__calendar--without-border-bottom {
  border-bottom: none;
}
.section-secondary__calendar--for-selected-room {
  padding-block: clamp(20px, 11px + 1.92vw, 30px);
}
.section-secondary__calendar .calendar__field-control::-moz-placeholder {
  color: var(--color-dark-blue);
}
.section-secondary__calendar .calendar__field-control::placeholder {
  color: var(--color-dark-blue);
}
.section-secondary__link {
  font-weight: 700;
  font-size: clamp(18px, 2.8vw, 28px);
}
.section-secondary__link--sort {
  position: relative;
  display: inline-flex;
  padding-bottom: 10px;
  padding-inline: 2px;
  -moz-column-gap: 5px;
       column-gap: 5px;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
}
.section-secondary__link--sort::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 100%;
  opacity: 0;
  height: 1px;
  background-color: var(--color-dark-blue);
  transition-duration: inherit;
}
@media (hover: hover) {
  .section-secondary__link--sort:hover::after {
    opacity: 1;
  }
}
@media (hover: none) {
  .section-secondary__link--sort:active::after {
    opacity: 1;
  }
}
.section-secondary__link--sort span {
  display: flex;
  flex-shrink: 1;
}
.section-secondary__link--active::after {
  opacity: 1;
}
.section-secondary__link-list {
  gap: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
  flex-wrap: wrap;
}
.section-secondary__link-item {
  width: -moz-max-content;
  width: max-content;
}
.section-secondary__link--go-to-icon-wrapper {
  margin-left: clamp(15px, -15px + 8.33vw, 25px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-secondary__link--go-to-icon-wrapper svg {
  width: auto;
  height: clamp(12px, 6px + 1.72vw, 23px);
}

.section-secondary:has(.many-text) + .section-secondary .section-secondary__header {
  margin-top: clamp(25px, 0.528rem + 2.16vw, 30px);
  border-top: var(--underline-blue);
}

.main-map {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1217 / 540;
}

.footer {
  color: var(--color-white);
  background-color: var(--color-light-blue);
}
.footer__underline {
  border-bottom: var(--border-white);
}
.footer__above-line {
  display: flex;
  justify-content: center;
  padding-block: 50px;
  -moz-column-gap: clamp(15px, -162px + 16.41vw, 58px);
       column-gap: clamp(15px, -162px + 16.41vw, 58px);
}
@media (max-width: 700px) {
  .footer__above-line {
    flex-direction: column;
    row-gap: clamp(45px, 23px + 4.55vw, 55px);
  }
}
.footer__above-line-links {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.footer__logo-icon-wrapper svg {
  width: 389px;
  height: 126px;
}
@media (max-width: 1110px) {
  .footer__logo-icon-wrapper svg {
    width: clamp(305px, -1165px + 140vw, 305px);
    height: auto;
  }
}
@media (max-width: 1000px) {
  .footer__logo-icon-wrapper svg {
    width: 321px;
  }
}
@media (max-width: 700px) {
  .footer__logo-icon-wrapper svg {
    height: clamp(72px, 53px + 5.29vw, 90px);
    width: auto;
  }
}
.footer__contacts {
  font-weight: 500;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
  margin-top: 9px;
  flex-grow: 1;
  row-gap: 7px;
}
@media (max-width: 1000px) {
  .footer__contacts {
    font-size: clamp(16px, 9px + 0.86vw, 18px);
  }
}
@media (max-width: 480px) {
  .footer__contacts {
    font-size: clamp(16px, 10px + 1.67vw, 18px);
  }
}
.footer__contacts-phone-string {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.07em;
  justify-content: flex-start;
}
.footer__contacts-link--number {
  margin-left: 7px;
}
.footer__contacts-link, .footer__contacts-string {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  gap: 4px;
}
.footer__contacts-link-icon-wrapper, .footer__contacts-string-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
}
.footer__places {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 479px) {
  .footer__contacts-link--places-svg-wrapper {
    display: none;
  }
}

.footer__contacts-string {
  font-size: 14px;
  letter-spacing: 0.04em;
}
.footer__map {
  min-width: 48%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
  gap: 17px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 1000px) {
  .footer__map {
    max-width: 54%;
    font-size: 16px;
    font-weight: 700;
  }
}
@media (max-width: 700px) {
  .footer__map {
    height: auto;
    max-width: 100%;
  }
}
.footer__map iframe {
  width: 100%;
  height: clamp(209px, -63791px + 6400vw, 273px);
  border-radius: 7px;
}
.footer__address-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.footer__address-link-icon-wrapper {
  align-self: flex-start;
  padding-top: 2px;
}
.footer__socials {
  padding-block: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1000px) {
  .footer__socials {
    padding-block: clamp(20px, -13px + 4.31vw, 30px);
  }
}
.footer__socials-link-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1;
}

.page-overlay {
  padding-block: 30px;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  border: none;
  color: var(--color-white);
  background-color: var(--color-light-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-overlay--translucent-blue {
  background-color: var(--color-translucent-green);
  color: var(--color-dark-blue);
}
.page-overlay__body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}
.page-overlay__title {
  text-align: center;
  font-size: 47px;
}
@media (max-width: 768px) {
  .page-overlay__title {
    font-size: clamp(27px, -5px + 8.7vw, 47px);
  }
}
.page-overlay__description {
  text-align: center;
  font-weight: 700;
  line-height: 2;
  max-width: 528px;
}
.page-overlay__form-controls {
  margin-top: 20px;
  width: 100%;
  max-width: 528px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
}
@media (max-width: 480px) {
  .page-overlay__form-controls {
    font-size: 20px;
  }
}
.page-overlay__field-control {
  width: 100%;
  font-size: inherit;
  padding-inline: 18px;
}
.page-overlay__field-control::-moz-placeholder {
  color: var(--color-translucent-green);
}
.page-overlay__field-control::placeholder {
  color: var(--color-translucent-green);
}
.page-overlay__cross-button {
  position: absolute;
  top: 0;
  right: 0;
}
.page-overlay--translucent-blue .page-overlay__cross-button::before, .page-overlay--translucent-blue .page-overlay__cross-button::after {
  background-color: var(--color-dark-blue);
}
.page-overlay__submit-button {
  width: 100%;
  font-size: inherit;
  gap: 10px;
}
@media (hover: hover) {
  .page-overlay__submit-button:hover {
    border-color: var(--color-white);
  }
}
@media (hover: none) {
  .page-overlay__submit-button:active {
    border-color: var(--color-white);
  }
}
@media (hover: hover) {
  .page-overlay__submit-button--light-blue:hover {
    border-color: var(--color-dark-blue);
  }
}
@media (hover: none) {
  .page-overlay__submit-button--light-blue:active {
    border-color: var(--color-dark-blue);
  }
}
.page-overlay__submit-button-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-overlay__submit-button-icon-wrapper svg {
  width: clamp(16px, 1px + 4.17vw, 25px);
  aspect-ratio: 1;
}

/* ==========================================================================
   1. ПЛАВАЮЩАЯ КНОПКА ЧАТА (ПИРАТ)
   ========================================================================== */
.chat-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: transparent;
    border: none;
    z-index: 999;
    display: flex;
    align-items: center;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: pulseGhost 3s infinite ease-in-out;
}
.chat-button:hover {
    opacity: 1;
    animation: none;
    transform: scale(1.05);
}
.chat-button:hover .chat-button__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(100%) translateY(-50%) scale(1);
}
@keyframes pulseGhost {
    0% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
    100% { opacity: 0.5; transform: scale(1); }
}
.chat-button__avatar-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(72, 123, 199, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #CDD8EA;
}
.chat-button__avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.chat-button__badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background-color: #077450;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid white;
}
.chat-button__badge svg {
    width: 18px;
    height: 18px;
}
.chat-button__tooltip {
    position: absolute;
    top: 50%;
    right: -15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%) translateY(-50%) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    background-color: #fff;
    color: #1A365D;
    padding: 12px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid #CDD8EA;
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
}
.chat-button__tooltip::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: -10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 15px 15px;
    border-color: transparent transparent #fff transparent;
}

/* ==========================================================================
   2. ОКНО ЧАТА (ОКНО-ОТЛАДКА И АДАПТИВ)
   ========================================================================== */
.chat-overlay {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    background-color: #fff;
    border: none;
    padding: 0;
    margin: 0;
    display: none;
    flex-direction: column;
    border-radius: 0;
}
.chat-overlay[open] {
    display: flex;
}
@media (min-width: 1000px) {
    .chat-overlay {
        inset: 0;
        margin: auto;
        width: 450px; /* Сузил под формат аккуратного виджета, как на макете */
        height: 700px;
        max-width: 85vw !important;
        max-height: 85vh !important;
        box-shadow: 0px 10px 40px rgba(72, 123, 199, 0.5);
    }
}

/* --- ШАПКА ЧАТА --- */
.chat-overlay__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #96D8C3;
    border-bottom: 1px solid #b8c7df;
}
.chat-overlay__header-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.chat-overlay__header-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.chat-overlay__header-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.chat-overlay__header-name {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1A365D;
}
.chat-overlay__header-role {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}
.chat-overlay__close-form {
    display: flex;
    align-items: center;
}
.chat-overlay__close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.chat-overlay__close-btn:hover {
    transform: scale(1.1);
}

/* --- ТЕЛО ЧАТА --- */
.chat-overlay__body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #FAFAFA;
}
.chat-overlay__message {
    max-width: 85%;
    padding: 12px 18px;
    border-radius: 18px;
    font-size: 1rem;
    line-height: 140%;
    word-wrap: break-word;
}
.chat-overlay__message--ai {
    align-self: flex-start;
    background-color: #FFFFFF;
    color: #1A365D;
    border: 1px solid #96D8C3;
    border-bottom-left-radius: 4px;
    white-space: pre-wrap;
}
.chat-overlay__message--user {
    align-self: flex-end;
    background-color: #96D8C3;
    color: #FFFFFF;
    border-bottom-right-radius: 4px;
}

/* --- ПОДВАЛ ЧАТА --- */
.chat-overlay__footer {
    display: flex;
    padding: 15px 20px;
    gap: 15px;
    background-color: #FFFFFF;
    border-top: 1px solid #E2EAF5;
    align-items: center;
}
.chat-overlay__input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #CDD8EA;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}
.chat-overlay__input:focus {
    border-color: #487BC7;
}
.chat-overlay__send-btn {
    width: 48px;
    height: 48px;

    background-color: #077450;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.2s, transform 0.2s;
}
.chat-overlay__send-btn:hover {
    background: linear-gradient(90deg, #F9C924 0%, #E4AF18 32%, #FFF98C 68%, #FFD440 100%);
;
    transform: scale(1.05);
}
.chat-overlay__send-btn svg {
    width: 24px;
    height: 24px;
}


.pre-footer-banner {
  display: block;
  width: 100%;
  text-decoration: none; /* Убираем дефолтное подчеркивание ссылки */

  /* Базовый фон (салатовый) */
  background-color: #96D8C3;

  /* Настройка плавного перехода */
  transition-property: background, background-color, color;
  transition-duration: 0.8s; /* Твоя задержка в полсекунды */
  transition-timing-function: ease-in-out;
}

.pre-footer-banner__container {
  max-width: 1200px; /* Задай ширину под общие контейнеры твоего сайта */
  margin-bottom: 5px;
  min-height: 111px; /* Высота как на макете Фигмы */
  padding-inline: 20px;

  /* Выравниваем текст и лого по центру в одну линию */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px; /* Отступ между текстом и логотипом */
}

.pre-footer-banner__text {
  /* Сюда вставь цвета и размеры текста из кнопок */
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.5s ease-in-out;
}

.pre-footer-banner__logo {
  display: flex;
  align-items: center;
}

/* Если понадобится управлять цветом SVG-логотипа через CSS */
.pre-footer-banner__logo svg {
  display: block;
  max-height: 51px; /* Ограничение по высоте, чтоб лого не разнесло */
  width: auto;
}

/* ==========================================================================
   ХОВЕР-ЭФФЕКТ (Плавный переход за 0.5с)
   ========================================================================== */
.pre-footer-banner:hover {
  /* Вставь сюда свой золотой градиент */
  background: var(--gold-grad, #ffd700);
}

/* 2. Перекрашиваем текст в черный при ховере */
.pre-footer-banner:hover .pre-footer-banner__text {
  color: #000000;
}

/* 3. Перекрашиваем SVG-иконку в черный при ховере с той же задержкой */
.pre-footer-banner:hover .pre-footer-banner__logo svg path {
  fill: #000000;
}

/* ==========================================================================
   ДОБАВЛЯЕМ ПЛАВНОСТЬ ДЛЯ ИКОНКИ (Чтобы возвращалась в белый тоже плавно)
   ========================================================================== */
.pre-footer-banner__logo svg path {
  /* Изначально иконка белая (если не сделал currentColor в HTML) */
  fill: white;

  /* Задаем точно такую же задержку в полсекунды, как и для текста */
  transition: fill 0.5s ease-in-out;
}