@charset "UTF-8";
/* <<<<<<>>>>>> */
/* MAIN GENERAL */
/* <<<<<<>>>>>> */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*         Базовое разрешение         */
/*                                    */
/*             Landscape              */
/*        widtch 992px - 1919px       */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*                                    */
/* ===== */
/* Fonts */
/* ===== */
@font-face {
  font-family: "aMavickFont";
  src: url("../fonts/a-mavick-font.ttf");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont.ttf");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* ====== */
/* Colors */
/* ====== */
/* Text Colors */
.color-white {
  color: #ffffff;
}

.color-grey-200 {
  color: #c8c8c8;
}

.color-orange-800 {
  color: #ED5829;
}

/* Backgrounds */
.background-dark-blue {
  background: rgba(42, 33, 99, 0.75);
}

:root {
  /* Text Colors */
  --color-white: #ffffff;
  --color-grey-200: #c8c8c8;
  --color-orange-800: #ED5829;
  /* Background Colors */
  --background-dark-blue: rgb(42, 33, 99, 0.75);
}

/* ======= */
/* General */
/* ======= */
*, *:before, *:after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

body {
  font-family: inter;
  font-size: 0.96vw;
  line-height: 120%;
  letter-spacing: 0;
  color: #6a6a6a;
  /* Когда моб. меню активно*/
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 5;
}
body.lock::after {
  opacity: 1;
  visibility: visible;
}

html, body {
  overflow-x: hidden; /* Скрывает горизонтальную полосу */
  /* Если нужно, чтобы вертикальная тоже не влияла */
  /* overflow: hidden; */
  /* Смещение для ВСЕХ якорей на странице */
  scroll-padding-top: 150px; /* Высота вашей шапки + запас */
  scroll-behavior: smooth;
}
@media (min-width: 1920px) {
  html, body {
    scroll-padding-top: 5.5vw;
  }
}
@media (max-width: 991px) {
  html, body {
    scroll-padding-top: 100px;
  }
}

/* делаем основной контент недоступным,
когда открыто моб. меню */
body.lock {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.uppercase {
  text-transform: uppercase;
}

.no-wrap {
  white-space: nowrap;
}

/* <<<>>> */
/* CONTAINER */
/* <<<>>> */
/*        */
/* ++++++++++++++++++++++++++++++++++ */
/*         Базовое разрешение         */
/*                                    */
/*             Landscape              */
/*        widtch 992px - 1919px       */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*                                    */
.container {
  width: 100vw;
  min-width: 320px;
  margin: 0 auto;
  padding: 0 5.05vw;
  height: 100%;
}

/* <<<>>> */
/* HEADER */
/* <<<>>> */
/*        */
/* ++++++++++++++++++++++++++++++++++ */
/*         Базовое разрешение         */
/*                                    */
/*             Landscape              */
/*        widtch 992px - 1919px       */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*                                    */
.header {
  position: fixed;
  width: 100vw;
  min-width: 320px;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 50;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: normal;
  color: #ffffff;
  transition: background-color 0.3s ease, -webkit-backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, -webkit-backdrop-filter 0.3s ease;
}
.header.before_scroll {
  background: rgba(42, 33, 99, 0.75);
}
.header.after_scroll {
  background: rgb(42, 33, 99);
}

.header__items {
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* HEADER LOGO */
.header__logo {
  position: relative;
}

.header__logo-link-block {
  display: flex;
  padding: 10px 0;
}

.header__logo-img {
  width: 172px;
}

.header__logo-address {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: normal;
}

/* HEADER MENU */
.header__nav {
  z-index: 10;
}

.header-menu {
  display: flex;
  padding: 25px;
  flex-direction: row;
  justify-content: center;
  gap: 25px;
  align-items: center;
  list-style: none;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: normal;
}

.header-menu__item {
  display: none;
}

.header-menu__title {
  font-family: "aMavickFont";
  font-weight: normal;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: normal;
  color: #ED5829;
}

.header-menu__text-s {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: normal;
  color: #c8c8c8;
}

.header-menu__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: normal;
  text-transform: uppercase;
  color: #c8c8c8;
}

/*
.header-menu__link-block {

} */
.header-menu__image {
  width: 25px;
  height: 25px;
}

.header-nenu__hr {
  display: block;
  margin: 15px 0;
  width: 100%;
  background-color: rgb(255, 255, 255); /* Цвет линии */
  color: rgb(255, 255, 255); /* Цвет линии для IE6-7 */
  height: 1px;
}

.header-menu__text-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: normal;
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.header-menu__text-link:hover {
  color: #ED5829;
}

.header-menu__text-link:active {
  color: #ED5829;
}

/* HEADER CONTACTS */
.header-contacts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.header-contacts__text-link {
  font-family: "aMavickFont";
  font-weight: normal;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: normal;
  text-decoration: none;
  color: #ED5829;
  transition: color 0.3s;
}

.header-contacts__text-link:hover {
  color: #ffffff;
}

.header-contacts__text-link:active {
  color: #ffffff;
}

.header-contacts__link-block {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.header-contacts__link-block img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.3s;
}

.header-contacts__link-block .header-contacts__image {
  z-index: 2;
  opacity: 1;
}

.header-contacts__link-block .header-contacts__image-hover {
  z-index: 1;
  opacity: 1;
}

.header-contacts__link-block:hover .header-contacts__image {
  opacity: 0;
}

/* HEADER BURGER */
.header__burger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  z-index: 3;
  /* order: 1; */
  cursor: pointer;
}

.header__burger span {
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  top: 9px;
  transition: all 0.3s ease 0s;
}

.header__burger:before,
.header__burger:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  transition: all 0.3s ease 0s;
}

