@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')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету 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: "Oswald";
  src: url("../fonts/Oswald-Bold.woff2") format("woff2"), url("../fonts/Oswald-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Medium.woff2") format("woff2"), url("../fonts/Oswald-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Alternates";
  src: url("../fonts/MontserratAlternates-Medium.woff2") format("woff2"), url("../fonts/MontserratAlternates-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat Alternates";
  src: url("../fonts/MontserratAlternates-Regular.woff2") format("woff2"), url("../fonts/MontserratAlternates-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-black: #191a23;
  --color-white: #ffffff;
  --color-accent: #077450;
  --color-accent-alt: #71baa2;
  --color-accent-trans40: #07745066;
  --background-gradient: linear-gradient(45deg, #fef98b 3.68%, #e4b01a 98.66%);
  --font-family-base: "Montserrat Alternates", sans-serif;
  --container-width: 1216px;
  --container-padding-x: 30px;
  --button-height: 53px;
  --transition-duration: 0.8s;
  --transition-duration-fast: 0.3s;
  --scale: scale(1.15);
}

.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;
  -webkit-clip-path: inset(100%) !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 (min-width: 1001px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family-base);
  font-weight: 500;
  line-height: 1.28;
  color: var(--color-black);
  background-color: var(--color-white);
}

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

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

.button {
  width: 100%;
  max-width: 987px;
  height: 53px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background-color: var(--color-accent);
  transition-duration: var(--transition-duration);
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 20px;
}
@media (hover: hover) {
  .button:hover {
    background-color: var(--color-accent-alt);
  }
}
@media (hover: none) {
  .button:active {
    background-color: var(--color-accent-alt);
  }
}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  transition-duration: var(--transition-duration-fast);
}
.burger-button svg {
  width: 100%;
  height: auto;
}
@media (hover: hover) {
  .burger-button:hover {
    transform: var(--scale);
  }
}
@media (hover: none) {
  .burger-button:active {
    transform: var(--scale);
  }
}

.cross-button {
  padding: 0;
  background-color: transparent;
  border: none;
  transition-duration: var(--transition-duration-fast);
}
@media (hover: hover) {
  .cross-button:hover {
    transform: var(--scale);
  }
}
@media (hover: none) {
  .cross-button:active {
    transform: var(--scale);
  }
}
.cross-button::before, .cross-button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  position: absolute;
  width: 135%;
  height: 3px;
  border-radius: 5px;
  background: var(--background-gradient);
}
.cross-button::before {
  rotate: 45deg;
}
.cross-button::after {
  rotate: -45deg;
}

.mobile-overlay {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  border: none;
  color: var(--color-white);
  background-color: var(--color-accent);
}
.mobile-overlay:modal {
  max-width: 100%;
  max-height: 100%;
}
.mobile-overlay__cross-button {
  width: 30px;
  aspect-ratio: 1;
  position: fixed;
  top: 30px;
  right: 0;
  translate: -50% -50%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media (min-width: 481px) {
  .mobile-overlay__cross-button {
    width: 38px;
    aspect-ratio: 1;
    top: 38px;
  }
}
.mobile-overlay__body {
  height: 100vh;
  height: 100dvh;
  max-height: 100%;
  padding-block: 10vh;
  padding-block: 10dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.mobile-overlay__list {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
}
.mobile-overlay-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 10px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 24px;
}
@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: var(--color-white);
  transition-duration: 0.8s;
}

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

