@charset "UTF-8";
/* Указываем box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul[class],
ol[class] {
  padding: 0;
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul[class],
ol[class] {
  list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Упрощаем работу с изображениями */
img {
  max-width: 100%;
  display: block;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
  margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
  font: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "gothampro_light";
  src: url(../fonts/GothamPro/gothampro_light.ttf);
}
@font-face {
  font-family: "gothampro_regular";
  src: url(../fonts/GothamPro/gothampro.ttf);
}
@font-face {
  font-family: "gothampro_regular_italic";
  src: url(../fonts/GothamPro/gothampro_italic.ttf);
}
@font-face {
  font-family: "gothampro_medium";
  src: url(../fonts/GothamPro/gothampro_medium.ttf);
}
@font-face {
  font-family: "gothampro_bold";
  src: url(../fonts/GothamPro/gothampro_bold.ttf);
}
@font-face {
  font-family: "gothampro_black";
  src: url(../fonts/GothamPro/gothampro_black.ttf);
}
a {
  text-decoration: none;
}

body {
  background-color: #003930;
  color: white;
}

.flex {
  display: flex;
}

.aic {
  align-items: center;
}

.jcsb {
  justify-content: space-between;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  color: white;
  background-color: rgba(0, 57, 48, 0.5647058824);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-family: "gothampro_regular";
  height: 70px;
  z-index: 100;
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__container {
    font-size: calc(12px + 11.9 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .header__container {
    font-size: calc(12px + 7 * 100vw / 1440);
  }
}
.header__container .navLinks {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__container .navLink {
  color: white;
}

.header__container .logo-wrapper {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 101;
}
.header__container .logo-wrapper .logo {
  z-index: 101;
}

.header__container .languages {
  position: relative;
  width: 85px;
  max-width: 146px;
  height: 40px;
}
.header__container .languages .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  transition: 300ms ease;
  cursor: pointer;
  height: 30px;
  overflow: hidden;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.header__container .languages .language:nth-child(1) {
  display: flex;
}

.header__container .languages_active .wrapper {
  height: auto !important;
  background: rgba(0, 0, 0, 0.26);
}

.header__container .languages_active .language {
  display: flex;
}

.header__container .language {
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 18px;
  color: white;
}

.header__container .language_active {
  order: -1;
}

.language__arrow {
  width: 15px;
  height: 10px;
}

.header__container .number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  color: white;
}

.header-container__left {
  width: 40%;
}
@media (max-width: 1300px) {
  .header-container__left {
    width: 45%;
  }
}

.header-container__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 40%;
  position: relative;
}
@media (max-width: 1300px) {
  .header-container__right {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .header-container__right .number {
    font-size: calc(12px + 10.2 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .header-container__right .number {
    font-size: calc(12px + 6 * 100vw / 1440);
  }
}
@media (max-width: 1300px) {
  .header-container__right .number {
    font-size: 16px;
  }
}
@media (max-width: 1055px) {
  .header-container__right .number {
    font-size: 16px;
  }
}
.header-container__right .header__bookNowBtn {
  padding: 4px 15px;
  border-radius: 20px;
  border: none;
  color: #003930;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .header-container__right .header__bookNowBtn {
    font-size: calc(12px + 6.8 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .header-container__right .header__bookNowBtn {
    font-size: calc(12px + 4 * 100vw / 1440);
  }
}

.burger {
  height: 30px;
  width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.burger__line {
  height: 4px;
  width: 100%;
  background-color: white;
  position: absolute;
  transition: 300ms ease;
}

.burger__line:nth-child(1) {
  transform: translateY(-10px);
}

.burger__line:nth-child(3) {
  transform: translateY(10px);
}

.burger_active .burger__line:nth-child(1) {
  transform: rotate(45deg);
}
.burger_active .burger__line:nth-child(2) {
  opacity: 0;
}
.burger_active .burger__line:nth-child(3) {
  transform: rotate(-45deg);
}

.header-mobile__modal_active {
  transition: 300ms ease;
  display: flex !important;
  left: 0% !important;
}

.header__mobile {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header-mobile__modal {
  padding: 20px;
  background-color: #252525;
  width: 100%;
  max-width: 271px;
  position: absolute;
  z-index: 3;
  top: 100%;
  left: -100%;
  transition: 300ms ease;
}
@media screen and (max-width: 767px) {
  .header-mobile__modal {
    font-size: calc(14px + 6.8 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .header-mobile__modal {
    font-size: calc(14px + 4 * 100vw / 1440);
  }
}

.header__mobile_link {
  color: white;
}
@media screen and (max-width: 767px) {
  .header__mobile_link {
    font-size: calc(19px + 3.4 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .header__mobile_link {
    font-size: calc(19px + 2 * 100vw / 1440);
  }
}

.header-mobile__navLinks {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-mobile__navLink {
  color: white;
  border-bottom: #dfdfdf 1px solid;
  padding-bottom: 5px;
  font-family: "gothampro_regular";
}

.header-mobile-modal__number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
}

.header-mobile-modal-number__text {
  color: rgba(255, 255, 255, 0.6);
}

.header-mobile-modal__number .number {
  display: flex;
  color: white;
  align-items: center;
  gap: 10px;
  font-family: "gothampro_regular";
  font-size: 16px;
}

.header-mobile-modal__number .number__img {
  width: 24px;
  height: 24px;
}

.socialMediaLinks {
  margin-top: 8px;
}

.socialMediaLinks__text {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  font-size: 16px;
}

.socialMediaLinks__pictures {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: #dfdfdf 1px solid;
}

.socialMediaLink {
  width: 24px;
  height: 24px;
}

.header-mobile-modal__languages {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "gothampro_regular";
  font-size: 18px;
  margin-top: 32px;
}

.header-mobile-modal__language {
  display: flex;
  gap: 4px;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  color: white;
}
.header-mobile-modal__language img {
  width: 24px;
  height: 24px;
}

.header-mobile-modal__language_active {
  border-radius: 3px;
  border: solid #503AE1 1px;
}

@media only screen and (max-width: 1024px) {
  .header__container {
    display: none;
  }
  .header__mobile {
    display: flex;
  }
}
.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/bg.jpeg) top center;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: "gothampro_regular";
}

.hero__container {
  padding-top: 80px;
  padding-bottom: 65px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.hero-container__text {
  color: white;
  max-width: 600px;
}

.hero__title {
  margin: 0 auto;
  margin-bottom: 10px;
  line-height: 70px;
}
@media screen and (max-width: 767px) {
  .hero__title {
    font-size: calc(28px + 34 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .hero__title {
    font-size: calc(28px + 20 * 100vw / 1440);
  }
}

@media screen and (max-width: 767px) {
  .hero__undertitle {
    font-size: calc(18px + 6.8 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .hero__undertitle {
    font-size: calc(18px + 4 * 100vw / 1440);
  }
}

.hero-container__bookingWrapper {
  margin-top: 40px;
  width: 100%;
  height: 200px;
  background: rgba(0, 0, 0, 0.35);
}

.rooms {
  background-image: url(../img/roomsSectionBG.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 957px;
  padding-top: 155px;
  font-family: "gothampro_regular";
}

.rooms__title {
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .rooms__title {
    font-size: calc(30px + 17 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .rooms__title {
    font-size: calc(30px + 10 * 100vw / 1440);
  }
}

.rooms__categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 10px;
  max-width: 543px;
  margin: 30px auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  background-blend-mode: normal, multiply;
  -webkit-backdrop-filter: blur(6.5px);
          backdrop-filter: blur(6.5px);
  border-radius: 10px;
}
@media (max-width: 1024px) {
  .rooms__categories {
    display: none;
  }
}

.rooms__category {
  font-size: 17px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.rooms__category_active {
  background: linear-gradient(100.85deg, #712EFF -6.27%, #8559E2 52.36%);
}

.rooms-slider {
  display: flex;
}
.rooms-slider .swiper-button-prev {
  transform: rotate(180deg);
  top: 83px;
  width: 50px;
  height: 50px;
  left: -20px;
}
@media (max-width: 1024px) {
  .rooms-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    top: 134px;
    left: -16px;
  }
}
.rooms-slider .swiper-button-next {
  top: 83px;
  width: 50px;
  height: 50px;
  right: -20px;
}
@media (max-width: 1024px) {
  .rooms-slider .swiper-button-next {
    width: 45px;
    height: 45px;
    top: 134px;
    right: -16px;
  }
}

.swiper-slide {
  max-height: 490px;
}

.room {
  height: 490px;
  width: 100%;
}

.room__inner {
  width: 100%;
  height: 100%;
  transition: transform 1s;
  transform-style: preserve-3d;
  position: relative;
}

.room__inner.isFlipped {
  transform: rotateY(180deg);
}

.room__face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  border-radius: 10px;
}

.room__face_front-infoAndMoreInfoBtn {
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.room__face_front-moreInfoBtn {
  border: none;
  color: #003930;
  background: white;
  font-family: "gothampro_medium";
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  padding: 10px;
  padding-top: 0;
  cursor: pointer;
  width: 50%;
}

.room__face_front {
  transition: all 300ms ease;
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}

.roomImgBackground {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  transition: 1s ease;
  cursor: pointer;
  z-index: 2;
}

.roomImgBackground_active {
  opacity: 1;
}

.roomImgBackgroundPaginationWrapper {
  z-index: 3;
  position: absolute;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  bottom: 146px;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  left: 50%;
  transform: translateX(-50%);
}

.roomImgBackgroundPagination {
  width: 10px !important;
  min-width: 10px !important;
  height: 10px !important;
  min-height: 10px !important;
  display: block !important;
  border: none;
  border-radius: 100%;
  background-color: #1F1F1F;
  transition: 1s ease;
  cursor: pointer;
}

.roomImgBackgroundPagination_active {
  background-color: white;
}

.room__face_front-right {
  padding: 15px 20px 12px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 100%;
}

.room__category {
  padding: 5px 8px;
  border-radius: 5px;
  font-size: 15px;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
  position: relative;
}

.rooms__categories_mobile {
  display: none;
  flex-direction: column;
  max-width: 151px;
  border-radius: 5px;
  border: 1px solid;
  border: 1px solid #712EFF;
  padding: 10px;
  position: relative;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 49px;
}
@media (max-width: 1024px) {
  .rooms__categories_mobile {
    display: flex;
  }
}

.rooms__category_mobile {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  text-align: center;
}

.rooms__category_mobile_text {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  text-transform: capitalize;
}

.rooms__category_mobile_text img {
  transition: 300ms ease;
}

.rooms__category_mobile_active {
  display: flex;
  order: -1;
}

.rooms__category_mobile_active img {
  transform: rotate(180deg);
}

.rooms__categories_mobile-chips {
  position: absolute;
  background-image: url(../img/chips.png);
  background-position: center;
  background-size: cover;
  bottom: -108px;
  gap: 5px;
  left: -3px;
  z-index: 3;
  width: 156px;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  transition: 300ms ease;
  transform: scale(0);
  transform-origin: top;
}
.rooms__categories_mobile-chips .rooms__category_mobile {
  display: flex;
}

.rooms__categories_mobile-chips_active {
  transform: scale(1);
  display: flex;
}

.room__category.luxe {
  background-color: #E9A756;
}

.room__category.standard {
  background-color: #503AE1;
}

.room__face_front-info {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  border-radius: 10px;
  padding: 15px 20px 14.5px 20px;
  z-index: 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  min-height: 101px;
}
@media (max-width: 768px) {
  .room__face_front-info {
    padding: 15px;
  }
}

.usn {
  pointer-events: none;
}

.room-name-price-wrapper {
  display: flex;
  justify-content: space-between;
}

.room-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.room-size {
  display: flex;
  align-items: center;
  gap: 5px;
}

.room-price {
  font-weight: 600;
}

.room__face_back {
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  transform: rotateY(180deg);
  position: absolute;
  opacity: 0;
  top: 0;
  padding: 20px 15px 12px 15px;
  z-index: -1;
  transition: all 300ms ease;
}
@media (max-width: 375px) {
  .room__face_back {
    padding: 10px 15px 12px 15px;
  }
}

.room__face_back_active {
  z-index: 5;
  opacity: 1;
}

.room__face_front_active {
  z-index: -1;
  opacity: 0;
}

.capacity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.room_close {
  cursor: pointer;
}

.roomServices {
  margin-top: 8px;
}

.roomServiceAndGrade {
  display: flex;
  justify-content: space-between;
}

.roomServiceAndGrade img {
  display: inline;
  margin-right: 10px;
}

.grade {
  display: flex;
  align-items: center;
}

.roomService {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.room__face_back-line {
  border: 1px solid #7B7B7B;
  width: 100%;
  margin: 10px 0px;
}

.room_facilities {
  font-weight: 600;
  font-size: 18px;
}

.room_facilities p {
  margin-bottom: 5px;
}

.room_facilitie {
  font-weight: 500;
  display: flex;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 8px;
}

.bookNow {
  margin-top: 15px;
  color: #003930;
  background: white;
  border-radius: 5px;
  border: none;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: "gothampro_medium";
}

.rooms-slider {
  position: relative;
}

.roomsSlider {
  width: 100%;
}

.mySwiper {
  min-width: 0;
  width: 100%;
  display: flex !important;
  flex-direction: row;
}
.mySwiper .swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  top: 83px !important;
  right: -20px !important;
}
.mySwiper .swiper-button-next img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .mySwiper .swiper-button-next {
    width: 36px !important;
    height: 36px !important;
    right: -15px !important;
  }
}
.mySwiper .swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  top: 83px !important;
  left: -20px !important;
  transform: rotate(180deg);
}
.mySwiper .swiper-button-prev img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .mySwiper .swiper-button-prev {
    width: 36px !important;
    height: 36px !important;
    left: -15px !important;
  }
}

.services {
  margin-top: 70px;
}

.services__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services__title {
  font-family: "gothampro_bold";
  line-height: 150%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .services__title {
    font-size: calc(30px + 27.2 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .services__title {
    font-size: calc(30px + 16 * 100vw / 1440);
  }
}

.services__title-line {
  width: 150px;
  height: 1px;
  background-color: #747474;
}

.services__items {
  display: flex;
  margin-top: 50px;
  row-gap: 50px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.services__FirstTwoItems {
  display: flex;
  width: 100%;
  justify-content: center;
  row-gap: 50px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  flex-wrap: wrap;
}

.services__item {
  display: flex;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), rgba(255, 255, 255, 0.2);
  box-shadow: 0px 1px 38px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 23px 20px;
  gap: 20px;
  max-width: 384px;
}
@media (max-width: 1024px) {
  .services__item {
    max-width: none;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 425px) {
  .services__item {
    min-height: 118px;
    gap: 0;
    justify-content: space-between;
  }
}

.services__item-img {
  width: 76px;
  height: 76px;
}
@media (max-width: 1024px) {
  .services__item-img {
    width: 60px;
    height: 60px;
  }
}
.services__item-img img {
  width: 76px;
  height: 76px;
}
@media (max-width: 1024px) {
  .services__item-img img {
    width: 60px !important;
    height: 60px;
  }
}

.services__item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .services__item-text {
    max-width: 215px;
  }
}
@media (max-width: 500px) {
  .services__item-text {
    text-align: center;
  }
}
@media (max-width: 455px) {
  .services__item-text {
    max-width: 150px;
  }
}

.services__item-title {
  font-family: "gothampro_medium";
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .services__item-title {
    font-size: calc(18px + 3.4 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .services__item-title {
    font-size: calc(18px + 2 * 100vw / 1440);
  }
}
@media (max-width: 500px) {
  .services__item-title {
    margin: 0 auto;
  }
}

.services__item-info {
  font-family: "gothampro_regular";
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.68);
  max-width: 252px;
}
@media screen and (max-width: 767px) {
  .services__item-info {
    font-size: calc(15px + 3.4 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .services__item-info {
    font-size: calc(15px + 2 * 100vw / 1440);
  }
}

.about {
  margin-top: 233px;
  position: relative;
  padding-bottom: 100px;
}

.about__bg {
  background: rgba(255, 255, 255, 0.1);
  max-width: 996px;
  width: 100%;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  height: 100%;
}

.about__container {
  padding-top: 30px;
}

.about__titleWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 854px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .about__titleWrapper {
    flex-direction: column;
  }
}

.about__titleMain {
  font-family: "gothampro_bold";
  line-height: 150%;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .about__titleMain {
    font-size: calc(30px + 17 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .about__titleMain {
    font-size: calc(30px + 10 * 100vw / 1440);
  }
}

.about__line {
  width: 91px;
  height: 1px;
  background-color: white;
}

.about__titleInfo {
  font-family: "gothampro_medium";
  font-size: 13px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.87);
  max-width: 344px;
}
@media (max-width: 1024px) {
  .about__titleInfo {
    display: none;
  }
}

.aboutItems__wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.aboutItem {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  justify-content: flex-end;
  height: 500px;
}
@media (max-width: 1024px) {
  .aboutItem {
    justify-content: center;
    min-height: 481px;
    align-items: flex-end;
  }
}

.aboutItem:nth-of-type(2n) {
  flex-direction: row-reverse;
}
.aboutItem:nth-of-type(2n) .aboutItem__img {
  justify-content: flex-end;
  left: auto;
  right: 30%;
  transform: translateX(30%);
}
@media (max-width: 1024px) {
  .aboutItem:nth-of-type(2n) .aboutItem__img {
    width: 100%;
    right: 50%;
    transform: translateX(50%);
  }
}
.aboutItem:nth-of-type(2n) .aboutItem__textWrapper__slogan {
  align-self: flex-start;
}

.aboutItem__img {
  filter: drop-shadow(-40px 15px 23px rgba(0, 0, 0, 0.5));
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  display: flex;
  left: 30%;
  transform: translateX(-30%);
}
@media (max-width: 1024px) {
  .aboutItem__img {
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.aboutItem__img img {
  max-width: 1000px;
  height: 500px;
}
@media (max-width: 1024px) {
  .aboutItem__img img {
    max-width: none;
    width: 100%;
    max-height: 481px;
  }
}
@media (max-width: 768px) {
  .aboutItem__img img {
    max-height: 281px;
  }
}
@media (max-width: 768px) {
  .aboutItem__img {
    height: 100%;
    width: 100%;
  }
}

.aboutItem__textWrapper {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), rgba(255, 255, 255, 0.2);
  box-shadow: 0px 1px 38px rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 588px;
  width: 90%;
  padding: 30px 20px 100px 20px;
}
@media (max-width: 1024px) {
  .aboutItem__textWrapper {
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .aboutItem__textWrapper {
    height: 311px;
  }
}

.aboutItem__textWrapper_first {
  right: 0px !important;
  left: auto;
}
@media (max-width: 1024px) {
  .aboutItem__textWrapper_first {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

.aboutItem__textWrapper__slogan {
  font-family: "gothampro_bold";
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #6B7280;
  align-self: flex-end;
  margin-bottom: 49px;
}
@media (max-width: 1024px) {
  .aboutItem__textWrapper__slogan {
    display: none;
  }
}

.aboutItem__textWrapper__slogan_second {
  align-self: flex-start;
}

.aboutItem__textWrapper__title {
  font-family: "gothampro_bold";
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .aboutItem__textWrapper__title {
    font-size: calc(22px + 6.8 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .aboutItem__textWrapper__title {
    font-size: calc(22px + 4 * 100vw / 1440);
  }
}

.aboutItem__textWrapper__info {
  font-family: "gothampro_medium";
  font-size: 15px;
  line-height: 180%;
  text-align: center;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.87);
  max-width: 428px;
  margin-top: 25px;
}

.aboutItem__viewRoomsBtn {
  display: flex;
  gap: 5px;
  align-items: center;
  color: white;
  background-color: transparent;
  border: 1px solid #8559E2;
  font-family: "gothampro_regular";
  font-size: 17px;
  line-height: 20px;
  color: #FFFFFF;
  padding: 10px;
  margin-top: 20px;
}

.attractions {
  margin-top: 102px;
  margin-bottom: 120px;
}

.attractions__title {
  font-family: "gothampro_bold";
  line-height: 150%;
  width: 100%;
  color: #FFFFFF;
  margin: 0 auto;
  max-width: 670px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .attractions__title {
    font-size: calc(20px + 44.2 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .attractions__title {
    font-size: calc(20px + 26 * 100vw / 1440);
  }
}
@media (max-width: 768px) {
  .attractions__title {
    display: flex;
    flex-direction: column;
    max-width: 343px;
  }
}

@media (max-width: 768px) {
  .attractions__title_bottom {
    display: flex;
    align-self: flex-end;
  }
}

.attractions__line {
  width: 228px;
  height: 1px;
  background-color: white;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 50px;
}

.mySwiper2 {
  height: 700px;
  position: relative;
  max-width: 1344px;
}
.mySwiper2 .swiper-slide {
  max-height: 700px;
}
.mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .mySwiper2 {
    height: 471px;
  }
}
.mySwiper2 .attractions-navigation-buttons {
  margin: 0 auto;
  max-width: 200px;
  position: relative;
  display: flex;
  z-index: 10;
  bottom: 60px;
  justify-content: center;
  gap: 15px;
}
.mySwiper2 .swiper-button-next {
  position: static !important;
  top: auto;
  left: auto;
  z-index: 10;
}
.mySwiper2 .swiper-button-prev {
  position: static !important;
  top: auto;
  right: auto;
  z-index: 10;
}
.mySwiper2 .swiper-attractions-pagination {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50% !important;
  left: 40px !important;
  transform: translateY(-50%);
  height: 404px;
  width: 20px !important;
  justify-content: space-between;
}
.mySwiper2 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 100%;
  padding: 5px;
  z-index: 5 !important;
  opacity: 1 !important;
  position: relative;
}
.mySwiper2 .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid white;
  background-color: transparent;
  border-radius: 100%;
  transition: 300ms ease;
}
.mySwiper2 .paginationLine {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 404px;
  left: 50px;
  z-index: 2 !important;
}
.mySwiper2 .swiper-attractions-pagination-modal {
  max-width: 456px;
  padding: 15px 15px 15px 50px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  position: absolute;
  top: 90px;
  z-index: 3;
  left: 30px;
  transition: 300ms ease;
}
.mySwiper2 .swiper-attractions-pagination-modal__title {
  font-family: "gothampro_bold";
}
.mySwiper2 .swiper-attractions-pagination-modal__text {
  font-size: 14px;
  margin-top: 5px;
  font-family: "gothampro_regular";
  margin-bottom: 15px;
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo {
  display: flex;
  justify-content: space-between;
  font-family: "gothampro_medium";
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo-left {
  display: flex;
  gap: 10px;
  width: 80%;
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo-place {
  display: flex;
  gap: 9px;
  width: 65%;
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo-place img {
  width: 13px;
  height: 20.583px;
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo-walk {
  display: flex;
  width: 50%;
  gap: 9px;
}
.mySwiper2 .swiper-attractions-pagination-modal__locationInfo-walk img {
  width: 13px;
  height: 20.583px;
}

.attractions__pcSlider {
  display: none !important;
}
@media (min-width: 1024px) {
  .attractions__pcSlider {
    display: block !important;
  }
}

.attractions__mobileSlider {
  display: none !important;
}
.attractions__mobileSlider .swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 1024px) {
  .attractions__mobileSlider {
    display: block !important;
  }
}
.attractions__mobileSlider .swiper-wrapper {
  height: 471px !important;
}
.attractions__mobileSlider .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.attractions__mobileSlider .attractions__mobileSlider__bottom {
  display: flex;
  position: relative;
  margin-top: 10px;
}
.attractions__mobileSlider .attractions-navigation-buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 768px) {
  .attractions__mobileSlider .attractions-navigation-buttons img {
    width: 32px !important;
    height: 32px !important;
  }
}
.attractions__mobileSlider .paginationLine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 15px !important;
}
.attractions__mobileSlider .swiper-attractions-pagination {
  width: 100%;
  max-width: 216px;
  display: flex;
  justify-content: space-between;
  top: 9px !important;
  left: 50% !important;
  transform: translateX(-50%);
}
.attractions__mobileSlider .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: white;
  border-radius: 100%;
  padding: 5px;
  z-index: 5 !important;
  opacity: 1 !important;
  position: relative;
}
.attractions__mobileSlider .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid white;
  background-color: transparent;
  border-radius: 100%;
  transition: 300ms ease;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal {
  position: absolute;
  top: 269px;
  z-index: 1;
  left: 50% !important;
  transform: translateX(-50%);
  padding: 15px;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
@media (max-width: 768px) {
  .attractions__mobileSlider .swiper-attractions-pagination-modal {
    width: 90%;
  }
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__title {
  font-family: "gothampro_bold";
  font-size: 15px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__text {
  font-size: 12px;
  margin-top: 5px;
  font-family: "gothampro_regular";
  margin-bottom: 15px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo {
  display: flex;
  justify-content: space-between;
  font-family: "gothampro_medium";
  font-size: 12px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-left {
  display: flex;
  gap: 10px;
  width: 80%;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-place {
  display: flex;
  gap: 9px;
  width: 65%;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-place img {
  width: 14px;
  height: 18px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-walk {
  display: flex;
  width: 50%;
  gap: 9px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-walk img {
  width: 12px;
  height: 19px;
}
.attractions__mobileSlider .swiper-attractions-pagination-modal__locationInfo-geoposition img {
  width: 20px;
  height: 20px;
}

.reviews {
  margin-bottom: 120px;
}
.reviews .reviews__title-line {
  height: 1px;
  width: 100%;
  max-width: 792px;
  background-color: white;
  margin-bottom: 25px;
}
.reviews .reviews__title {
  font-family: "gothampro_bold";
  position: relative;
  padding-left: 26px;
  display: flex;
  margin-bottom: 11px;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .reviews .reviews__title {
    font-size: calc(26px + 34 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .reviews .reviews__title {
    font-size: calc(26px + 20 * 100vw / 1440);
  }
}
@media (max-width: 768px) {
  .reviews .reviews__title {
    flex-direction: column;
    border-top: none;
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.reviews .reviews__title p:nth-child(2) {
  align-self: flex-end;
}
@media (max-width: 768px) {
  .reviews .reviews__title p:nth-child(2) {
    align-self: center;
  }
}
.reviews .reviews__title::before {
  content: "";
  background-image: url("../img/reviewsBefore.svg");
  background-size: cover;
  position: absolute;
  z-index: -1;
  left: 0px;
  width: 46.8px;
  height: 42.9px;
}
@media (max-width: 768px) {
  .reviews .reviews__title::before {
    width: 30px;
    height: 27.5px;
  }
}
.reviews .reviewsSlider {
  display: flex;
  flex-direction: column-reverse;
}
@media (max-width: 768px) {
  .reviews .reviewsSlider {
    flex-direction: column;
  }
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .reviews .reviewsSlider .reviewsSliderBtnsAndLine {
    justify-content: center;
  }
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsLine {
  width: 588px;
  height: 1px;
  background-color: white;
}
@media (max-width: 768px) {
  .reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsLine {
    display: none;
  }
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns {
    gap: 80px;
  }
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns .swiper-button-disabled {
  opacity: 0.5;
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns .reviewsPrev {
  cursor: pointer;
  transition: 300ms ease;
  border-radius: 5px;
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns .reviewsPrev:hover {
  background-color: #712EFF;
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns .reviewsNext {
  cursor: pointer;
  transition: 300ms ease;
  border-radius: 5px;
}
.reviews .reviewsSlider .reviewsSliderBtnsAndLine .reviewsSliderBtns .reviewsNext:hover {
  background-color: #712EFF;
}
.reviews .reviewsSlider .reviewsSlide {
  position: relative;
  max-height: 370px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__upperImg {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3137254902);
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.15) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.05) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 15px 15px 53px 33px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__date {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 16px;
  font-family: "gothampro_regular";
  color: #6B7280;
  margin-bottom: 13px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__text {
  color: white;
  font-size: 16px;
  font-family: "gothampro_regular";
  text-align: center;
  margin-bottom: 10px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__line {
  height: 2px;
  width: 180px;
  background-color: black;
  margin: 0 auto;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__name {
  font-size: 18px;
  font-family: "gothampro_medium";
  text-align: center;
  margin-top: 15px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__stars {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-top: 15px;
}
.reviews .reviewsSlider .reviewsSlide .reviewsSlide__img {
  margin: 0 auto;
  width: 78px;
  height: 78px;
  transform: translateY(-35px);
  border: 9px solid rgba(0, 0, 0, 0.0823529412);
  border-radius: 100px;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.3137254902);
  overflow: hidden;
}

.footer__content {
  width: 100%;
}

.footerContainer {
  display: flex;
  gap: 56px;
}
@media (max-width: 1050px) {
  .footerContainer {
    flex-direction: column-reverse;
  }
}
@media (max-width: 1050px) {
  .footerContainer .footer__map iframe {
    width: 100%;
  }
}
.footerContainer .footer__title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "gothampro_bold";
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footerContainer .footer__title {
    font-size: calc(30px + 27.2 * (100vw - 320px) / 1440);
  }
}
@media screen and (min-width: 767px) {
  .footerContainer .footer__title {
    font-size: calc(30px + 16 * 100vw / 1440);
  }
}
@media (max-width: 1050px) {
  .footerContainer .footer__title {
    text-align: center;
  }
}
.footerContainer .footer__title .footer__title-line {
  height: 1px;
  width: 60px;
  background-color: white;
}
.footerContainer .footerAllLinks {
  display: flex;
  justify-content: space-evenly;
  margin-top: 50px;
  flex-wrap: wrap-reverse;
}
@media (max-width: 1050px) {
  .footerContainer .footerAllLinks {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.footerContainer .footerAllLinks .footer__navLinks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1050px) {
  .footerContainer .footerAllLinks .footer__navLinks {
    width: 100%;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid white;
    margin-bottom: 25px;
  }
}
.footerContainer .footerAllLinks .footer__navLinks .footer__navLink {
  font-size: 18px;
  font-family: "gothampro_medium";
  color: white;
  width: -moz-fit-content;
  width: fit-content;
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerNumber {
  color: rgba(255, 255, 255, 0.3764705882);
  font-size: 15px;
  font-family: "gothampro_medium";
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerNumber .footer__number {
  margin-top: 17px;
  display: flex;
  gap: 10px;
  font-family: "gothampro_medium";
  font-size: 18px;
  color: white;
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerSocialMediaLinks {
  color: rgba(255, 255, 255, 0.3764705882);
  font-size: 15px;
  font-family: "gothampro_medium";
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerSocialMediaLinks .footerSocialMediaLinksWrapper {
  display: flex;
  justify-content: space-between;
  max-width: 179px;
  margin-top: 15px;
}
@media (max-width: 1050px) {
  .footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerSocialMediaLinks .footerSocialMediaLinksWrapper {
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 20px;
    width: 100%;
    max-width: none;
  }
}
.footerContainer .footerAllLinks .footerSocialMediaLinksAndNumber .footerSocialMediaLinks .footerSocialMediaLinksWrapper .footer__socialMediaLink {
  width: 25px;
  height: 25px;
}

.modalWrapper {
  transition: 300ms ease;
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5647058824);
  z-index: 102;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "gothampro_regular";
  top: -100%;
}
.modalWrapper .modal {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 20px;
}
.modalWrapper .modal .modalWrapperSubmit {
  border-radius: 20px;
  border: none;
  color: #003930;
  cursor: pointer;
}
.modalWrapper .modal input {
  border-radius: 20px;
  text-align: center;
}

.modalWrapper_active {
  top: 0;
}

.modalActivationBtn {
  cursor: pointer;
}

.onTopBtn {
  position: fixed;
  width: 32px;
  height: 32px;
  padding: 8px;
  border-radius: 100%;
  bottom: 32px;
  right: 32px;
  background-color: #000000;
  z-index: 1000;
}/*# sourceMappingURL=style.css.map */