.header__burger:before {
  top: 0;
}

.header__burger:after {
  bottom: 0;
}

.header__burger.active:before {
  transform: rotate(45deg);
  top: 9px;
}

.header__burger.active:after {
  transform: rotate(-45deg);
  bottom: 9px;
}

.header__burger.active span {
  transform: scale(0);
}

/* 991 px и меньше */
@media screen and (max-width: 991px) {
  /* HEADER */
  .header {
    height: 52px;
    background: rgb(42, 33, 99);
  }
  /* HEADER LOGO */
  .header__logo-img {
    width: 132px;
  }
  .header__logo-link-block {
    padding: 5px 0;
  }
  .header__logo-address {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
  }
  /* HEADER NAV */
  .header__nav {
    position: fixed;
    top: 75px;
    right: -250%;
    flex-direction: column;
    justify-content: flex-start;
    max-height: calc(100vh - 90px);
    /*для прокрутки меню, когда оно не помещается в экран*/
    overflow: auto;
    background-color: #2A2162;
    padding: 8px;
    border-radius: 15px;
    transition: all 0.3s ease 0s;
  }
  .header__nav.active {
    right: 25px;
  }
  /* HEADER MENU */
  .header-menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
  }
  .header-menu__item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
  }
  /* HEADER BURGER */
  .header__burger {
    display: block;
  }
}
/* 479 px и меньше */
@media screen and (max-width: 479px) {
  /* HEADER */
  /* HEADER CONTACTS */
  .header-contacts__text-link {
    display: none;
  }
}
/* 1920 px и больше */
@media screen and (min-width: 1920px) {
  /* HEADER */
  .header {
    height: 5.21vw;
    font-size: 0.83vw;
  }
  /* HEADER LOGO */
  .header__logo-link-block {
    padding: 0.52vw 0;
  }
  .header__logo-img {
    width: 8.96vw;
  }
  .header__logo-address {
    font-size: 0.83vw;
  }
  /* HEADER MENU */
  .header-menu {
    padding: 1.3vw;
    gap: 1.3vw;
    font-size: 0.83vw;
  }
  .header-menu__text-link {
    font-size: 0.83vw;
  }
  /* HEADER CONTACTS */
  .header-contacts {
    gap: 0.52vw;
  }
  .header-contacts__text-link {
    font-size: 1.3vw;
  }
  .header-contacts__link-block {
    width: 1.25vw;
    height: 1.25vw;
  }
}
/* <<<<<<>>>>>> */
/* HERO SECTION */
/* <<<<<<>>>>>> */
/*              */
/* ++++++++++++++++++++++++++++++++++ */
/*         Базовое разрешение         */
/*                                    */
/*                                    */
/*        widtch 992px - 1919px       */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*                                    */
.hero {
  width: 100vw;
  background-size: cover;
  background-position: 50% 50%;
  background-image: linear-gradient(to bottom, rgba(33, 33, 33, 0) 80%, rgb(33, 33, 33) 95%), linear-gradient(rgba(0, 0, 0, 0.4)), url(../images/hero-section/fon-bobroviy-log.jpeg);
}