.accent-bg {
  background-color: var(--color-accent);
}
.accent-header {
  margin-block: 20px;
  background-color: var(--color-accent);
  display: inline-block;
  padding-block: clamp(6px, -9px + 4.17vw, 11px);
  padding-right: clamp(15px, 4.17vw, 20px);
  padding-left: 40px;
  width: 49%;
  min-width: -moz-max-content;
  min-width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-end;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
@media (min-width: 481px) {
  .accent-header {
    padding-right: 30px;
    padding-block: 16px;
  }
}
.accent-footer {
  align-self: flex-end;
  margin-block: 20px;
  background-color: var(--color-accent);
  display: inline-block;
  padding-block: clamp(6px, -9px + 4.17vw, 11px);
  padding-left: clamp(15px, 4.17vw, 20px);
  padding-right: 10px;
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
@media (min-width: 481px) {
  .accent-footer {
    padding-right: 30px;
    padding-block: 16px;
  }
}
@media (min-width: 1300px) {
  .accent-footer {
    width: 43%;
  }
}
.accent-footer__external-elem {
  color: var(--color-accent);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.many-text {
  padding-block: 20px;
  line-height: 2;
  font-size: clamp(18px, 8px + 2.08vw, 24px);
}
.many-text--long-p-bottom {
  padding-bottom: 60px;
}

.header {
  --container-padding-x: 20px;
  background-color: var(--color-accent);
  box-shadow: 0px 2px 3px 0px rgba(4, 71, 48, 0.4);
  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 {
  width: 95%;
  color: var(--color-white);
  height: clamp(104px, 75px + 7.97vw, 155px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1001px) {
  .header__body {
    max-width: 830px;
    height: 173px;
  }
}
.header__logo {
  order: 1;
}
.header__logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(87px, 48px + 10.83vw, 100px);
}
@media (min-width: 481px) {
  .header__logo-wrapper {
    width: 129px;
  }
}
.header__logo-wrapper svg {
  width: 100%;
  height: auto;
}
.header__menu {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.header__menu-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.header__menu-list:last-of-type {
  order: 2;
}
.header__menu-item {
  display: flex;
  flex-shrink: 1;
}
.header__menu-item--left {
  order: -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;
}
.header__menu-link::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50%;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition-duration: inherit;
}
@media (hover: hover) {
  .header__menu-link:hover::after {
    width: 100%;
  }
}
@media (hover: none) {
  .header__menu-link:active::after {
    width: 100%;
  }
}
.header__burger-button {
  width: 42px;
  aspect-ratio: 1;
}
.header__burger-button-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.header__burger-button svg {
  width: 100%;
  height: auto;
}
@media (min-width: 481px) {
  .header__burger-button {
    width: 56px;
    aspect-ratio: 1;
  }
}

.hero {
  height: clamp(354px, 177px + 49.17vw, 413px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-accent-alt);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: -webkit-image-set(url("../images/hero/hero480-2x.avif") type("image/avif") 2x, url("../images/hero/hero480-1x.avif") type("image/avif") 1x, url("../images/hero/hero480-2x.jpg") 2x, url("../images/hero/hero480-1x.jpg") 1x);
  background-image: image-set(url("../images/hero/hero480-2x.avif") type("image/avif") 2x, url("../images/hero/hero480-1x.avif") type("image/avif") 1x, url("../images/hero/hero480-2x.jpg") 2x, url("../images/hero/hero480-1x.jpg") 1x);
}
@media (min-width: 481px) {
  .hero {
    background-image: -webkit-image-set(url("../images/hero/hero1000-2x.avif") type("image/avif") 2x, url("../images/hero/hero1000-1x.avif") type("image/avif") 1x, url("../images/hero/hero1000-2x.jpg") 2x, url("../images/hero/hero1000-1x.jpg") 1x);
    background-image: image-set(url("../images/hero/hero1000-2x.avif") type("image/avif") 2x, url("../images/hero/hero1000-1x.avif") type("image/avif") 1x, url("../images/hero/hero1000-2x.jpg") 2x, url("../images/hero/hero1000-1x.jpg") 1x);
  }
}
@media (min-width: 1001px) {
  .hero {
    background-image: -webkit-image-set(url("../images/hero/hero1920-2x.avif") type("image/avif") 2x, url("../images/hero/hero1920-1x.avif") type("image/avif") 1x, url("../images/hero/hero1920-2x.jpg") 2x, url("../images/hero/hero1920-1x.jpg") 1x);
    background-image: image-set(url("../images/hero/hero1920-2x.avif") type("image/avif") 2x, url("../images/hero/hero1920-1x.avif") type("image/avif") 1x, url("../images/hero/hero1920-2x.jpg") 2x, url("../images/hero/hero1920-1x.jpg") 1x);
  }
}
@media (min-width: 481px) {
  .hero {
    height: clamp(495px, 91px + 52.59vw, 617px);
  }
}
@media (min-width: 1001px) {
  .hero {
    height: 1085px;
  }
}
.hero__body {
  height: 64%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 481px) {
  .hero__body {
    height: 69%;
  }
}
@media (min-width: 1001px) {
  .hero__body {
    height: 483px;
  }
}
.hero__title {
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(52px, 1px + 14.17vw, 69px);
}
@media (min-width: 481px) {
  .hero__title {
    font-size: clamp(72px, 32px + 8.29vw, 115px);
  }
}
@media (min-width: 1001px) {
  .hero__title {
    font-size: clamp(130px, 15px + 11.46vw, 170px);
  }
}
.hero__title--smaller-font {
  font-size: clamp(35px, -1px + 10vw, 47px);
}
@media (min-width: 481px) {
  .hero__title--smaller-font {
    font-size: clamp(49px, 22px + 5.59vw, 78px);
  }
}
@media (min-width: 1001px) {
  .hero__title--smaller-font {
    font-size: clamp(89px, 12px + 7.74vw, 116px);
  }
}

.swiper {
  width: 100%;
  max-width: 1920px;
}
.swiper-container {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
}
.swiper-container::part(button-prev) {
  left: 25%;
}
.swiper-container::part(button-next) {
  right: 25%;
  left: auto;
}
.swiper-container::part(pagination) {
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 20px;
  bottom: 13%;
  transform: translateY(50%);
  gap: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
@media (min-width: 481px) {
  .swiper-container::part(pagination) {
    font-size: clamp(32px, -7968px + 800vw, 40px);
  }
}
.swiper-container::part(button-prev), .swiper-container::part(button-next) {
  display: none;
  background-color: var(--color-accent-trans40);
  color: var(--color-white);
  height: 40px;
  width: 40px;
  border-radius: 40px;
  padding: 20px;
  transition-duration: var(--transition-duration-fast);
  position: absolute;
  bottom: 13%;
  transform: translateY(50%);
  z-index: 20;
  top: auto;
}
@media (hover: hover) {
  .swiper-container::part(button-prev):hover, .swiper-container::part(button-next):hover {
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .swiper-container::part(button-prev):active, .swiper-container::part(button-next):active {
    background-color: var(--color-accent);
  }
}
@media (min-width: 1001px) {
  .swiper-container::part(button-prev), .swiper-container::part(button-next) {
    display: flex;
  }
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.details__icon-list {
  padding-block: clamp(50px, 20px + 8.33vw, 60px);
  font-weight: 400;
  font-size: clamp(16px, -2px + 5vw, 22px);
  line-height: 1.5;
  display: grid;
  row-gap: clamp(30px, -30px + 16.67vw, 50px);
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  align-items: start;
  justify-content: start;
}
@media (min-width: 550px) {
  .details__icon-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) {
  .details__icon-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1001px) {
  .details__icon-list {
    grid-template-columns: repeat(5, 1fr);
    padding-block: 45px;
  }
}
.details__icon-item {
  color: var(--color-white);
  width: -moz-min-content;
  width: min-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 5px;
}
.details__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(70px, 37px + 4.31vw, 80px);
  height: clamp(70px, 37px + 4.31vw, 80px);
}
.details__icon-wrapper svg {
  height: 100%;
  width: 100%;
  max-width: 70px;
  max-height: 70px;
}

.room {
  display: flex;
  flex-direction: column;
}
.room__title {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(35px, 11px + 6.72vw, 78px);
}
@media (min-width: 1001px) {
  .room__title {
    font-size: 96px;
  }
}
.room__subtitle {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: clamp(30px, 11px + 5.31vw, 64px);
}

.contacts {
  background-color: var(--color-accent);
  padding-block: 60px;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 50px;
}
.contacts__title {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 11px + 5.31vw, 64px);
  text-align: center;
}
.contacts__address {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: clamp(50px, 35px + 4.17vw, 55px);
}
@media (min-width: 481px) {
  .contacts__address {
    row-gap: clamp(60px, -9940px + 1000vw, 70px);
  }
}
.contacts__phone-and-email {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}
.contacts__link {
  font-family: "Montserrat Alternates", sans-serif;
  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__link--phone {
  font-size: clamp(22px, 10px + 3.43vw, 36px);
}
.contacts__link--email {
  font-size: clamp(13px, 3px + 2.7vw, 24px);
}
.contacts__link-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(23px, -28px + 14.17vw, 40px);
  aspect-ratio: 1;
}
.contacts__link-icon-wrapper--in-phone-and-email {
  position: relative;
  top: 1px;
}
.contacts__link-icon-wrapper svg {
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}
.contacts__physical-address {
  font-size: clamp(13px, 7px + 1.72vw, 20px);
  text-align: center;
}
.contacts__messengers {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.contacts__messengers-link-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(23px, -28px + 14.17vw, 40px);
  height: auto;
}
.contacts__messengers-link-icon-wrapper svg {
  width: 100%;
  height: auto;
}/*# sourceMappingURL=styles.css.map */