:root {
  --accent: orange;
  --text: #eff2f7;
  --color-darl-blue: #0e2a47;
  --color-black: #090a0b;
  --color-black-hover: #18191a;
  --color-gold: #bfa879;
  --color-brown: #867c5f;
  --color-red: #d91528;
  --regular-text: 16px;
  --lineheight: normal;
  --userfont: montserrat, sans-serif;
  --amstelvar: amstelvar, sans-serif;
  --raleway: raleway, sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

@font-face {
  src: url("../fonts/montserrat-Regular.woff2") format("woff2");
  font-family: "montserrat";
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("../fonts/montserrat-Medium.woff2") format("woff2");
  font-family: "montserrat";
  font-weight: 500;
  font-style: normal;
}

@font-face {
  src: url("../fonts/montserrat-Bold.woff2") format("woff2");
  font-family: "montserrat";
  font-weight: 700;
  font-style: bold;
}

@font-face {
  src: url("../fonts/amstelvar-roman.woff2") format("woff2");
  font-family: "amstelvar";
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("../fonts/Raleway-Regular.ttf");
  font-family: "raleway";
  font-weight: 400;
  font-style: normal;
}

@font-face {
  src: url("../fonts/Raleway-Bold.ttf");
  font-family: "raleway";
  font-weight: 700;
  font-style: normal;
}

.color-gold {
  color: var(--color-gold);
}

.color-white {
  color: #fff !important;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
li,
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ul li {
  list-style-type: none;
}

a:focus,
input:focus {
  outline: none;
}

body {
  display: block;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: var(--regular-text);
  font-family: var(--userfont);
  line-height: normal;
  background-color: #18191a;
  min-width: 380px;
  font-weight: 400;
  color: var(--text);
}

.main {
  position: relative;
  z-index: 2;
}

a {
  color: var(--text);
  text-decoration: none;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 72px;
}

.center {
  text-align: center;
}

/* .container-long {
    max-width: 1540px;
    padding: 0 !important;
} */

.container-long {
  max-width: 100%;
  padding: 0 !important;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.header {
  padding: 10px 0;
  position: relative;
  z-index: 11;
  border-bottom: 1px solid rgba(239, 242, 247, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.header__bgc-black {
  background-color: var(--color-black);
}

.header__row {
  display: flex;
  align-items: center;
}

.header__col {
  margin-left: auto;
  display: flex;
  gap: 48px;
  align-items: center;
}

.fixed {
  overflow: hidden;
}

.menu {
  position: relative;
}

.logo {
  width: 220px;
  height: 50px;
  display: block;
}

.logo__img {
  width: 100%;
  height: 100%;
}

.menu__list {
  display: flex;
  gap: 24px;
}

.menu__item {
  position: relative;
}

.menu__link {
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn {
  font-size: 13px;
  text-transform: uppercase;
  height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eff2f7;
  color: #eff2f7;
  background-color: inherit;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}

.btn:hover {
  background-color: #18191a;
}

.btn:focus {
  outline: 2px solid black;
  box-shadow: 0px 0px 0px 4px var(--color-brown);
}

.btn-white {
  font-size: 16px;
  text-transform: uppercase;
  height: 56px;
  padding: 0 37px;
  display: flex;
  font-family: var(--userfont);
  letter-spacing: 0.16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--color-darl-blue);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.btn-white:hover {
  background-color: #b1b5ba;
}

.btn-white:focus {
  outline: 2px solid var(--color-black);
  box-shadow: 0px 0px 0px 4px var(--color-brown);
}

.language {
  user-select: none;
  position: relative;
}

.language__title {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
  gap: 5px;
}

.language__title::after {
  content: "";
  width: 13px;
  height: 8px;
  background-image: url(../img/icon/arrow-bottom-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: relative;
}

.language__body {
  position: absolute;
  background: #fff;
  color: black;
  width: 100px;
  right: 0;
  top: 20px;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.08);
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

.language__active .language__title::after {
  transform: rotate(180deg);
}

.language__active .language__body {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.language__item {
  padding: 5px;
  cursor: pointer;
  font-size: 14px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease-in-out;
}

.language__item:hover {
  color: var(--color-gold);
}

.header-block {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 800px;
}

.header-block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      0deg,
      rgb(24, 25, 26),
      rgba(24, 25, 26, 0) 37.344%
    ),
    linear-gradient(90deg, rgba(24, 25, 26, 0.9) 0%, rgba(24, 25, 26, 0) 100%);
}

.header-block__video-position {
  position: absolute;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.header-block__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.header-block__offer {
  position: relative;
  z-index: 2;
  padding-top: 184px;
  padding-bottom: 160px;
}

.header-block__offer-row {
  display: flex;
  flex-direction: column;
  gap: 62px;
}

.header-block__offer-title {
  font-family: var(--amstelvar);
  font-weight: 300;
  font-size: 96px;
  max-width: 865px;
  width: 100%;
  line-height: 110%;
}

.header-block__offer-text {
  max-width: 320px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
}

.header-block__transparent-logo {
  position: absolute;
  right: 1%;
  top: -75px;
  opacity: 1;
  z-index: 2;
  display: none;
}

.header-main__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.header-main__col {
  width: 290px;
}

.header-main__logo {
  display: flex;
  position: relative;
  z-index: 10;
}

.section {
  padding: 120px 0;
}

.section__wr {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}

.section-title {
  font-size: 80px;
  line-height: 70px;
  color: var(--color-gold);
  font-family: var(--amstelvar);
}

.section-subtitle {
  color: var(--text);
  margin-bottom: 24px;
  font-size: 15px;
  text-transform: uppercase;
}

.section__link {
  color: var(--text);
  font-size: 14px;
}

.link {
  color: var(--text);
  font-family: var(--raleway);
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 5px;
  transition: all 0.1s ease-in-out;
}

.link:hover {
  color: #707171;
}

.link:active {
  color: #ffffff;
}

.link-black {
  color: var(--color-black);
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 5px;
  transition: all 0.1s ease-in-out;
}

.link-black:hover {
  color: #707171;
}

.link-black:active {
  color: var(--color-black);
}

.btn-burger {
  display: none;
}

.btn-burger::before {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url(../img/icon/burger.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: relative;
}

.btn-burger__active::before {
  background-image: url(../img/icon/close.svg);
}

.mobile-menu {
  position: fixed;
  background-color: var(--color-black);
  z-index: 10;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-x: auto;
  padding: 112px 15px 32px 15px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease-in-out;
}

.mobile-menu__show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu .menu {
  display: block;
}

.mobile-menu .menu__list {
  flex-direction: column;
  gap: 40px;
  padding-bottom: 62px;
}

.mobile-menu .menu__link {
  font-size: 16px;
}

.mobile-menu__bottom {
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.mobile-menu__btn {
  height: 48px;
  font-size: 16px;
  color: #707171;
  border-color: #707171;
}

.mobile-menu .social__item {
  color: #96999e;
}

.social {
  display: flex;
  gap: 32px;
}

.bgc-fixed {
  background-color: #000000b0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 12;
  visibility: hidden;
  opacity: 0;
}

.bgc-fixed__show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.modal-sidebar {
  position: fixed;
  max-width: 598px;
  width: 100%;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  z-index: 13;
  color: var(--color-black);
  overflow-x: auto;
  overflow-y: scroll;
  padding: 56px;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s ease-in-out;
}

.modal-sidebar__show {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

.modal-sidebar__title {
  font-family: var(--amstelvar);
  font-size: 44px;
  margin-bottom: 40px;
  line-height: 44px;
}

.modal-sidebar__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.custom-input {
  position: relative;
  display: block;
}

.custom-input__wr {
  position: relative;
}

.custom-input__error .custom-input__placeholder {
  color: var(--color-red);
}

.custom-input__placeholder {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  transition: all 0.2s ease-in-out;
}

.custom-input__input {
  padding: 26px 12px 10px 12px;
  border: 1px solid #e6e6e7;
  width: 100%;
  font-size: 16px;
}

.custom-input__input:focus {
  outline: 4px solid #f1e3be;
}

.custom-input__focus .custom-input__placeholder {
  font-size: 12px;
  top: 14px;
}

.modal-sidebar__inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.custom-select {
  position: relative;
  display: inline-block;
  user-select: none;
  cursor: pointer;
}

.select-input::after {
  content: "";
  width: 12px;
  height: 6px;
  background-image: url(../img/icon/array-gray-bottom.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.select-input__focus::after {
  transform: translateY(-50%) rotate(182deg);
}

.select-options {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  max-height: 200px;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0px 32px 32px 0px rgba(68, 83, 113, 0.05),
    0px 0px 32px 0px rgba(68, 83, 113, 0.1);
}

.select-input__error .select-input__placeholder {
  color: var(--color-red);
}

.option {
  padding: 10px 24px;
  cursor: pointer;
  font-size: 14px;
}

.option:hover {
  background-color: #f4f4f4;
}

.select-input__text {
  position: absolute;
  left: 12px;
  bottom: 10px;
}

.select-input__focus {
  outline: 4px solid #f1e3be;
}

.select-input {
  border: 1px solid #e6e6e7;
  width: 100%;
  position: relative;
  height: 56px;
}

.select-input__placeholder {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease-in-out;
}

.select-input__active .select-input__placeholder {
  font-size: 12px;
  top: 14px;
}

.modal-sidebar__bottom {
  margin-top: 75px;
}

.modal-sidebar__btn {
  background-color: var(--color-black);
  color: #fff;
  width: 100%;
  margin-bottom: 16px;
}

.modal-sidebar__btn:hover {
  background-color: var(--color-black-hover);
}

.modal-sidebar__doc {
  font-size: 11px;
  margin-bottom: 36px;
  font-family: var(--raleway);
}

.modal-sidebar__doc a {
  color: #d2a126;
}

.modal-sidebar__message-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.btn-message {
  width: 50%;
  height: 56px;
  border: 1px solid var(--color-black);
  color: var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}

.section-block-hotel__tabs {
  display: flex;
  gap: 32px;
  user-select: none;
  flex-wrap: wrap;
  font-family: var(--raleway);
}

.section-block-hotel__tab {
  font-size: 20px;
  text-transform: uppercase;
  color: #8c8c8d;
  display: flex;
  align-items: center;
  gap: 32px;
  cursor: pointer;
}

.section-block-hotel__tab.active {
  color: #fff;
}

.section-block-hotel__tab::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: block;
  position: relative;
}

.section-block-hotel__tab:nth-last-child(1)::after {
  content: none;
}

.section-block-hotel__wr {
  margin-bottom: 72px;
}

.section-block-hotel__tab-item {
  position: relative;
  overflow: hidden;
  width: 50%;
  display: block;
  height: 580px;
}

.section-block-hotel__tab-item:hover .section-block-hotel__tab-img {
  transform: scale(1.1);
}

.section-block-hotel__tab-item::before {
  content: "";
  width: 100%;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(24, 25, 26, 0) 6.593%,
    rgb(24, 25, 26) 93.392%
  );
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  z-index: 1;
}

.section-block-hotel__tab-item-main {
  height: 720px;
  width: 100%;
}

.section-block-hotel__tab-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.section-block-hotel__tab-item-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  z-index: 2;
  max-width: 480px;
  width: 100%;
}

.section-block-hotel__tab-item-title {
  text-transform: uppercase;
  font-size: 26px;
}

.section-block-hotel__tab-item-text {
  margin-top: 14px;
  font-size: 14px;
  line-height: 140%;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease-in-out;
}

.section-block-hotel__tab-item:hover .section-block-hotel__tab-item-text {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
}

.section-block-hotel__tabs-cols {
  display: flex;
  flex-wrap: wrap;
}

.section__link {
  padding-bottom: 8px;
  display: inline-block;
}

.link__top {
  padding-top: 72px;
  display: inline-block;
}

.section-services {
  background-color: #fff;
}

.section-services .section-title {
  color: var(--color-black);
}

.section__col {
  display: flex;
  gap: 48px;
  align-items: end;
}

.swiper-btns {
  display: flex;
  gap: 12px;
  user-select: none;
}

.swiper-button-next,
.swiper-button-prev {
  width: 80px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgb(201, 201, 201);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #dadada;
}

.swiper-button-next:active,
.swiper-button-prev:active {
  opacity: 0.6;
}

.swiper-button-disabled img {
  opacity: 0.4;
}

.service-item {
  height: 600px;
  position: relative;
  display: block;
}

.service-item::after {
  content: "";
  width: 100%;
  height: 150px;
  background: linear-gradient(
    180deg,
    rgba(9, 10, 11, 0) 0.828%,
    rgb(24, 25, 26) 99.17%
  );
  position: absolute;
  left: 0;
  bottom: 0;
}

.service-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item__content {
  position: absolute;
  left: 25px;
  bottom: 25px;
  right: 25px;
  z-index: 2;
}

.service-item__title {
  color: #fff;
  text-transform: uppercase;
  font-size: 26px;
}

.service-item__text {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-item__text {
  visibility: visible;
  opacity: 1;
  max-height: 300px;
}

.service-slider .swiper-slide {
  width: 448px;
}

.footer {
  position: relative;
  overflow: hidden;
}

.footer .container {
  z-index: 3;
  position: relative;
}

.footer__top {
  position: relative;
  background-image: url(../img/header-img-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 96px 0 95px;
}

.footer__top-car {
  background-image: url(../img/footer-car.png);
}

.footer__top-wr {
  position: relative;
  z-index: 2;
}

.footer__top::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(24 25 26), rgba(24, 25, 26, 0) 70.625%),
    linear-gradient(
      42.48deg,
      rgb(24 25 26 / 53%) 72.843%,
      rgba(24, 25, 26, 0) 161.33%
    );
}

.footer__title {
  font-family: var(--amstelvar);
  font-size: 80px;
  max-width: 548px;
  width: 100%;
  margin-bottom: 56px;
}

.footer__text {
  max-width: 350px;
  width: 100%;
  margin-bottom: 110px;
  font-size: 14px;
  line-height: 1.4;
}

.footer__btns {
  width: 440px;
}

.footer__btns .btn-white {
  width: 100%;
  margin-bottom: 16px;
}

.footer__cols {
  display: flex;
  gap: 16px;
}

.footer__cols .btn-message {
  border-color: #fff;
  color: #fff;
}

.footer__middle {
  padding: 112px 0 72px;
}

.footer__middle-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(239 242 247 / 20%);
  padding-bottom: 72px;
  margin-bottom: 72px;
}

.footer__menu {
  width: 400px;
}
.footer__menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 64px;
}

.footer__car {
  display: flex;
  flex-direction: column;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.footer__car .footer__menu-link {
  text-transform: uppercase;
}

.footer__car .btn {
  width: 100%;
  max-width: 165px;
}

.footer__menu-item {
  text-align: right;
}
.footer__menu-link {
  font-size: 14px;
}

.footer .header-block__transparent-logo {
  top: -63px;
  opacity: 0.3;
}

.footer__middle-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 56px;
}

.footer__middle-inf {
  display: flex;
  gap: 56px;
}

.footer__middle-inf-links {
  display: flex;
  gap: 24px;
}

.footer__middle-inf-link {
  color: #75787b;
  font-size: 14px;
}

.footer__pr {
  font-size: 14px;
}

.footer .social__item {
  color: var(--color-gold);
}

.header-block__sub {
  height: 800px;
}

.section-two {
  position: relative;
  padding: 96px 0;
}

.section-two__cols {
  display: flex;
  gap: 72px;
  justify-content: space-between;
  align-items: center;
}

.section-two__cols .section-two__col:nth-child(1) {
  width: 100%;
}

.section-two__col-small {
  flex: 0 0 400px;
  height: 730px;
}

.section-two__title {
  font-family: var(--amstelvar);
  margin-bottom: 72px;
}
.section-two__h2 {
  color: var(--color-gold);
  font-size: 80px;
  line-height: 80px;
}

.section-two__h2-sub {
  color: #8d7d5d;
  font-size: 80px;
  line-height: 80px;
}
.section-two__sub-cols {
  display: flex;
  gap: 72px;
}

.section-two__sub-col {
  width: 50%;
}

.section-two__sub-img {
  margin-bottom: 52px;
  width: 100%;
}

.section-two__sub-text {
  font-size: 17px;
  line-height: 140%;
  color: #cfd2d8;
}

.section-two__col-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
}

.section-white {
  background-color: #fff;
}

.section-2 .section-two__cols {
  align-items: start;
}

.section-2__small {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.section-2__small-title {
  font-size: 52px;
  line-height: 110%;
  margin-bottom: 48px;
  font-family: var(--amstelvar);
  color: var(--color-black);
}

.section-2__small-text {
  color: #2e2f30;
  font-size: 17px;
  line-height: 140%;
}

.section-4 .section-two__cols {
  flex-direction: row-reverse;
  align-items: end;
}

.section-4 .section-two__sub-img {
  margin-bottom: 0;
  display: flex;
}

.header-block__page {
  height: 740px;
  overflow: hidden;
}

.header-block__page .header-block__transparent-logo {
  opacity: 1;
  z-index: 1;
}

.header-block__page .header-block__transparent-logo {
  right: 10%;
}

.error-text {
  color: var(--color-red);
  font-size: 12px;
  margin-top: 8px;
}

.header-block__page {
  display: flex;
  align-items: end;
}

.header-block__page .header-block__offer {
  display: flex;
  align-items: end;
  width: 100%;
  padding-bottom: 56px;
}

.section-page-hotel {
  padding: 0;
  padding-top: 56px;
}

.section-page-hotel .section-block-hotel__wr {
  margin-bottom: 56px;
}

.section-page-p-0 {
  padding: 0 !important;
}

.section-block-hotel__col-3 .section-block-hotel__tab-item {
  width: calc(100% / 3);
  height: 736px;
}

.header-block-detailed {
  position: relative;
  padding-top: 125px;
  padding-bottom: 40px;
}

.header-block-detailed__title {
  font-size: 80px;
  color: var(--color-gold);
  font-family: var(--amstelvar);
}

.header-block-detailed__sub-title {
  font-size: 15px;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  text-transform: uppercase;
}

.header-block-detailed__sub-title-col:nth-last-child(1) {
  color: #75787b;
}

.section-gallery__wr {
  display: grid;
  grid-template-columns: 490px 1fr 1fr 1fr;
  grid-auto-rows: auto;
  gap: 4px;
  padding-bottom: 4px;
}

.section-gallery__item {
  position: relative;
  display: none;
  cursor: pointer;
  height: 345px;
}

.section-gallery__item:nth-child(1) {
  height: 695px;
}

.section-gallery__item:nth-child(-n + 5) {
  display: block;
}

.item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.section-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-gallery__item-count {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-transform: uppercase;
  font-family: var(--raleway);
}

.page-content {
  background-color: #fff;
  color: var(--color-black);
}

.page-content a {
  color: inherit;
}

.page-content__header {
  padding-top: 40px;
  color: #959696;
  border: 1px solid #96959557;
}

.page-content__tabs {
  display: flex;
  gap: 40px;
}

.page-content__tab.active {
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.page-content__tab {
  text-transform: uppercase;
  user-select: none;
  position: relative;
  cursor: pointer;
  padding-bottom: 24px;
}

.page-content__content {
  padding-top: 72px;
  padding-bottom: 140px;
}

.page-content__row {
  display: flex;
  gap: 135px;
}

.page-content__col:nth-child(1) {
  width: 50%;
}

.page-content__col:nth-child(2) {
  width: 50%;
}

.content {
  font-size: 17px;
}

.content img {
  object-fit: contain;
  object-position: center;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-right: 25px;
  max-width: calc(100% - 24px);
  vertical-align: middle;
}

.content h2 {
  font-size: 52px;
  font-family: var(--amstelvar);
  margin-bottom: 56px;
}

.content p {
  margin-bottom: 14px;
  line-height: 140%;
}

.content h3 {
  font-size: 26px;
  margin-top: 50px;
  margin-bottom: 14px;
  font-weight: 500;
}

.content ul {
  padding-left: 20px;
}

.content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
}

.block-armor {
  padding: 40px 32px;
  border: 1px solid var(--color-black);
}

.block-armor__title {
  font-size: 26px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 36px;
  line-height: 120%;
}

.block-armor__btns {
  display: flex;
  gap: 16px;
}

.block-armor__btn {
  width: 50%;
}

.page-slider .swiper-button-prev,
.page-slider .swiper-button-next {
  border: 1px solid #4c4e50;
}

.page-slider .swiper-button-prev:hover,
.page-slider .swiper-button-next:hover {
  background-color: #333436;
}

.page-slider .section-title {
  color: #ffffff;
}

.page-slider .swiper-slide {
  width: 920px;
}

.default-slider {
  position: relative;
  overflow: hidden;
}

.default-slider__img-wr {
  width: 100%;
  height: 480px;
  margin-bottom: 15px;
  display: block;
}

.default-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.default-slider__name {
  text-align: center;
}

.swiper-default-button-next,
.swiper-default-button-prev {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 220px;
  z-index: 2;
}

.swiper-default-button-next img,
.swiper-default-button-prev img {
  width: 13px;
  height: 13px;
}
.swiper-default-button-next {
  right: 20px;
}

.swiper-default-button-prev {
  left: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: 60px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #959696;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

.page-content__col .block-armor {
  display: block;
}

.block-armor {
  display: none;
}

.location-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-block__item {
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e6e7;
}

.location-block__name {
  font-size: 15px;
  text-transform: uppercase;
  color: #959696;
  margin-bottom: 16px;
}

.location-block__text {
  font-size: 17px;
  font-style: normal;
  line-height: 140%;
}

.page-content__map {
  height: 635px;
}

.page-content__map iframe {
  width: 100%;
  height: 100%;
}

.section-service-black .swiper-button-prev,
.section-service-black .swiper-button-next {
  border: 1px solid #4c4e50;
}

.section-service-black .swiper-button-prev:hover,
.section-service-black .swiper-button-next:hover {
  background-color: #333436;
}

.section-service-black .section-title {
  color: #fff;
}

.section-top-img {
  height: 630px;
  width: 100%;
}

.section-top-img__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal {
  gap: 48px;
}

.page-contact__row {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page-contact__name {
  color: #707171;
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-contact__inf {
  display: block;
  font-style: normal;
  font-size: 40px;
  color: var(--color-black);
  font-family: var(--raleway);
  font-variant-numeric: lining-nums proportional-nums;
}

.page-contact {
  background-color: #fff;
  color: var(--color-black);
  position: relative;
}

.page-contact__row {
  padding: 72px 0;
}

.page-contact .page-content__map {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
}

.collapse-list {
  margin-bottom: 24px;
}

.collapse-item {
  border-bottom: 1px solid #e6e6e7;
  margin-bottom: 16px;
}

.collapse-item._active {
  border-color: #2e2f30;
}

.collapse-item__header {
  padding: 20px 36px 20px 0;
  position: relative;
  cursor: pointer;
}

.collapse-item__header::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: calc(50% - 10px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/icon/arrow-bottom.svg");
}

.collapse-item._active .collapse-item__header::after {
  transform: rotate(-180deg);
}

.collapse-item__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.collapse-item__content {
  padding-bottom: 24px;
  display: none;
}

.collapse-item._active .collapse-item__content {
  display: block;
}

.collapse-item__content > *:last-child {
  margin-bottom: 0;
}

.header-block__page-404 {
  overflow: hidden;
  height: auto;
}

.page-404 {
  position: relative;
  z-index: 9;
  padding-top: 372px;
  padding-bottom: 300px;
}

.header-block__page-404 .header-block__transparent-logo {
  opacity: 0.4;
}

.page-404__row {
  text-align: center;
}

.page-404__title {
  font-size: 52px;
  font-family: var(--amstelvar);
  margin-bottom: 32px;
}

.page-404__desc {
  font-size: 14px;
  margin-bottom: 64px;
}

.page-404__btn {
  display: flex;
  justify-content: center;
}

.page-404__btn .btn {
  max-width: 460px;
  width: 100%;
  font-size: 16px;
  height: 56px;
  cursor: pointer;
}

.header-block__btn-width .btn-white {
  max-width: 306px;
  width: 100%;
}

.section-car-1 {
  background-image: url(../img/section-car-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 96px 0;
  height: 1000px;
  position: relative;
}

.section-car-1 .section-block-hotel__wr {
  position: relative;
  z-index: 2;
}

.section-car-1::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
}

.block-equipment {
  display: flex;
}

.block-equipment__item {
  width: calc(100% / 3);
  height: 800px;
  position: relative;
}

.block-equipment__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-equipmen__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 24px;
  background: linear-gradient(180deg, rgba(9, 10, 11, 0) 0.09%, #18191a 99.91%);
}

.block-equipment__title {
  font-size: 26px;
  margin-bottom: 14px;
  color: #fff;
  text-transform: uppercase;
}

.block-equipment__text {
  font-size: 14px;
  max-width: 80%;
  width: 100%;
  line-height: 140%;
}

.section-white {
  background-color: #fff;
}

.section-white .section-title {
  color: var(--color-black);
}

.block-step {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 72px;
}

.block-step__num {
  font-size: 128px;
  color: var(--color-gold);
  font-family: var(--amstelvar);
  line-height: 120%;
  margin-bottom: 15px;
}

.block-step__name {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 12px;
}

.block-step__desc {
  color: #404147;
  font-size: 14px;
  line-height: 140%;
}

.block-step__desc a {
  color: var(--color-gold);
}

.section-gray {
  background-color: #f0f0f0;
}

.car-option-header {
  padding-top: 72px;
}

.car-option-header__title-wr {
  display: flex;
  gap: 32px;
  padding-bottom: 24px;
}

.car-option-header__title {
  font-size: 52px;
  color: #959696;
  line-height: 110%;
  font-family: var(--amstelvar);
  cursor: pointer;
  user-select: none;
}

.car-option-header__title.active {
  color: var(--color-black);
}

.car-option-item-header__tabs {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 3px;
}

.car-option-item-header__tab,
.car-option-item-header__name {
  text-transform: uppercase;
  user-select: none;
  position: relative;
  padding-bottom: 24px;
  color: #959696;
  user-select: none;
}

.car-option-item-header__tab {
  cursor: pointer;
}

.car-option-item-header__tab.active {
  color: var(--color-black);
  border-bottom: 2px solid var(--color-black);
}

.car-option-item-header__name {
  color: var(--color-black);
}

.car-option-item__img {
  width: 100%;
  height: auto;
  display: flex;
}

.car-slider {
  background-color: #fff;
}

.car-slider__pic {
  height: 400px;
  width: 100%;
  display: block;
}

.car-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-slider__content {
  padding: 24px 15px;
}

.car-slider__header {
  display: flex;
  font-size: 26px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 16px;
  gap: 10px;
}

.car-slider__num {
  color: #959696;
}

.car-slider__desc {
  font-size: 14px;
  color: var(--color-black);
  line-height: 140%;
}

.car-option-item__slider {
  display: none;
}

.car-option-item__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #00000073;
}

.car-option-item-header__line {
  border-bottom: 1px solid #96959557;
}

.car-option-item-header__line .car-option-item-header__tabs {
  padding-bottom: 0;
}

.car-slider-2 {
  position: relative;
}

.car-slider-2__item {
  height: 600px;
  display: flex;
}

.car-slider-2__pic,
.car-slider-2__content {
  width: 50%;
}

.car-slider-2__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-slider-2__content {
  padding: 64px 48px;
}

.car-slider-2__name {
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 32px;
  color: var(--color-black);
}

.car-slider-2__desc {
  color: #525252;
  font-size: 17px;
}

.car-slider-2__pic {
  display: flex;
}

.car-slider-2 .swiper-pagination {
  gap: 12px;
  position: relative;
  bottom: 0;
  width: max-content;
}

.car-slider-2 .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  background-color: #c9c9c9;
  border-radius: 0;
}

.car-slider-2 .swiper-pagination-bullet-active {
  background-color: var(--color-black);
}

.swiper-wripper-option {
  display: flex;
  align-items: center;
  position: absolute;
  z-index: 2;
  width: 50%;
  justify-content: space-between;
  padding: 0 48px;
  right: 0;
  bottom: 64px;
}

.car-option-item {
  padding-bottom: 40px;
  background-color: #f0f0f0;
}

.car-option-item__dot {
  width: 40px;
  height: 40px;
  background-color: #00000075;
  border-radius: 50%;
  position: absolute;
  z-index: 2;
  cursor: pointer;
  user-select: none;
}

.car-option-item__dot::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: var(--color-gold);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.2s ease-in-out;
}

.car-option-item__dot-active {
  z-index: 3;
}

.car-option-item__dot-active::after {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 4px solid var(--color-gold);
}

.car-option-item__dot-content {
  position: relative;
  width: 250px;
  background-color: black;
  font-size: 12px;
  padding: 8px 6px;
  top: 50px;
  left: -106px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

.car-option-item__container {
  position: relative;
}

.car-option-item__dot-content::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
}

.car-option-item__dot-active .car-option-item__dot-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1700px) {
  .header-block__transparent-logo,
  .header-block__page .header-block__transparent-logo {
    right: 0;
  }
}

@media screen and (max-width: 1500px) {
  .header-block__transparent-logo,
  .header-block__page .header-block__transparent-logo {
    right: -100px;
  }
}

@media screen and (max-width: 1400px) {
  .section-block-hotel__tab-item-main {
    height: 620px;
    width: 100%;
  }

  .section-block-hotel__tab-item {
    height: 480px;
  }

  .section-block-hotel__col-3 .section-block-hotel__tab-item {
    width: calc(100% / 3);
    height: 636px;
  }

  .section-block-hotel__tab-item-content {
    font-size: 24px;
  }

  .section-gallery__item {
    height: 245px;
  }

  .section-gallery__item:nth-child(1) {
    height: 495px;
  }

  .section-top-img {
    height: 530px;
  }

  .header-block__page {
    height: 640px;
  }

  .header-block__video {
    width: auto;
    height: 100%;
  }

  .block-step {
    gap: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .header__col {
    gap: 28px;
  }

  .section-two__col-small {
    flex: 0 0 300px;
    height: 630px;
  }

  .section-2__small {
    flex: 0 0 300px;
  }

  .section-two__cols,
  .section-two__sub-cols {
    gap: 32px;
  }

  .section-2__small-title {
    font-size: 40px;
  }

  .section-gallery__wr {
    grid-template-columns: 290px 1fr 1fr 1fr;
  }

  .section-gallery__item {
    height: 145px;
  }

  .section-gallery__item:nth-child(1) {
    height: 295px;
  }

  .section-car-1 {
    height: 800px;
  }

  .block-equipment__item {
    height: 636px;
  }

  .car-option-item__dot::after {
    width: 8px;
    height: 8px;
  }

  .car-option-item__dot {
    width: 30px;
    height: 30px;
  }

  .car-option-item__dot-active::after {
    border: 2px solid var(--color-gold);
  }

  .car-option-item__dot-content {
    top: 40px;
    left: -90px;
    font-size: 10px;
    width: 210px;
  }
}

@media screen and (max-width: 992px) {
  .container {
    padding: 0 15px;
  }

  .header__col {
    gap: 32px;
  }

  .btn-burger {
    display: flex;
  }

  .menu {
    display: none;
  }

  .header__col .btn {
    display: none;
  }

  .header {
    padding: 3px 0;
  }

  .header-block__offer-title {
    font-size: 76px;
  }

  .header-block__transparent-logo {
    right: -100px;
    width: 800px;
    height: auto;
  }

  .header-block {
    height: 640px;
  }

  .header-block__offer {
    padding-top: 122px;
    padding-bottom: 56px;
  }

  .section {
    padding: 56px 0;
  }

  .section-block-hotel__tab-item-main {
    height: 520px;
  }

  .section-block-hotel__tab-item {
    height: 380px;
  }

  section__link {
    margin-top: 32px;
  }

  .footer__top {
    padding: 55px 0;
  }

  .footer__middle {
    padding: 56px 0;
  }

  .footer__middle-cols {
    flex-direction: column;
    align-items: start;
    gap: 56px;
  }

  .footer__menu-item {
    text-align: left;
  }

  .footer__middle-cols {
    padding-bottom: 56px;
    margin-bottom: 56px;
  }

  .footer__middle-footer {
    flex-direction: column;
    align-items: start;
  }

  .header-block__sub {
    height: 640px;
  }

  .section-two {
    padding: 56px 0;
  }

  .section-two__cols {
    flex-direction: column;
    align-items: start;
    gap: 56px;
  }

  .section-two__h2,
  .section-two__h2-sub {
    font-size: 60px;
    line-height: 60px;
  }

  .section-2__small {
    flex: auto;
  }

  .section-2__small {
    flex-direction: column-reverse;
  }

  .section-4 .section-two__cols {
    flex-direction: column-reverse;
  }

  .header-block__page {
    height: 320px;
  }

  .section-block-hotel__col-3 .section-block-hotel__tab-item {
    width: calc(100% / 2);
    height: 536px;
  }

  .header-block-detailed {
    padding-bottom: 32px;
    padding-top: 88px;
  }

  .header-block-detailed__title {
    font-size: 50px;
  }

  .section-gallery__wr {
    display: flex;
    width: max-content;
  }

  .section-gallery__item,
  .section-gallery__item:nth-child(1) {
    width: 300px;
    height: 200px;
  }

  .section-gallery {
    overflow: auto;
  }

  .page-content__row {
    flex-direction: column;
  }

  .page-content__col {
    width: 100% !important;
  }

  .page-content__content {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .page-content__row {
    gap: 56px;
  }

  .page-slider .swiper-slide {
    width: 290px;
  }

  .page-slider .service-item {
    height: 230px;
  }

  .page-content__col .block-armor {
    display: none;
  }

  .block-armor {
    display: block;
    margin-top: 56px;
  }

  .section-block-hotel__tab-item-text {
    display: none;
  }

  .section-top-img {
    height: 430px;
  }

  .page-contact .page-content__map {
    position: initial !important;
    height: 360px !important;
    width: 100% !important;
  }

  .page-contact .page-content__row {
    gap: 0;
  }

  .page-contact__row {
    padding: 56px 0;
    gap: 32px;
  }

  .page-contact .block-armor {
    display: block;
  }

  .header-block__page .header-block__offer {
    padding-bottom: 32px;
  }

  .section-car-1 {
    height: 700px;
  }

  .block-equipment__item {
    height: 500px;
  }

  .block-equipment__title {
    font-size: 20px;
  }

  .block-step {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 70px;
  }

  .car-slider-2 .swiper-pagination {
    display: none;
  }

  .car-slider-2__item {
    flex-direction: column;
    height: auto;
  }

  .car-slider-2__pic,
  .car-slider-2__content {
    width: 100%;
  }

  .car-slider-2__content {
    padding: 24px 15px;
  }

  .swiper-wripper-option {
    position: relative;
    width: auto;
    bottom: 0;
    padding: 0 15px 24px 15px;
  }

  .car-slider-2__pic {
    height: 500px;
  }

  .car-option-item__img {
    display: none;
  }

  .car-option-item__dots {
    display: none;
  }

  .car-option-item__slider {
    display: block;
  }

  .car-slider .swiper-btns {
    display: flex;
    padding-left: 15px;
  }

  .car-option-item__container {
    margin: 0 -15px;
  }

  .car-option-item {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 770px) {
  .header-block__offer-title {
    font-size: 66px;
  }

  .header-block__transparent-logo {
    width: 600px;
  }

  .section-title {
    font-size: 36px;
    line-height: normal;
    line-height: 38px;
  }

  .link {
    font-size: 12px;
  }

  .section-block-hotel__tab {
    gap: 16px;
  }

  .section-block-hotel__tabs {
    gap: 24px 16px;
  }

  .section-block-hotel__wr {
    margin-bottom: 32px;
  }

  .section-block-hotel__tab-item {
    width: 100%;
  }

  .swiper-btns {
    display: none;
  }

  .service-item__text {
    display: none;
  }

  .footer__logo-img {
    width: 100%;
  }

  .footer__menu-list {
    gap: 32px;
  }

  .footer__middle-inf {
    flex-direction: column-reverse;
    gap: 32px;
  }

  .footer__middle-inf-links {
    flex-direction: column;
  }

  .section-block-hotel__col-3 .section-block-hotel__tab-item {
    width: calc(100% / 2);
    height: 436px;
  }

  .page-content__header {
    padding-top: 32px;
  }

  .page-content__tabs {
    width: max-content;
  }

  .page-content__scroll {
    overflow: scroll;
  }

  .section-top-img {
    height: 330px;
  }

  .section-car-1 {
    height: 640px;
  }

  .block-equipment {
    display: block;
  }

  .block-equipment__item {
    width: 100%;
    height: 480px;
  }

  .block-equipmen__content {
    padding: 20px;
  }

  .car-option-item-header__scroll,
  .car-option-header__scroll {
    overflow: scroll;
  }

  .car-option-header__title {
    font-size: 36px;
  }

  .car-option-header__title-wr {
    font-size: 24px;
  }

  .car-option-item-header__tabs {
    display: block;
    width: max-content;
    padding-top: 0;
  }

  .car-option-item-header__tab,
  .car-option-item-header__name {
    display: inline-block;
    margin-right: 24px;
  }

  .car-option-header {
    padding-top: 56px;
  }

  .car-option-header__title-wr {
    padding-bottom: 40px;
  }

  .page-content__row {
    gap: 0;
  }

  .car-slider-2__pic {
    height: 400px;
  }

  .car-option-item-header__line {
    padding-top: 56px;
  }

  .car-slider-2 .swiper-btns {
    display: flex;
  }

  .car-slider-2__desc {
    font-size: 14px;
  }

  .car-slider-2__name {
    margin-bottom: 14px;
  }
}

@media screen and (max-width: 576px) {
  .header-block__offer-title {
    font-size: 40px;
  }

  .header-block__offer-row {
    gap: 32px;
  }

  .header-block__btn {
    padding-top: 160px;
  }

  .header-block__btn .btn-white {
    width: 100%;
  }

  .social {
    justify-content: space-between;
  }

  .header-block__transparent-logo,
  .header-block__page .header-block__transparent-logo {
    right: -300px;
    width: 553px;
  }

  .modal-sidebar {
    padding: 56px 15px 15px 15px;
  }

  .modal-sidebar__title {
    font-size: 36px;
    line-height: 38px;
  }

  .modal-sidebar__close {
    top: 15px;
    right: 15px;
  }

  .modal-sidebar__bottom {
    margin-top: 56px;
  }

  .modal-sidebar__doc {
    text-align: center;
  }

  .modal-sidebar__message-btns {
    flex-direction: column;
  }

  .btn-message {
    width: 100%;
  }

  .section-block-hotel__tab-item {
    height: 290px;
  }

  .section-block-hotel__tab-item-main {
    height: 290px;
  }

  .section-block-hotel__tab-item-content {
    font-size: 20px;
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .section-block-hotel__tab-item-title {
    font-size: 20px;
  }

  .service-item {
    height: 400px;
  }

  .service-slider .swiper-slide {
    width: 300px;
  }

  .service-item__title {
    font-size: 20px;
  }

  .service-item__content {
    left: 15px;
    bottom: 15px;
    right: 15px;
  }

  .footer__title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .footer__text {
    margin-bottom: 156px;
  }

  .footer__btns {
    width: 100%;
  }

  .footer__cols {
    flex-direction: column;
  }

  .footer .social {
    width: 100%;
  }

  .section-two__h2,
  .section-two__h2-sub {
    font-size: 36px;
    line-height: 36px;
  }

  .section-two__title {
    margin-bottom: 32px;
    padding: 0 15px;
  }

  .section-two__sub-cols {
    flex-direction: column;
    gap: 0;
  }

  .section-two__sub-img {
    width: 100%;
    margin-bottom: 0;
    display: flex;
  }

  .section-two__sub-col {
    width: 100%;
  }

  .section-two__sub-text {
    padding-top: 56px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-two__col-small {
    width: 100%;
    flex: auto;
    height: auto;
  }

  .section-two__cols {
    margin: 0 -15px;
  }

  .section-two {
    padding-bottom: 0;
  }

  .section-2 {
    padding: 0;
  }

  .section-2__small-content {
    padding: 0 15px;
  }

  .section-2__small-title {
    font-size: 36px;
    margin-bottom: 32px;
  }

  .section-2__small .section-two__col-img {
    margin-bottom: 0;
  }

  .section-2__small {
    gap: 52px;
  }

  .section-block-hotel__col-3 .section-block-hotel__tab-item {
    width: calc(100% / 1);
    height: 480px;
  }

  .header-block-detailed__title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .content h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .block-armor__title {
    font-size: 22px;
  }

  .block-armor {
    padding: 40px 15px;
  }

  .block-armor__title {
    margin-bottom: 32px;
  }

  .block-armor__btns {
    flex-direction: column;
  }

  .link__top {
    padding-top: 32px;
  }

  .swiper-default-button-next,
  .swiper-default-button-prev {
    display: none;
  }

  .default-slider {
    margin: 0 -15px;
  }

  .default-slider__img-wr {
    height: 270px;
  }

  .page-content__map {
    height: 480px;
    margin: 0 -15px;
  }

  .section-top-img {
    height: 320px;
  }

  .page-contact__inf {
    font-size: 28px;
  }

  .page-contact .page-content__map {
    margin: 0 -15px;
    width: 109% !important;
  }

  .page-404 {
    padding-top: 200px;
    padding-bottom: 0;
  }

  .page-404__title {
    font-size: 40px;
  }

  .header-block__btn-width .btn-white {
    min-width: 100%;
  }

  .footer__car {
    align-items: start;
  }

  .footer__menu {
    width: 100%;
  }

  .block-step {
    grid-template-columns: repeat(1, 1fr);
  }

  .block-step__num {
    font-size: 80px;
  }
}

@media screen and (max-width: 400px) {
  .footer__car .btn {
    max-width: 100%;
    font-size: 16px;
    height: 56px;
  }

  .section__wr {
    margin-bottom: 32px;
  }
}