.hero__items {
  min-height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.hero__headling {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 3vw;
}

.hero__title {
  font-family: "aMavickFont";
  color: #ffffff;
  font-weight: 400;
  font-size: 2.52vw;
  line-height: 100%;
  letter-spacing: normal;
  text-shadow: 0.24vw 0.24vw 0.24vw rgba(0, 0, 0, 0.5);
}

.hero__subtitle {
  display: flex;
  padding-top: 1.92vw;
  font-family: "aMavickFont";
  color: #ffffff;
  font-weight: 400;
  font-size: 1.92vw;
  line-height: 100%;
  letter-spacing: normal;
  -webkit-text-stroke: 0.06vw #000000;
}

.hero__headling-img {
  height: 1.98vw;
}

/*.hero__services {
  width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  place-items: center;
  background-color: aqua;

}*/
.hero__services {
  width: 66.07vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hero__service {
  width: 13.93vw;
  height: 13.93vw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.12vw);
          backdrop-filter: blur(0.12vw);
  padding-top: 0.84vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0.84vw;
}

.hero_service-img {
  width: 6.61vw;
  height: 6.61vw;
}

.hero_service-text {
  font-family: "aMavickFont";
  color: #ED5829;
  font-weight: 400;
  font-size: 1.44vw;
  line-height: 120%;
  letter-spacing: normal;
  text-shadow: 0.12vw 0.12vw 0.12vw rgba(0, 0, 0, 0.5);
}

.hero__offer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 4.2vw;
}

.hero__offer-title {
  font-family: "aMavickFont";
  color: #ffffff;
  font-weight: 400;
  font-size: 1.44vw;
  line-height: 120%;
  letter-spacing: normal;
  -webkit-text-stroke: 0.06vw #000000;
}

.hero__offer-text {
  font-family: "aMavickFont";
  color: #ffffff;
  font-weight: 400;
  font-size: 1.92vw;
  line-height: 120%;
  letter-spacing: normal;
  padding: 1.32vw 0;
  /*-webkit-text-stroke: 1px #000000;*/
  text-shadow: 0.24vw 0.24vw 0.24vw rgba(0, 0, 0, 0.5);
}

.hero__offer-image {
  width: 4.26vw;
}

/* 991 и меньше */
@media screen and (max-width: 991px) {
  .hero__items {
    padding-top: 52px;
  }
}
/* 1920 и больше */
@media screen and (min-width: 1920px) {
  .hero__items {
    padding-top: 6.01vw;
  }
}
/* Portrait */
@media screen and (orientation: portrait) {
  .hero__title {
    font-size: 7.5vw;
    line-height: 120%;
  }
  .hero__subtitle {
    flex-wrap: wrap;
    justify-content: center;
    font-size: 6.88vw;
    line-height: 120%;
  }
  .hero__headling-img {
    height: 6.88vw;
  }
  .hero__services {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .hero__service-top {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .hero__service {
    width: 37.5vw;
    height: 37.5vw;
    padding-top: 3.13vw;
  }
  .hero_service-img {
    width: 15.63vw;
    height: 15.63vw;
  }
  .hero_service-text {
    font-size: 4.38vw;
  }
  .hero__offer-title {
    font-size: 5vw;
  }
  .hero__offer-text {
    font-size: 5vw;
  }
  .hero__offer-image {
    width: 12.5vw;
  }
}
/* <<<<<<<<>>>>>>>> */
/* TWO-MOON SECTION */
/* <<<<<<<<>>>>>>>> */
/*                  */
/* ++++++++++++++++++++++++++++++++++ */
/*         Базовое разрешение         */
/*                                    */
/*             Landscape              */
/*        widtch 992px - 1919px       */
/*                                    */
/* ++++++++++++++++++++++++++++++++++ */
/*                                    */
.two-moon {
  width: 100vw;
  background-color: #212121;
}

/* GRID для секции*/
.two-moon-grid {
  width: 100%;
  padding-top: 5.05vw;
  padding-bottom: 5.05vw;
  display: grid;
  -moz-column-gap: 5.05vw;
       column-gap: 5.05vw;
  /* 2 колонки */
  grid-template-columns: repeat(2, 1fr);
  /* 8 строк */
  /*grid-template-rows: repeat(8, auto);*/
  /* Определение имен ячеек (строка за строкой) */
  grid-template-areas: "item1 item2" "item3 item4" "item5 item6" "item7 item8" "item9 item10" "item11 item12";
}

/* Привязка элементов к именам */
.big-moon-img {
  grid-area: item1;
}

.new-moon-img {
  grid-area: item2;
}

.big-moon-title {
  grid-area: item3;
}

.new-moon-title {
  grid-area: item4;
}

.big-moon-price {
  grid-area: item5;
}

.new-moon-price {
  grid-area: item6;
}

.big-moon-call {
  grid-area: item7;
}

.new-moon-call {
  grid-area: item8;
}

.big-moon-info {
  grid-area: item9;
}

.new-moon-info {
  grid-area: item10;
}

.big-moon-details {
  grid-area: item11;
}

.new-moon-details {
  grid-area: item12;
}

/* Все ячейки */
.two-moon-grid__cell {
  background: #ffffff;
  padding: 1.2vw;
  text-align: center;
}

/* Первая строка grid */
.two-moon-grid > *:nth-child(-n+2) {
  border-radius: 1.2vw 1.2vw 0 0;
}

/* Последняя строка grid */
.two-moon-grid > *:nth-last-child(-n+2) {
  border-radius: 0 0 1.2vw 1.2vw;
}

.two-mon-image {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.2vw;
}

.two-moon-title {
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.68vw;
  line-height: 100%;
  letter-spacing: normal;
}

/* TWO-MOON-PRICE */
.two-moon-price-grid {
  width: 100%;
  display: grid;
  /* 3 колонки */
  /* 1-я все остальное, 2-я и 3-я по контенту */
  grid-template-columns: 1fr max-content max-content;
  /* 6 строк */
  grid-template-rows: repeat(4, auto);
  /* Определение имен ячеек (строка за строкой) */
  grid-template-areas: "item1 item2 item3" "item4 item5 item6" "item7 item8 item9" "item10 item11 item12";
}

/* Все ячейки таблицы */
.two-moon-price-grid__cell {
  padding-top: 0.48vw;
  padding-bottom: 0.48vw;
  font-size: 1.08vw;
  /*padding-left: 1.20vw;
  padding-right: 1.20vw;*/
}

/* 1-ая строка таблицы */
.two-moon-price-grid > *:nth-child(-n+3) {
  font-family: inter, sans-serif;
  font-size: 1.08vw;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  color: #7E3620;
}

/* Четные строки таблицы */
.two-moon-price-grid > *:nth-child(6n+4),
.two-moon-price-grid > *:nth-child(6n+5),
.two-moon-price-grid > *:nth-child(6n+6) {
  background-color: #eeeeee;
}

/* 1-й столбец таблицы */
.two-moon-price-grid > *:nth-child(3n+1) {
  text-align: left;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
}

/* 2-й столбец таблицы */
.two-moon-price-grid > *:nth-child(3n+2) {
  text-align: right;
  padding-right: 1.2vw;
}

/* 3-й столбец таблицы */
.two-moon-price-grid > *:nth-child(3n+3) {
  text-align: right;
  padding-right: 1.2vw;
}

/* Сноска под Прайсом */
.two-moon-price-footnote {
  font-size: 0.96vw;
  padding-top: 0.48vw;
  padding-left: 1.2vw;
  text-align: left;
}

/* КНОПКА ЗАБРОНИРОВАТЬ */
.big-moon-call,
.new-moon-call {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.8vw;
  align-items: center;
}

.booking-btn {
  width: 16.82vw;
  height: 2.76vw;
  border-radius: 1.38vw;
  border: none;
  padding: auto auto;
  background-color: #ED5829;
  color: #ffffff;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.44vw;
  line-height: 120%;
  letter-spacing: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.booking-btn__icon {
  width: 1.44vw;
  height: 1.44vw;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Состояния */
.booking-btn:hover {
  background-color: #f06a40;
}

.booking-btn:active {
  background-color: #c4431b;
  transform: scale(0.98);
}

/* И МЕЖДУ КНОПКАМИ*/
.and {
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.08vw;
  line-height: 120%;
  letter-spacing: normal;
}

/* КНОПКА ПРАВИЛА */
.rules-btn {
  width: 16.82vw;
  height: 2.76vw;
  border-radius: 1.38vw;
  border: 0.12vw solid #ED5829;
  padding: 0 1.2vw;
  background-color: #ffffff;
  color: #ED5829;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.08vw;
  line-height: 100%;
  letter-spacing: normal;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

/* Состояние при наведении */
.rules-btn:hover {
  background-color: #ED5829;
  color: #ffffff;
}

/* Состояние при клике */
.rules-btn:active {
  background-color: #c4431b;
  border-color: #c4431b;
  transform: scale(0.98);
}

/* TWO-MOON-INFO */
/* Аккордион */
/* Ячейка-Контейнер */
.big-moon-info,
.new-moon-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.6vw;
}

/* Элемент списка */
.moon-info-item {
  overflow: hidden;
}

/* Заголовок-кнопка */
.moon-info-header {
  width: 100%;
  height: 3vw;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.2vw;
  background: #eeeeee;
  color: #6a6a6a;
  text-align: left;
  border-radius: 1.5vw;
  cursor: pointer;
  transition: background 0.3s;
}

.moon-info-header:hover {
  background: #c4c4c4;
}

/* Текст в хедере-кнопке */
.moon-info-header__text {
  width: 100%;
  padding: 0 1.2vw;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.2vw;
  line-height: 120%;
  letter-spacing: normal;
}

/* Иконка слева в хедере-кнопке */
.moon-info-header__icon-left {
  width: 2.04vw;
  height: 2.04vw;
}

/* Иконка справа в хедере-кнопке */
.moon-info-header__icon-right {
  width: 1.44vw;
  height: 1.44vw;
  transition: rotate 0.3s;
}

/* Контент (скрыт) */
.moon-info-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #fdfdfd;
}

.moon-info-inner {
  padding: 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.48vw;
  justify-content: flex-start;
  align-items: flex-start;
}

/* Активное состояние (раскрытие) */
.moon-info-item.active .moon-info-content {
  max-height: 1000px; /* Большое значение для плавности */
  background-color: #EEEEEE;
  border-radius: 0 0 1.5vw 1.5vw;
}

.moon-info-item.active .moon-info-header {
  background: #CACACA; /* Цвет заголовка при открытии */
  border-radius: 1.5vw 1.5vw 0 0;
}

/* Поворот плюсика */
.moon-info-item.active .moon-info-header__icon-right {
  rotate: 45deg;
}

.moon-info-inner-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.9vw;
}

.moon-info-inner__icon-big {
  width: 3.06vw;
  height: 3.06vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 0.3vw;
}

.moon-info-inner__icon-big img {
  width: 2.1vw;
  height: 2.1vw;
}

.moon-info-inner__icon {
  width: 2.16vw;
  height: 2.16vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 0.9vw;
  background-color: #ffffff;
  border-radius: 0.3vw;
}

.moon-info-inner__icon img {
  width: 1.2vw;
  height: 1.2vw;
}

.moon-info-inner__text {
  text-align: left;
}

/* КНОПКА ПОДРОБНЕЕ */
.big-moon-details,
.new-moon-details {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.details-btn {
  padding: 0 1.2vw;
  height: 2.64vw;
  border-radius: 1.32vw;
  /* Рамка и фон */
  border: 0.12vw solid #ED5829;
  background-color: #ffffff;
  box-sizing: border-box; /* Чтобы рамка не увеличивала размер кнопки */
  /* Текст и шрифт */
  color: #ED5829;
  font-size: 0.96vw;
  font-weight: 500;
  text-decoration: none;
  /* Центрирование */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Интерактив */
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Состояние при наведении */
.details-btn:hover {
  background-color: #ED5829;
  color: #ffffff;
}

/* Состояние при клике */
.details-btn:active {
  background-color: #c4431b;
  border-color: #c4431b;
  transform: scale(0.98);
}

/* TWO-MOON SECTION*/
/* 639 и меньше    */
@media screen and (max-width: 639px) {
  .two-moon {
    /* Меняем фон секции с черного на белый */
    background-color: #ffffff;
  }
  /* GRID для секции*/
  .two-moon-grid {
    padding-top: 10vw;
    padding-bottom: 10vw;
    /* Одна колонка на всю ширину */
    grid-template-columns: 1fr;
    /* Убираем gap между колонок */
    -moz-column-gap: 0;
         column-gap: 0;
    /* Определяем новую структуру */
    grid-template-areas: "item1" "item3" "item5" "item7" "item9" "item11" "item2" "item4" "item6" "item8" "item10" "item12";
  }
  /* Все ячейки */
  .two-moon-grid__cell {
    /* Убираем padding слева и справа */
    padding: 3.13vw 0;
  }
  .two-mon-image {
    border-radius: 3.44vw;
  }
  .two-moon-title {
    font-size: 5.63vw;
  }
  /* Прайс */
  .two-moon-price-grid {
    font-size: 3.13vw;
    line-height: 150%;
  }
  /* Все ячейки таблицы */
  .two-moon-price-grid__cell {
    padding-top: 0.86vw;
    padding-bottom: 0.86vw;
    font-size: 3.13vw;
    /*padding-left: 2.4vw;
    padding-right: 2.4vw;*/
  }
  /* 1-ая строка таблицы */
  .two-moon-price-grid > *:nth-child(-n+3) {
    font-size: 3.13vw;
  }
  /* 1-й столбец таблицы */
  .two-moon-price-grid > *:nth-child(3n+1) {
    padding-left: 3.44vw;
    padding-right: 1.56vw;
  }
  /* 2-й столбец таблицы */
  .two-moon-price-grid > *:nth-child(3n+2) {
    text-align: right;
    padding-right: 1.56vw;
  }
  /* 3-й столбец таблицы */
  .two-moon-price-grid > *:nth-child(3n+3) {
    text-align: right;
    padding-right: 3.44vw;
  }
  /* Сноска под Прайсом */
  .two-moon-price-footnote {
    font-size: 2.5vw;
    line-height: 150%;
    padding-left: 3.44vw;
    padding-right: 3.44vw;
  }
  /* КНОПКА ЗАБРОНИРОВАТЬ */
  .booking-btn {
    width: 41.25vw;
    height: 6.88vw;
    border-radius: 3.44vw;
    padding: auto auto;
    font-size: 3.75vw;
    gap: 1.56vw;
  }
  .booking-btn__icon {
    width: 3.13vw;
    height: 3.13vw;
  }
  /* И МЕЖДУ КНОПКАМИ*/
  .and {
    font-family: "aMavickFont";
    font-weight: 400;
    font-size: 3.13vw;
    line-height: 120%;
    letter-spacing: normal;
  }
  /* КНОПКА ПРАВИЛА */
  .rules-btn {
    width: 41.25vw;
    height: 6.88vw;
    border-radius: 3.44vw;
    padding: auto auto;
    font-size: 2.5vw;
  }
  /* TWO-MOON-INFO */
  /* Аккордион */
  /* Ячейка-Контейнер */
  .big-moon-info,
  .new-moon-info {
    gap: 1.56vw;
  }
  /* Заголовок-кнопка */
  .moon-info-header {
    height: 6.88vw;
    padding: 0 3.44vw;
    border-radius: 3.44vw;
  }
  /* Текст в хедере-кнопке */
  .moon-info-header__text {
    padding: 0 3.44vw;
    font-size: 3.13vw;
  }
  /* Иконка слева в хедере-кнопке */
  .moon-info-header__icon-left {
    width: 5vw;
    height: 5vw;
  }
  /* Иконка справа в хедере-кнопке */
  .moon-info-header__icon-right {
    width: 3.13vw;
    height: 3.13vw;
  }
  .moon-info-inner {
    padding: 3.44vw;
    gap: 1.56vw;
  }
  /* Активное состояние (раскрытие) */
  .moon-info-item.active .moon-info-content {
    border-radius: 0 0 3.44vw 3.44vw;
  }
  .moon-info-item.active .moon-info-header {
    border-radius: 3.44vw 3.44vw 0 0;
  }
  .moon-info-inner-item {
    gap: 3.44vw;
  }
  .moon-info-inner__icon-big {
    width: 6.88vw;
    height: 6.88vw;
    border-radius: 0.63vw;
  }
  .moon-info-inner__icon-big img {
    width: 5vw;
    height: 5vw;
  }
  .moon-info-inner__icon {
    width: 5vw;
    height: 5vw;
    margin-left: 5vw;
    border-radius: 0.63vw;
  }
  .moon-info-inner__icon img {
    width: 3.13vw;
    height: 3.13vw;
  }
  .moon-info-inner__text {
    font-size: 2.81vw;
    line-height: 120%;
  }
  /* КНОПКА ПОДРОБНЕЕ */
  /* Контейнер (ячейка grid-а) */
  .big-moon-details,
  .new-moon-details {
    padding-bottom: 10vw;
  }
  .details-btn {
    padding: 0 3.44vw;
    height: 6.88vw;
    border-radius: 3.44vw;
    /* Рамка и фон */
    border: 0.31vw solid #ED5829;
    /* Текст и шрифт */
    font-size: 2.81vw;
  }
}
.sauna-detail {
  margin-top: 100px;
  padding: 4vw 0;
  background-color: #ffffff;
  min-height: calc(100vh - 100px);
  color: #6a6a6a;
}
@media (max-width: 991px) {
  .sauna-detail {
    margin-top: 52px;
  }
}
@media (max-width: 991px) {
  .sauna-detail {
    min-height: calc(100vh - 52px);
  }
}
.sauna-detail__title {
  font-family: "aMavickFont", sans-serif;
  font-size: 48px;
  line-height: 1.1;
  color: #ff9d00;
  margin-bottom: 2.5vw;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (min-width: 1920px) {
  .sauna-detail__title {
    font-size: 2.5vw;
    margin-bottom: 4vw;
  }
}
@media (max-width: 991px) {
  .sauna-detail__title {
    font-size: 38px;
    margin-bottom: 4vw;
  }
}
@media (max-width: 480px) {
  .sauna-detail__title {
    font-size: 32px;
  }
}
.sauna-detail__description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto; /* Добавляет переносы слов */
  color: #6a6a6a;
  margin-bottom: 4vw;
}
@media (min-width: 1920px) {
  .sauna-detail__description {
    font-size: 0.833vw;
  }
}
@media (max-width: 991px) {
  .sauna-detail__description {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .sauna-detail__description {
    font-size: 16px;
  }
}
.sauna-detail__description p {
  margin-bottom: 1.5vw;
}
.sauna-detail__gallery-title {
  font-family: "aMavickFont", sans-serif;
  font-size: 24px;
  color: #ff9d00;
  margin-bottom: 2vw;
}
@media (min-width: 1920px) {
  .sauna-detail__gallery-title {
    font-size: 1.25vw;
  }
}
@media (max-width: 991px) {
  .sauna-detail__gallery-title {
    font-size: 22px;
  }
}
@media (max-width: 480px) {
  .sauna-detail__gallery-title {
    font-size: 20px;
  }
}

.sauna-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22vw, 1fr));
  gap: 1.5vw;
  margin-bottom: 5vw;
}
.sauna-gallery__item {
  height: 15vw;
  overflow: hidden;
  border: 1px solid #eeeeee;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sauna-gallery__item:hover {
  border-color: #ff9d00;
  transform: translateY(-5px);
}
.sauna-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.sauna-gallery__img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .sauna-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .sauna-gallery__item {
    height: 40vw;
  }
}
.rules-page {
  margin-top: 100px;
  padding: 4vw 0 8vw;
  background-color: #ffffff;
  min-height: calc(100vh - 100px);
  color: #6a6a6a;
}
@media (max-width: 991px) {
  .rules-page {
    margin-top: 52px;
  }
}
@media (max-width: 991px) {
  .rules-page {
    min-height: calc(100vh - 52px);
  }
}
.rules-page__title {
  font-family: "aMavickFont", sans-serif;
  font-size: 48px;
  line-height: 1.1;
  color: #ff9d00;
  margin-bottom: 2.5vw;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
@media (min-width: 1920px) {
  .rules-page__title {
    font-size: 2.5vw;
    margin-bottom: 4vw;
  }
}
@media (max-width: 991px) {
  .rules-page__title {
    font-size: 38px;
    margin-bottom: 4vw;
  }
}
@media (max-width: 480px) {
  .rules-page__title {
    font-size: 32px;
  }
}
.rules-page__subtitle {
  font-family: "aMavickFont", sans-serif;
  font-size: 24px;
  line-height: 1.2;
  color: #ff9d00;
  margin-bottom: 1.5vw;
  text-transform: uppercase;
}
@media (min-width: 1920px) {
  .rules-page__subtitle {
    font-size: 1.25vw;
  }
}
@media (max-width: 991px) {
  .rules-page__subtitle {
    font-size: 22px;
    margin-bottom: 3vw;
  }
}
.rules-page__block {
  margin-top: 3vw;
  padding-top: 2vw;
  border-top: 1px solid #eeeeee;
}
@media (max-width: 991px) {
  .rules-page__block {
    margin-top: 6vw;
    padding-top: 4vw;
  }
}
.rules-page__content {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 1920px) {
  .rules-page__content {
    font-size: 0.833vw;
  }
}
@media (max-width: 991px) {
  .rules-page__content {
    font-size: 16px;
    max-width: 100%;
  }
}
.rules-page__content p {
  margin-bottom: 1.5vw;
}
.rules-page__content ul {
  padding-left: 1.5vw;
  margin-bottom: 1.5vw;
}
.rules-page__content ul li {
  margin-bottom: 0.5vw;
  list-style: disc;
}
.rules-page__content ul li::marker {
  color: #ff9d00;
}
.rules-page__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.8vw;
  margin-top: 4vw;
}
@media screen and (max-width: 639px) {
  .rules-page__actions {
    justify-content: space-between;
    gap: 2vw;
    margin-top: 8vw;
  }
}

/* БЛОК КОНТАКТОВ В ПРАВИЛАХ */
.rules-contacts {
  list-style: none;
  padding: 0;
  margin: 2.5vw 0;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}
@media (max-width: 991px) {
  .rules-contacts {
    margin: 5vw 0;
    gap: 4vw;
  }
}
.rules-contacts .header-menu__item {
  display: flex;
  align-items: center;
  gap: 1vw;
}
@media (max-width: 991px) {
  .rules-contacts .header-menu__item {
    gap: 3vw;
  }
}
.rules-contacts .header-menu__link-block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8vw;
  height: 2.8vw;
  background-color: #ED5829;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
  text-decoration: none;
}
.rules-contacts .header-menu__link-block:hover {
  transform: scale(1.1);
  background-color: #f06a40;
}
@media (max-width: 991px) {
  .rules-contacts .header-menu__link-block {
    width: 10vw;
    height: 10vw;
  }
}
.rules-contacts .header-menu__image {
  width: 1.4vw;
  height: 1.4vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .rules-contacts .header-menu__image {
    width: 5vw;
    height: 5vw;
  }
}
.rules-contacts .header-menu__text-link {
  font-family: "aMavickFont", sans-serif;
  font-size: 1.4vw;
  color: #6a6a6a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.rules-contacts .header-menu__text-link:hover {
  color: #ED5829;
}
@media (max-width: 991px) {
  .rules-contacts .header-menu__text-link {
    font-size: 5vw;
  }
}

/* КНОПКА ПРАВИЛА */
.rules-btn {
  width: 16.82vw;
  height: 2.76vw;
  border-radius: 1.38vw;
  border: 0.12vw solid #ED5829;
  padding: 0 1.2vw;
  background-color: #ffffff;
  color: #ED5829;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.08vw;
  line-height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.rules-btn:hover {
  background-color: #ED5829;
  color: #ffffff;
}
.rules-btn:active {
  transform: scale(0.98);
}
@media screen and (max-width: 639px) {
  .rules-btn {
    width: 41.25vw;
    height: 6.88vw;
    border-radius: 3.44vw;
    font-size: 2.5vw;
  }
}

/* КНОПКА ЗАБРОНИРОВАТЬ */
.booking-btn {
  width: 16.82vw;
  height: 2.76vw;
  border-radius: 1.38vw;
  border: none;
  background-color: #ED5829;
  color: #ffffff;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.44vw;
  line-height: 120%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-decoration: none;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}
.booking-btn:hover {
  background-color: #f06a40;
}
.booking-btn:active {
  transform: scale(0.98);
}
@media screen and (max-width: 639px) {
  .booking-btn {
    width: 41.25vw;
    height: 6.88vw;
    border-radius: 3.44vw;
    font-size: 3.75vw;
    gap: 1.56vw;
  }
}

.booking-btn__icon {
  width: 1.44vw;
  height: 1.44vw;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 639px) {
  .booking-btn__icon {
    width: 3.13vw;
    height: 3.13vw;
  }
}

.map-page {
  margin-top: 100px;
  padding: 4vw 0 8vw;
  background-color: #ffffff;
  min-height: calc(100vh - 100px);
  color: #6a6a6a;
}
@media (max-width: 991px) {
  .map-page {
    margin-top: 52px;
  }
}
@media (max-width: 991px) {
  .map-page {
    min-height: calc(100vh - 52px);
  }
}
.map-page__title {
  font-family: "aMavickFont", sans-serif;
  font-size: 48px;
  line-height: 1.2;
  color: #ff9d00;
  margin-bottom: 2.5vw;
  text-transform: uppercase;
  text-align: left;
}
@media (min-width: 1920px) {
  .map-page__title {
    font-size: 2.5vw;
  }
}
@media (max-width: 991px) {
  .map-page__title {
    font-size: 38px;
    margin-bottom: 5vw;
  }
}
@media (max-width: 480px) {
  .map-page__title {
    font-size: 32px;
  }
}
.map-page__description {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
  margin-bottom: 4vw;
  text-align: justify;
  -webkit-hyphens: auto;
          hyphens: auto;
  color: #6a6a6a;
}
@media (min-width: 1920px) {
  .map-page__description {
    font-size: 0.833vw;
  }
}
@media (max-width: 991px) {
  .map-page__description {
    max-width: 100%;
  }
}
.map-page__container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 0 auto 3vw;
}
@media (max-width: 991px) {
  .map-page__container {
    height: 400px;
    border-radius: 12px;
  }
}
@media (max-width: 480px) {
  .map-page__container {
    height: 300px;
  }
}
.map-page__container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-page__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}
.map-page__address-label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-top: 1.5vw;
  text-align: center;
}
@media (max-width: 991px) {
  .map-page__address-label {
    font-size: 11px;
    margin-top: 15px;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .map-page__address-label {
    font-size: 10px;
    letter-spacing: 0.05em;
  }
}

.nav-btn {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 20vw;
  height: 3.5vw;
  border-radius: 1.75vw;
  border: none;
  background-color: #ED5829;
  color: #ffffff;
  font-family: "aMavickFont";
  font-weight: 400;
  font-size: 1.2vw;
  padding: 0 3vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.nav-btn:hover {
  background-color: #f06a40;
}
@media (max-width: 991px) {
  .nav-btn {
    height: 50px;
    border-radius: 25px;
    font-size: 16px;
    padding: 0 40px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 200px;
  }
}
@media (max-width: 480px) {
  .nav-btn {
    height: 44px;
    font-size: 14px;
    padding: 0 25px;
    min-width: auto;
  }
}/*# sourceMappingURL=main.css.map */