/* stylelint-disable */
/* BREAKPOINTS */
/* stylelint-disable */ /* stylelint-disable */ /* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/../fonts/Montserrat-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
html, body {
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 14px;
  position: relative;
  margin: 0;
  min-width: 320px;
  height: 100%;
  line-height: 1.5;
  color: #878787;
  background-color: #1c1c1c;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
@media (min-width: 375px) {
  body {
    font-size: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.is-hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 16px;
  max-width: calc(1440px + (16px) * 2);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 170px;
  width: 100%;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.logo img {
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .logo {
    max-width: 238px;
  }
}

.disclaimer {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.disclaimer strong {
  color: #fff;
  text-transform: uppercase;
}
.disclaimer p:not(:last-child) {
  margin-bottom: 10px;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}
.social-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (any-hover: hover) {
  .social-list__item:hover .icon {
    fill: #ff9900;
    stroke: #ff9900;
  }
}
.social-list__item.instagram {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 768px) {
  .social-list__item.instagram {
    display: none;
  }
}
.social-list__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.social-list__item-link svg {
  width: 30px;
  height: 30px;
}
.social-list__item-link .icon {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

.default-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  position: relative;
  padding-right: 34px;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .default-link {
    font-size: calc(0.3755868545vw + 14.5915492958px);
  }
}
@media (min-width: 1440px) {
  .default-link {
    font-size: 20px;
  }
}
.default-link:before {
  content: url("../img/right-arrow.svg");
  display: block;
  position: absolute;
  top: -2px;
  right: 2px;
  transition: all ease 0.3s;
}
@media (any-hover: hover) {
  .default-link:hover:before {
    right: -4px;
  }
}

.language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  min-height: 26px;
}
@media (any-hover: hover) {
  .language:hover .language__btn:before {
    transform: rotate(-180deg);
  }
  .language:hover a {
    font-size: 16px;
  }
}
.language.active .language__btn:before {
  transform: rotate(-180deg);
}
.language.active a {
  font-size: 16px;
}
.language__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.language__btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  position: relative;
  padding-right: 20px;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.language__btn:before {
  content: url("../img/language-arrow.svg");
  display: block;
  position: absolute;
  top: -2px;
  right: 0;
  transition: all ease 0.2s;
}
.language a {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 0;
  color: #fff;
  text-transform: uppercase;
  transition: all ease 0.2s;
}
@media (any-hover: hover) {
  .language a:hover {
    color: #ff9900;
  }
}

.title-xl {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  margin: 0;
  font-size: clamp(36px, 5vw, 72px);
  color: #fff;
  text-transform: uppercase;
}
.title-xl p:not(:last-child) {
  margin-bottom: 10px;
}

.title-l, .enjoy__content h2,
.enjoy__content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  color: #ff9900;
  text-transform: uppercase;
}
.title-l p:not(:last-child), .enjoy__content h2 p:not(:last-child),
.enjoy__content h3 p:not(:last-child) {
  margin-bottom: 10px;
}

.burger {
  position: relative;
  display: block;
  width: 36px;
  height: 16px;
  color: #fff;
  z-index: 200;
}
.burger:before, .burger:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  -webkit-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
}
.burger:before {
  top: 0;
}
.burger:after {
  width: 64%;
  left: unset;
  right: 0;
  bottom: 0;
}
@media (any-hover: hover) {
  .burger:hover:after {
    width: 100%;
  }
}

.btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  padding: 10px 28px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
  background-color: #ff9900;
  color: #fff;
  border-radius: 25px;
  text-transform: uppercase;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 0.8;
  }
}

.sign-up {
  padding: 32px;
  background-color: #232323;
  border-radius: 32px;
}
.sign-up__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ff9900;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .sign-up__title {
    font-size: calc(0.1877934272vw + 17.2957746479px);
  }
}
@media (min-width: 1440px) {
  .sign-up__title {
    font-size: 20px;
  }
}
.sign-up__label {
  margin: 24px 0 0 0;
  display: block;
  width: 100%;
}
@media (any-hover: hover) {
  .sign-up__label:hover .sign-up__input {
    color: #fff;
    border-bottom-color: #fff;
  }
}
.sign-up__input {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  padding: 0 0 8px 0;
  color: #fff;
  border-bottom: 1px solid #7e7e7e;
  outline: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 375px) {
  .sign-up__input {
    font-size: calc(0.1877934272vw + 15.2957746479px);
  }
}
@media (min-width: 1440px) {
  .sign-up__input {
    font-size: 18px;
  }
}
.sign-up__input::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: #878787;
}
.sign-up__input::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: #878787;
}
.sign-up__input:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  color: #878787;
}
.sign-up__input::placeholder {
  font-family: inherit;
  font-size: inherit;
  color: #878787;
}
.sign-up__input:focus {
  color: #fff;
  border-bottom-color: #fff;
}
.sign-up__submit {
  margin: 32px 0 0 0;
}

.search-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .search-form__inner {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    border-radius: 45px;
  }
}
.search-form__label {
  width: 100%;
}
@media (min-width: 640px) {
  .search-form__label {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: unset;
  }
}
.search-form__input {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  padding: 12px 20px;
  display: block;
  width: 100%;
  font-size: 16px;
  color: #000;
  background-color: transparent;
  text-align: center;
  outline: none;
}
.search-form__input::-webkit-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
}
.search-form__input::-moz-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
}
.search-form__input:-ms-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
}
.search-form__input::placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
}
@media (min-width: 640px) {
  .search-form__input {
    padding: 16px 24px;
    text-align: unset;
  }
}
.search-form__button {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 12px 20px;
  width: 100%;
  color: #fff;
  background-color: #ff9900;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (min-width: 640px) {
  .search-form__button {
    padding: 16px 24px;
    min-width: 154px;
    width: unset;
  }
}
@media (any-hover: hover) {
  .search-form__button:hover {
    opacity: 0.8;
  }
}

.explore-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.explore-form__label {
  display: block;
  width: 100%;
}
.explore-form__input {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding: 0 8px 8px 0;
  font-size: 18px;
  color: #fff;
  width: 100%;
  border-bottom: 1px solid #7e7e7e;
  outline: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.explore-form__input:focus {
  border-bottom-color: #fff;
}
.explore-form__input::-webkit-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.explore-form__input::-moz-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.explore-form__input:-ms-input-placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.explore-form__input::placeholder {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (any-hover: hover) {
  .explore-form__input:hover {
    color: #fff;
    border-bottom-color: #fff;
  }
  .explore-form__input:hover::-webkit-input-placeholder {
    color: #fff;
  }
  .explore-form__input:hover::-moz-placeholder {
    color: #fff;
  }
  .explore-form__input:hover:-ms-input-placeholder {
    color: #fff;
  }
  .explore-form__input:hover::placeholder {
    color: #fff;
  }
}

.booking-form {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 800px) {
  .booking-form {
    border-radius: 32px;
  }
}
.booking-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 576px) {
  .booking-form__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .booking-form__inner {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
.booking-form__field {
  position: relative;
  padding: 25px 20px 10px 10px;
  max-height: 4.5rem;
  border-bottom: 1px solid #eaeaea;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.booking-form__field--guests {
  padding: 25px 20px 10px 10px;
  width: 100%;
}
.booking-form__field:before {
  content: url("../img/down-arrow.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(calc(-50% + 9px));
  -ms-transform: translateY(calc(-50% + 9px));
  transform: translateY(calc(-50% + 9px));
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  cursor: pointer;
  line-height: 0;
  height: 7px;
}
.booking-form__field.active:before {
  -webkit-transform: translateY(calc(-50% + 9px)) rotate(-180deg);
  -ms-transform: translateY(calc(-50% + 9px)) rotate(-180deg);
  transform: translateY(calc(-50% + 9px)) rotate(-180deg);
}
@media (min-width: 576px) {
  .booking-form__field {
    border-bottom: none;
  }
  .booking-form__field:before {
    right: 10px;
  }
  .booking-form__field--guests .booking-form__select {
    width: 100%;
  }
  .booking-form__field:first-child {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 340px;
    -ms-flex: 1 1 340px;
    flex: 1 1 340px;
  }
  .booking-form__field:nth-child(2n) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 120px;
    -ms-flex: 1 1 120px;
    flex: 1 1 120px;
  }
  .booking-form__field:first-child, .booking-form__field:nth-child(2n) {
    border-right: 1px solid #eaeaea;
  }
}
@media (min-width: 768px) {
  .booking-form__field {
    padding: 25px 20px 10px 10px;
  }
  .booking-form__field--guests {
    padding: 30px 4px 10px 24px;
    width: 162px;
  }
  .booking-form__field:first-child, .booking-form__field:nth-child(2n) {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
  }
  .booking-form__field:first-child {
    padding: 30px 20px 12px 40px;
  }
  .booking-form__field:nth-child(2n) {
    padding: 30px 20px 12px 24px;
  }
  .booking-form__field:nth-child(2n) .booking-form__mark {
    left: 26px;
  }
  .booking-form__field--guests .booking-form__mark {
    left: 26px;
  }
}
@media (any-hover: hover) {
  .booking-form__field:hover {
    background-color: rgb(244, 243, 252);
  }
}
.booking-form__label {
  height: 100%;
  cursor: pointer;
}
.booking-form__select {
  padding-left: 0px;
  padding-right: 10px;
}
.booking-form__select, .booking-form__date {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  position: relative;
  width: 100%;
  font-size: 14px;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  z-index: 10;
}
.booking-form__select:focus + .booking-form__mark, .booking-form__date:focus + .booking-form__mark {
  color: #ff9900;
}
.booking-form__select::-webkit-input-placeholder, .booking-form__date::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.booking-form__select::-moz-placeholder, .booking-form__date::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.booking-form__select:-ms-input-placeholder, .booking-form__date:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.booking-form__select::placeholder, .booking-form__date::placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #121212;
}
.booking-form__select option, .booking-form__date option {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #000;
}
.booking-form__select option:checked, .booking-form__date option:checked {
  background-color: rgb(244, 243, 252);
}
.booking-form__mark {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: absolute;
  top: 7px;
  left: 10px;
  font-size: 12px;
  color: #ff9900;
}
@media (min-width: 768px) {
  .booking-form__mark {
    font-size: 14px;
    left: 40px;
    top: 12px;
  }
}
.booking-form__submit {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 0 !important;
}
@media (min-width: 576px) {
  .booking-form__submit {
    width: 100%;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .booking-form__submit {
    margin: 0;
    padding: 20px 40px;
    width: auto;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
  }
}

.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #ff9900;
  border-color: #ff9900;
}

.flatpickr-current-month .flatpickr-monthDropdown-months, .flatpickr-current-month input.cur-year {
  color: #ff9900;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
}
@media (min-width: 768px) {
  .contact-form {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0 24px;
  }
}
.contact-form__label {
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-form__label {
    width: calc(50% - 12px);
  }
  .contact-form__label--full {
    margin: 40px 0 0 0;
    width: 100%;
  }
}
.contact-form__input, .contact-form__textarea {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  width: 100%;
  padding: 0 10px 12px 0;
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  outline: none;
  border-bottom: 1px solid #7e7e7e;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.contact-form__input::-webkit-input-placeholder, .contact-form__textarea::-webkit-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.contact-form__input:-ms-input-placeholder, .contact-form__textarea:-ms-input-placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: #878787;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (any-hover: hover) {
  .contact-form__input:hover, .contact-form__textarea:hover {
    border-bottom-color: #fff;
  }
  .contact-form__input:hover::-webkit-input-placeholder, .contact-form__textarea:hover::-webkit-input-placeholder {
    color: #fff;
  }
  .contact-form__input:hover::-moz-placeholder, .contact-form__textarea:hover::-moz-placeholder {
    color: #fff;
  }
  .contact-form__input:hover:-ms-input-placeholder, .contact-form__textarea:hover:-ms-input-placeholder {
    color: #fff;
  }
  .contact-form__input:hover::placeholder, .contact-form__textarea:hover::placeholder {
    color: #fff;
  }
}
.contact-form__textarea {
  height: 100px;
  resize: vertical;
}
.contact-form__submit {
  margin-top: 30px;
}
@media (min-width: 375px) {
  .contact-form__submit {
    margin-top: calc(1.8779342723vw + 22.9577464789px);
  }
}
@media (min-width: 1440px) {
  .contact-form__submit {
    margin-top: 50px;
  }
}

.review-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.review-item__image {
  display: block;
  width: 100%;
  min-height: 312px;
  max-height: 340px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.review-item__image img {
  width: 100%;
  min-height: 312px;
  max-height: 340px;
}
@media (any-hover: hover) {
  .review-item__image:hover {
    opacity: 0.7;
  }
}
.review-item__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (any-hover: hover) {
  .review-item__title:hover {
    color: #ff9900;
  }
}
.review-item__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 8px 0 12px 0;
}
.review-item__description p:not(:last-child) {
  margin-bottom: 5px;
}
.review-item__link {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (any-hover: hover) {
  .review-item__link:hover {
    color: #ff9900;
  }
}
.review-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.review-item__btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 8px 30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: #fff;
  background-color: #ff9900;
  border-radius: 25px;
  border: 1px solid transparent;
  text-transform: uppercase;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.review-item__btn--outline {
  background-color: transparent;
  border: 1px solid #ff9900;
}
@media (any-hover: hover) {
  .review-item__btn:hover {
    opacity: 0.8;
  }
}

.menu {
  padding: 42px 0 62px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: #000;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  z-index: 300;
}
@media (min-width: 768px) {
  .menu {
    height: unset;
  }
}
@media (min-width: 1024px) {
  .menu {
    padding: 62px 0 92px;
  }
}
.menu.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu.active .menu__container {
  -webkit-animation: menuopened 0.6s;
  animation: menuopened 0.6s;
}
.menu__container {
  -webkit-animation: menuclosed 0.6s;
  animation: menuclosed 0.6s;
}
.menu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 0 30px 0;
}
@media (min-width: 1024px) {
  .menu__top {
    margin: 0;
  }
}
.menu__close {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  color: #fff;
}
.menu__close:before, .menu__close:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  -webkit-transition: all ease-in 0.1s;
  transition: all ease-in 0.1s;
}
.menu__close:before {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu__close:after {
  bottom: 6px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media (min-width: 1024px) {
  .menu__close:before {
    top: 31px;
  }
  .menu__close:after {
    bottom: -4px;
  }
}
.menu__nav {
  margin: 30px 0 0 0;
}
@media (min-width: 768px) {
  .menu__nav {
    margin: 48px 0 0 0;
  }
}
.menu__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .menu__nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px 20px;
  }
}
.menu__nav ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: #878787;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .menu__nav ul li {
    font-size: calc(0.5633802817vw + 15.8873239437px);
  }
}
@media (min-width: 1440px) {
  .menu__nav ul li {
    font-size: 24px;
  }
}
.menu__nav ul li.menu-item-has-children > a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu__nav ul li.menu-item-has-children > a:after {
  content: "";
  display: block;
  position: relative;
  --svg-size: 20px;
  width: var(--svg-size);
  height: var(--svg-size);
  -webkit-mask-image: url("../img/down-arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 16px 8px;
  -webkit-mask-position: center;
  margin-left: calc(var(--svg-size) / 2);
  top: calc(50% - var(--svg-size) / 2);
  background-color: currentColor;
}
.menu__nav ul li.menu-item-has-children {
  position: relative;
}
@media (any-hover: hover) {
  .menu__nav ul li.menu-item-has-children:hover .sub-menu {
    visibility: visible;
    background-color: #000;
    padding-block: 12px;
  }
}
.menu__nav ul li.menu-item-has-children .sub-menu {
  visibility: hidden;
  position: absolute;
  width: 100%;
}
.menu__nav ul li.menu-item-has-children.active a {
  color: #fff;
}
.menu__nav ul li.menu-item-has-children.active a:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menu__nav ul li.menu-item-has-children.active .sub-menu {
  max-height: 200px;
  height: auto;
  overflow: visible;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  visibility: visible;
  padding-block: 12px;
}
@media (any-hover: hover) {
  .menu__nav ul li:hover a {
    color: #fff;
  }
  .menu__nav ul li:hover a:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .menu__nav ul li:hover .sub-menu {
    max-height: 200px;
    height: auto;
    overflow: visible;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
  }
}
.menu__nav ul li a {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.menu__nav .sub-menu {
  max-height: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.menu__nav .sub-menu a:before {
  display: none !important;
}
.menu__nav .sub-menu a:active, .menu__nav .sub-menu a:target, .menu__nav .sub-menu a:focus {
  color: #fff;
}
@media (any-hover: hover) {
  .menu__nav .sub-menu a:hover {
    color: #fff;
  }
}
.menu__nav .menu {
  position: relative;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  top: 0px;
}

@-webkit-keyframes menuopened {
  0% {
    -webkit-transform: scale(0.2) rotateZ(-10deg);
    transform: scale(0.2) rotateZ(-10deg);
  }
  40% {
    -webkit-transform: scale(1.05) rotateZ(-2deg);
    transform: scale(1.05) rotateZ(-2deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(0deg);
    transform: scale(1) rotateZ(0deg);
  }
}
@keyframes menuopened {
  0% {
    -webkit-transform: scale(0.2) rotateZ(-10deg);
    transform: scale(0.2) rotateZ(-10deg);
  }
  40% {
    -webkit-transform: scale(1.05) rotateZ(-2deg);
    transform: scale(1.05) rotateZ(-2deg);
  }
  100% {
    -webkit-transform: scale(1) rotateZ(0deg);
    transform: scale(1) rotateZ(0deg);
  }
}
@-webkit-keyframes menuclosed {
  0% {
    -webkit-transform: scale(1) skew(0) rotateX(0);
    transform: scale(1) skew(0) rotateX(0);
  }
  100% {
    -webkit-transform: scale(0.2) rotateZ(10deg);
    transform: scale(0.2) rotateZ(10deg);
  }
}
@keyframes menuclosed {
  0% {
    -webkit-transform: scale(1) skew(0) rotateX(0);
    transform: scale(1) skew(0) rotateX(0);
  }
  100% {
    -webkit-transform: scale(0.2) rotateZ(10deg);
    transform: scale(0.2) rotateZ(10deg);
  }
}
.header-2 {
  padding: 40px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: transparent;
  z-index: 200;
}
@media (min-width: 1024px) {
  .header-2 {
    padding: 64px 0;
  }
}
.header-2__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 640px) and (max-width: 1200px) {
  .header-2__container {
    padding: 0 30px;
  }
}
.header-2__link {
  display: none;
}
.header-2__link--mobile {
  display: inline-flex;
}
@media (min-width: 1024px) {
  .header-2__link {
    margin: 0 40px 0 0;
    display: inline-flex;
  }
  .header-2__link--mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-2__link {
    margin: 0 70px 0 0;
  }
}
.header-2__language {
  margin: 20px 0 0 0;
  display: flex;
}
.header-2__language--desktop {
  display: none;
}
@media (min-width: 1024px) {
  .header-2__language {
    display: none;
  }
  .header-2__language--desktop {
    position: relative;
    display: flex;
    margin: 20px 40px 0 auto;
    padding: 0 0 20px 0;
    flex-direction: column;
  }
  .header-2__language--desktop .language__links {
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header-2__language--desktop {
    margin: 20px 70px 0 auto;
  }
}
.header-2__menu .menu li {
  flex: 0 0 33.3333%;
}
.header-2__menu .menu li.menu-item-has-children .sub-menu {
  background-color: #000;
  position: static;
}
.header-2__menu .menu li a {
  width: 100%;
}
@media (min-width: 1024px) {
  .header-2 .language__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.footer {
  padding-top: 40px;
  padding-bottom: 24px;
  background-color: #131313;
  position: relative;
}
@media (min-width: 375px) {
  .footer {
    padding-top: calc(3.9436619718vw + 25.2112676056px);
  }
}
@media (min-width: 1440px) {
  .footer {
    padding-top: 82px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer__container {
    display: block;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .footer__top {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
  }
}
.footer__top-left, .footer__top-center, .footer__top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .footer__top-left, .footer__top-center, .footer__top-right {
    display: block;
  }
}
@media (min-width: 1200px) {
  .footer__top-left {
    width: 21%;
  }
}
.footer__top-center {
  width: 100%;
  padding-inline: 30px;
}
@media (min-width: 1200px) {
  .footer__top-center {
    width: 36%;
    padding-inline: unset;
  }
}
.footer__top-right {
  width: 100%;
}
.footer__top-right .sign-up {
  width: 100%;
}
@media (min-width: 1200px) {
  .footer__top-right {
    width: 27%;
  }
}
.footer__top-description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 30px 0 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #878787;
  text-align: center;
}
.footer__top-description p:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .footer__top-description {
    text-align: unset;
  }
}
.footer__language {
  margin: 24px 0 0 0;
}
.footer__social-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 36px 0 0 0;
  gap: 20px;
}
.footer__social-mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
.footer__nav.menu__nav {
  width: 100%;
}
@media (min-width: 1024px) {
  .footer__nav.menu__nav {
    width: auto;
  }
}
.footer__nav.menu__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: unset;
  inset: unset;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset;
  background: transparent;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 24px;
}
.footer__nav.menu__nav ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .footer__nav.menu__nav ul li:hover {
    color: #ff9900;
  }
}
.footer__nav.menu__nav ul li.menu-item-has-children .sub-menu {
  background-color: #131313;
}
.footer__nav.menu__nav a {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 1200px) {
  .footer__nav.menu__nav ul {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin-top: 40px;
  font-size: 14px;
  color: #878787;
}
@media (min-width: 375px) {
  .footer__copyright {
    margin-top: calc(4.3192488263vw + 23.8028169014px);
  }
}
@media (min-width: 1440px) {
  .footer__copyright {
    margin-top: 86px;
  }
}
.footer__copyright a {
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .footer__copyright a:hover {
    color: #ff9900;
  }
}

.accordion.active .accordion__button {
  border-bottom-width: 1px;
}
.accordion.active .accordion__button:after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.accordion.active .accordion__content {
  max-height: 500px;
  -webkit-animation: fade 0.6s ease-in-out;
  animation: fade 0.6s ease-in-out;
  overflow-y: auto;
}
.accordion__button {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  display: block;
  position: relative;
  width: 100%;
  padding: 16px 14px 16px 0;
  text-align: left;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  color: #ff9900;
}
@media (min-width: 375px) {
  .accordion__button {
    font-size: calc(0.1877934272vw + 17.2957746479px);
  }
}
@media (min-width: 1440px) {
  .accordion__button {
    font-size: 20px;
  }
}
.accordion__button:before, .accordion__button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  width: 16px;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.accordion__button:after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (min-width: 1024px) {
  .accordion__button {
    padding: 24px 14px 24px 0;
  }
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height ease 0.5s;
  transition: max-height ease 0.5s;
}
.accordion__content a {
  color: #ff9900;
  position: relative;
}
.accordion__content a:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 1px;
  background: #ff9900;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media (any-hover: hover) {
  .accordion__content a:hover:before {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
}
.accordion__content-inner {
  font-size: 14px;
  padding: 16px 0 20px;
  border-top: 1px solid #ff9900;
}
@media (min-width: 375px) {
  .accordion__content-inner {
    font-size: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  .accordion__content-inner {
    font-size: 18px;
  }
}
.accordion__content-inner ul:not(:last-child), .accordion__content-inner ol:not(:last-child), .accordion__content-inner p:not(:last-child) {
  margin-bottom: 15px;
}
.accordion__content-inner ul {
  list-style-type: none;
}
.accordion__content-inner ul li {
  position: relative;
  padding-left: 10px;
}
.accordion__content-inner ul li:before {
  content: "-";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.accordion__content-inner ul li:not(:last-child), .accordion__content-inner ol li:not(:last-child) {
  margin-bottom: 10px;
}
@media (min-width: 1024px) {
  .accordion__content-inner {
    padding: 32px 0 40px;
  }
  .accordion__content-inner ul:not(:last-child), .accordion__content-inner ol:not(:last-child), .accordion__content-inner p:not(:last-child) {
    margin-bottom: 20px;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hero {
  padding-top: 140px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
@media (min-width: 375px) {
  .hero {
    padding-top: calc(10.3286384977vw + 101.2676056338px);
  }
}
@media (min-width: 1440px) {
  .hero {
    padding-top: 250px;
  }
}
.hero:before {
  content: url("../img/hero-decor.svg");
  position: absolute;
  top: 0;
  left: 8%;
}
@media (min-width: 1200px) {
  .hero {
    padding-bottom: 220px;
  }
}
.hero__container {
  position: relative;
  z-index: 6;
}
@media (min-width: 640px) {
  .hero__content {
    max-width: 815px;
  }
}
@media screen and (min-width: 640px) and (max-width: 1200px) {
  .hero__content {
    padding: 0 30px;
  }
}
.hero__content-mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .hero__content-mark {
    font-size: calc(0.5633802817vw + 15.8873239437px);
  }
}
@media (min-width: 1440px) {
  .hero__content-mark {
    font-size: 24px;
  }
}
@media (min-width: 640px) {
  .hero__title, .hero__description {
    max-width: 636px;
  }
}
.hero__description {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  margin: 8px 0 0 0;
}
.hero__search-form {
  margin: 24px 0 0 0;
}
.hero__image {
  margin: 40px 16px -10px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 640px) {
  .hero__image {
    width: 70%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
  }
}
@media (any-hover: hover) {
  .hero__image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media (min-width: 1200px) {
  .hero__image {
    margin: 0;
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 40%;
  }
}
@media (min-width: 1440px) {
  .hero__image {
    width: 31%;
    border-top-left-radius: 242px;
    border-top-right-radius: 242px;
  }
}
.hero .booking-form {
  margin-top: 40px;
}

.featured-casino {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 375px) {
  .featured-casino {
    padding-top: calc(3.7558685446vw + 45.9154929577px);
  }
}
@media (min-width: 1440px) {
  .featured-casino {
    padding-top: 100px;
  }
}
@media (min-width: 375px) {
  .featured-casino {
    padding-bottom: calc(3.7558685446vw + 65.9154929577px);
  }
}
@media (min-width: 1440px) {
  .featured-casino {
    padding-bottom: 120px;
  }
}
.featured-casino__top {
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .featured-casino__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .featured-casino__title {
    width: 57%;
  }
}
.featured-casino__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .featured-casino__slider-buttons {
    margin: 0;
  }
}
.featured-casino__slider-btn {
  width: 34px;
  height: 22px;
}
.featured-casino__slider-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.featured-casino__slider-btn--prev {
  background-image: url("../img/featured-btn-prev.svg");
}
.featured-casino__slider-btn--prev.swiper-button-disabled {
  background-image: url("../img/featured-btn-prev-disabled.svg");
}
.featured-casino__slider-btn--next {
  background-image: url("../img/featured-btn-next.svg");
}
.featured-casino__slider-btn--next.swiper-button-disabled {
  background-image: url("../img/featured-btn-next-disabled.svg");
}
.featured-casino__container {
  margin: 0;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .featured-casino__container {
    padding-left: calc((100% - calc(1440px + (16px) * 2)) / 2);
    padding-right: 0;
  }
}

.casinos-slider .swiper-slide {
  width: 340px !important;
}
.casinos-slider .swiper-slide:nth-child(even) .featured-card__image {
  min-height: 430px;
  max-height: 430px;
}
.casinos-slider .swiper-slide:nth-child(even) .featured-card__image img {
  min-height: 430px;
  max-height: 430px;
}
@media (min-width: 425px) {
  .casinos-slider .swiper-slide {
    width: 400px !important;
  }
}
@media (any-hover: hover) {
  .casinos-slider .swiper-slide:hover .featured-card__title {
    color: #ff9900;
  }
  .casinos-slider .swiper-slide:hover .featured-card__title:before {
    content: url("../img/title-arrow-brand.svg");
  }
}
@media (min-width: 768px) {
  .casinos-slider {
    padding-left: 16px;
  }
  .casinos-slider .swiper-slide {
    width: 455px !important;
  }
  .casinos-slider .swiper-slide:nth-child(even) .featured-card__image {
    min-height: 486px;
    max-height: 486px;
  }
  .casinos-slider .swiper-slide:nth-child(even) .featured-card__image img {
    min-height: 486px;
    max-height: 486px;
  }
}

.featured-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.featured-card__image {
  min-height: 375px;
  max-height: 375px;
  width: 100%;
}
.featured-card__image img {
  display: block;
  min-height: 375px;
  max-height: 375px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 768px) {
  .featured-card__image {
    min-height: 430px;
    max-height: 430px;
  }
  .featured-card__image img {
    min-height: 430px;
    max-height: 430px;
  }
}
.featured-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 16px 0 0 0;
  padding: 0 40px 0 0;
  position: relative;
  width: 100%;
  font-size: 16px;
  color: #878787;
}
.featured-card__title:before {
  content: url("../img/title-arrow.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.present {
  background-color: #131313;
}

@media (min-width: 1200px) {
  .present-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .present-list__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
.present-list__item-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.present-list__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media (min-width: 768px) {
  .present-list__item-image {
    height: 360px;
  }
}
@media (min-width: 1024px) {
  .present-list__item-image {
    height: 460px;
  }
}
@media (min-width: 1200px) {
  .present-list__item-image {
    width: 50%;
    height: unset;
  }
}
@media (any-hover: hover) {
  .present-list__item-image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.present-list__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 20px 40px;
}
@media (min-width: 768px) {
  .present-list__item-content {
    padding: 40px 60px;
  }
}
@media (min-width: 1200px) {
  .present-list__item-content {
    padding: 40px 100px;
    width: 50%;
  }
}
.present-list__item-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  color: #ff9900;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .present-list__item-title {
    font-size: calc(1.5023474178vw + 14.3661971831px);
  }
}
@media (min-width: 1440px) {
  .present-list__item-title {
    font-size: 36px;
  }
}
.present-list__item-description {
  font-size: 14px;
  margin: 16px 0 0 0;
}
@media (min-width: 375px) {
  .present-list__item-description {
    font-size: calc(0.1877934272vw + 13.2957746479px);
  }
}
@media (min-width: 1440px) {
  .present-list__item-description {
    font-size: 16px;
  }
}
.present-list__item-description p:not(:last-child) {
  margin-bottom: 10px;
}
.present-list__item-link {
  margin: 16px 0 0 0;
}

.about {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 375px) {
  .about {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .about {
    padding-top: 220px;
  }
}
.about:before {
  content: url("../img/about-home-decor.svg");
  position: absolute;
  top: -50%;
  left: 7%;
}
@media (min-width: 1200px) {
  .about {
    padding-bottom: 150px;
  }
}
@media (min-width: 768px) {
  .about .container {
    padding-inline: 60px;
  }
}
@media (min-width: 1200px) {
  .about .container {
    padding-inline: 16px;
  }
}
.about__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .about__content {
    max-width: 656px;
  }
}
.about__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 24px 0;
}
.about__description p:not(:last-child) {
  margin-bottom: 10px;
}
.about__description strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
}
.about__image {
  margin: 40px 16px -10px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  overflow: hidden;
}
.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 640px) {
  .about__image {
    width: 70%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
  }
}
@media (any-hover: hover) {
  .about__image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media (min-width: 1200px) {
  .about__image {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: -10px;
    width: 40%;
  }
}
@media (min-width: 1440px) {
  .about__image {
    width: 34%;
    bottom: -30%;
    border-top-left-radius: 242px;
    border-top-right-radius: 242px;
  }
}

.facts {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #121212;
}
@media (min-width: 375px) {
  .facts {
    padding-top: calc(5.6338028169vw + 38.8732394366px);
  }
}
@media (min-width: 1440px) {
  .facts {
    padding-top: 120px;
  }
}
@media (min-width: 375px) {
  .facts {
    padding-bottom: calc(5.6338028169vw + 38.8732394366px);
  }
}
@media (min-width: 1440px) {
  .facts {
    padding-bottom: 120px;
  }
}
.facts__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 1200px) {
  .facts__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.facts__content {
  position: relative;
  padding: 0 60px 0 0;
}
.facts__content:before {
  content: url("../img/title-right-arrow.svg");
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
@media (min-width: 1200px) {
  .facts__content {
    padding: 0 120px 0 0;
    width: 25%;
  }
  .facts__content:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}
.facts__mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .facts__mark {
    font-size: calc(0.3755868545vw + 14.5915492958px);
  }
}
@media (min-width: 1440px) {
  .facts__mark {
    font-size: 20px;
  }
}
.facts__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 36px;
  margin: 0;
  color: #ff9900;
}
@media (min-width: 375px) {
  .facts__title {
    font-size: calc(3.3802816901vw + 23.323943662px);
  }
}
@media (min-width: 1440px) {
  .facts__title {
    font-size: 72px;
  }
}

.counts-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .counts-list {
    gap: 80px;
  }
}
@media (min-width: 1440px) {
  .counts-list {
    gap: 100px;
  }
}
@media (min-width: 1200px) {
  .counts-list {
    width: 50%;
  }
}
.counts-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}
.counts-list__value {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 34px;
  color: #fff;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .counts-list__value {
    font-size: calc(3.5680751174vw + 20.6197183099px);
  }
}
@media (min-width: 1440px) {
  .counts-list__value {
    font-size: 72px;
  }
}
.counts-list__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
}
@media (min-width: 375px) {
  .counts-list__description {
    font-size: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  .counts-list__description {
    font-size: 18px;
  }
}

.reviews {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media (min-width: 375px) {
  .reviews {
    padding-top: calc(5.6338028169vw + 38.8732394366px);
  }
}
@media (min-width: 1440px) {
  .reviews {
    padding-top: 120px;
  }
}
@media (min-width: 375px) {
  .reviews {
    padding-bottom: calc(6.9483568075vw + 53.9436619718px);
  }
}
@media (min-width: 1440px) {
  .reviews {
    padding-bottom: 154px;
  }
}
.reviews__top {
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .reviews__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .reviews__title {
    width: 57%;
  }
}
.reviews__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .reviews__slider-buttons {
    margin: 0;
  }
}
.reviews__slider-btn {
  width: 34px;
  height: 22px;
}
.reviews__slider-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.reviews__slider-btn--prev {
  background-image: url("../img/featured-btn-prev.svg");
}
.reviews__slider-btn--prev.swiper-button-disabled {
  background-image: url("../img/featured-btn-prev-disabled.svg");
}
.reviews__slider-btn--next {
  background-image: url("../img/featured-btn-next.svg");
}
.reviews__slider-btn--next.swiper-button-disabled {
  background-image: url("../img/featured-btn-next-disabled.svg");
}

.hero-resort {
  padding-top: 100px;
  padding-bottom: 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 375px) {
  .hero-resort {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-resort {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .hero-resort {
    padding-bottom: calc(6.5727699531vw + 35.3521126761px);
  }
}
@media (min-width: 1440px) {
  .hero-resort {
    padding-bottom: 130px;
  }
}
@media (min-width: 1024px) {
  .hero-resort__content {
    padding-left: 8%;
  }
}
.hero-resort__description {
  font-size: 14px;
  margin: 8px 0 0 0;
  max-width: 612px;
}
@media (min-width: 375px) {
  .hero-resort__description {
    font-size: calc(0.1877934272vw + 13.2957746479px);
  }
}
@media (min-width: 1440px) {
  .hero-resort__description {
    font-size: 16px;
  }
}
.hero-resort__description p:not(:last-child) {
  margin-bottom: 10px;
}

.hotels {
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
}
@media (min-width: 375px) {
  .hotels {
    padding-top: calc(3.7558685446vw + 45.9154929577px);
  }
}
@media (min-width: 1440px) {
  .hotels {
    padding-top: 100px;
  }
}
@media (min-width: 375px) {
  .hotels {
    padding-bottom: calc(3.7558685446vw + 25.9154929577px);
  }
}
@media (min-width: 1440px) {
  .hotels {
    padding-bottom: 80px;
  }
}
.hotels:before {
  content: url("../img/explore-decor.svg");
  display: block;
  position: absolute;
  left: -80px;
  bottom: -4px;
}
.hotels__inner:not(:last-child) {
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .hotels__inner:not(:last-child) {
    margin-bottom: 90px;
  }
}
.hotels__top {
  margin: 0 auto 32px;
}
@media (min-width: 768px) {
  .hotels__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .hotels__title {
    width: 57%;
  }
}
.hotels__slider-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 20px 0 0 0;
  gap: 15px;
}
@media (min-width: 768px) {
  .hotels__slider-buttons {
    margin: 0;
  }
}
.hotels__slider-btn {
  width: 34px;
  height: 22px;
}
.hotels__slider-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.hotels__slider-btn--prev {
  background-image: url("../img/featured-btn-prev.svg");
}
.hotels__slider-btn--prev.swiper-button-disabled {
  background-image: url("../img/featured-btn-prev-disabled.svg");
}
.hotels__slider-btn--next {
  background-image: url("../img/featured-btn-next.svg");
}
.hotels__slider-btn--next.swiper-button-disabled {
  background-image: url("../img/featured-btn-next-disabled.svg");
}
.hotels .review-item__description {
  font-size: 12px;
}

.hero-hotel {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  background-color: #131313;
}
@media (min-width: 375px) {
  .hero-hotel {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-hotel {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .hero-hotel {
    padding-bottom: calc(4.6948356808vw + 62.3943661972px);
  }
}
@media (min-width: 1440px) {
  .hero-hotel {
    padding-bottom: 130px;
  }
}
.hero-hotel:before {
  content: url("../img/hotel-decor.svg");
  display: block;
  position: absolute;
  top: 0;
  left: 10%;
}
.hero-hotel:after {
  content: url("../img/hotel-hero-decor.svg");
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 1440px) {
  .hero-hotel:before {
    left: -10px;
  }
}
@media (min-width: 1660px) {
  .hero-hotel:before {
    left: 5%;
  }
}
@media (min-width: 1800px) {
  .hero-hotel:before {
    left: 6%;
  }
}
.hero-hotel__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 34px 0;
  font-style: normal;
}
.hero-hotel .booking-form {
  max-width: 1220px;
}

.hotel-about {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 375px) {
  .hotel-about {
    padding-top: calc(3.7558685446vw + 25.9154929577px);
  }
}
@media (min-width: 1440px) {
  .hotel-about {
    padding-top: 80px;
  }
}
@media (min-width: 375px) {
  .hotel-about {
    padding-bottom: calc(3.7558685446vw + 25.9154929577px);
  }
}
@media (min-width: 1440px) {
  .hotel-about {
    padding-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .hotel-about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .hotel-about__content {
    width: 55%;
  }
}
.hotel-about__mark {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 32px 0 0 0;
  color: #fff;
  text-transform: uppercase;
}
.hotel-about__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  padding-top: 14px;
  margin: 16px 0 0 0;
}
@media (min-width: 375px) {
  .hotel-about__description {
    padding-top: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  .hotel-about__description {
    padding-top: 18px;
  }
}
.hotel-about__description a {
  color: #878787;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}
@media (any-hover: hover) {
  .hotel-about__description a:hover {
    color: #ff9900;
  }
}
.hotel-about__description p:not(:last-child) {
  margin-bottom: 20px;
}
.hotel-about__info {
  margin: 30px 0 0 0;
  padding: 40px 32px;
  background-color: #131313;
  border-radius: 32px;
}
@media (min-width: 1200px) {
  .hotel-about__info {
    margin: 0;
    width: 32%;
  }
}
.hotel-about ul {
  margin: 0 0 24px 0;
}
.hotel-about ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  color: #878787;
}
.hotel-about ul li:not(:last-child) {
  margin-bottom: 14px;
}
.hotel-about ul li:before {
  content: url("../img/checkmark.svg");
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
}
.hotel-about__info-title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0 0 24px 0;
  font-size: 18px;
  color: #ff9900;
  text-transform: uppercase;
}

.hotel-gallery {
  padding: 60px 0;
  background-color: #131313;
}
.hotel-gallery__top {
  margin: 0 0 20px 0;
}
@media (min-width: 576px) {
  .hotel-gallery__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 0 20px 0;
  }
}
.hotel-gallery__title {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
@media (min-width: 576px) {
  .hotel-gallery__title {
    width: 55%;
  }
}
@media (min-width: 576px) {
  .hotel-gallery__slider-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
}
.hotel-gallery__slider-btn {
  width: 34px;
  height: 22px;
}
.hotel-gallery__slider-btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.hotel-gallery__slider-btn--prev {
  background-image: url("../img/featured-btn-prev.svg");
}
.hotel-gallery__slider-btn--prev.swiper-button-disabled {
  background-image: url("../img/featured-btn-prev-disabled.svg");
}
.hotel-gallery__slider-btn--next {
  background-image: url("../img/featured-btn-next.svg");
}
.hotel-gallery__slider-btn--next.swiper-button-disabled {
  background-image: url("../img/featured-btn-next-disabled.svg");
}

.gallery-hotel .swiper-slide {
  height: 220px;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.gallery-hotel .swiper-slide img {
  width: 100%;
  height: 100%;
}
@media (any-hover: hover) {
  .gallery-hotel .swiper-slide:hover {
    opacity: 0.8;
  }
}
@media (min-width: 640px) {
  .gallery-hotel .swiper-slide {
    height: 318px;
  }
}

.hero-about {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 375px) {
  .hero-about {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-about {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .hero-about {
    padding-bottom: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-about {
    padding-bottom: 220px;
  }
}
.hero-about:before {
  content: url("../img/about-decor.svg");
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-about:after {
  content: url("../img/hotel-hero-decor.svg");
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  .hero-about:before {
    display: block;
  }
}
@media (min-width: 1440px) {
  .hero-about:before {
    left: -10px;
  }
}
@media (min-width: 1660px) {
  .hero-about:before {
    left: 5%;
  }
}
@media (min-width: 1800px) {
  .hero-about:before {
    left: 8%;
  }
}
.hero-about__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.enjoy {
  padding-top: 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 375px) {
  .enjoy {
    padding-top: calc(5.6338028169vw + 38.8732394366px);
  }
}
@media (min-width: 1440px) {
  .enjoy {
    padding-top: 120px;
  }
}
@media (min-width: 1200px) {
  .enjoy {
    padding-bottom: 220px;
  }
}
.enjoy__content h2,
.enjoy__content h3 {
  margin-bottom: 20px;
}
.enjoy__content h3 {
  font-size: clamp(22px, 4vw, 30px);
}
@media (min-width: 768px) {
  .enjoy__content {
    max-width: 738px;
  }
}
.enjoy__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin: 16px 0;
}
@media (min-width: 375px) {
  .enjoy__description {
    font-size: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  .enjoy__description {
    font-size: 18px;
  }
}
.enjoy__description strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #fff;
}
.enjoy__image {
  margin: 40px 16px -10px;
  border-top-left-radius: 100px;
  border-top-right-radius: 100px;
  overflow: hidden;
}
.enjoy__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media (min-width: 640px) {
  .enjoy__image {
    width: 70%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
  }
}
@media (any-hover: hover) {
  .enjoy__image:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
@media (min-width: 1200px) {
  .enjoy__image {
    margin: 0;
    position: absolute;
    right: -20px;
    bottom: -10px;
    width: 40%;
  }
}
@media (min-width: 1440px) {
  .enjoy__image {
    width: 34%;
    border-top-left-radius: 242px;
    border-top-right-radius: 242px;
  }
}
.enjoy__link {
  display: inline-block;
  margin-top: 13px;
}

.hero-contact {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 375px) {
  .hero-contact {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-contact {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .hero-contact {
    padding-bottom: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .hero-contact {
    padding-bottom: 220px;
  }
}
.hero-contact:before {
  content: url("../img/about-decor.svg");
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-contact:after {
  content: url("../img/hotel-hero-decor.svg");
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  .hero-contact:before {
    display: block;
  }
}
@media (min-width: 1440px) {
  .hero-contact:before {
    left: -10px;
  }
}
@media (min-width: 1660px) {
  .hero-contact:before {
    left: 5%;
  }
}
@media (min-width: 1800px) {
  .hero-contact:before {
    left: 8%;
  }
}
.hero-contact__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-style: normal;
}
.hero-contact .booking-form {
  max-width: 1220px;
}

.get-in-touch {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 375px) {
  .get-in-touch {
    padding-top: calc(3.7558685446vw + 45.9154929577px);
  }
}
@media (min-width: 1440px) {
  .get-in-touch {
    padding-top: 100px;
  }
}
@media (min-width: 375px) {
  .get-in-touch {
    padding-bottom: calc(-3.7558685446vw + 74.0845070423px);
  }
}
@media (min-width: 1440px) {
  .get-in-touch {
    padding-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .get-in-touch__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5px;
  }
}
@media (min-width: 640px) {
  .get-in-touch__content {
    max-width: 532px;
  }
}
@media (min-width: 1200px) {
  .get-in-touch__content {
    max-width: 100%;
    width: 37%;
  }
}
.get-in-touch__title {
  margin: 0 0 40px 0;
}
.get-in-touch__subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.get-in-touch__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 24px 0 0 0;
}
.get-in-touch__description p:not(:last-child) {
  margin-bottom: 10px;
}
.get-in-touch__contact-box {
  margin: 40px 0 0 0;
  padding: 40px 40px 80px 40px;
  background-color: #131313;
  border-radius: 32px;
}
@media (min-width: 800px) {
  .get-in-touch__contact-box {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .get-in-touch__contact-box {
    margin: 0;
    width: 45%;
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@media (min-width: 1660px) {
  .get-in-touch__contact-box {
    -webkit-transform: translateY(-180px);
    -ms-transform: translateY(-180px);
    transform: translateY(-180px);
  }
}
.get-in-touch__accordion {
  margin-top: 20px;
}

.error {
  padding-top: 100px;
  padding-bottom: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-color: #131313;
  border-bottom: 1px solid rgba(217, 217, 217, 0.15);
  overflow: hidden;
}
@media (min-width: 375px) {
  .error {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .error {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .error {
    padding-bottom: calc(9.3896713615vw + 54.7887323944px);
  }
}
@media (min-width: 1440px) {
  .error {
    padding-bottom: 190px;
  }
}
.error:before {
  content: url("../img/about-decor.svg");
  display: block;
  position: absolute;
  top: 0;
  left: 10%;
}
.error__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.error__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.error__mark {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: 20px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  color: #ff9900;
  text-transform: uppercase;
}
@media (min-width: 375px) {
  .error__mark {
    font-size: calc(1.5023474178vw + 14.3661971831px);
  }
}
@media (min-width: 1440px) {
  .error__mark {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .error__mark {
    padding-left: 50px;
  }
}

.default-hero {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  background-color: #131313;
  overflow: hidden;
}
@media (min-width: 375px) {
  .default-hero {
    padding-top: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .default-hero {
    padding-top: 220px;
  }
}
@media (min-width: 375px) {
  .default-hero {
    padding-bottom: calc(11.2676056338vw + 57.7464788732px);
  }
}
@media (min-width: 1440px) {
  .default-hero {
    padding-bottom: 220px;
  }
}
.default-hero:before {
  content: url("../img/about-decor.svg");
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
.default-hero:after {
  content: url("../img/hotel-hero-decor.svg");
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (min-width: 768px) {
  .default-hero:before {
    display: block;
  }
}
@media (min-width: 1440px) {
  .default-hero:before {
    left: -10px;
  }
}
@media (min-width: 1660px) {
  .default-hero:before {
    left: 5%;
  }
}
@media (min-width: 1800px) {
  .default-hero:before {
    left: 8%;
  }
}
.default-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.section-content__main {
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: 1100px;
}
@media (min-width: 375px) {
  .section-content__main {
    padding-top: calc(3.7558685446vw + 45.9154929577px);
  }
}
@media (min-width: 1440px) {
  .section-content__main {
    padding-top: 100px;
  }
}
@media (min-width: 375px) {
  .section-content__main {
    padding-bottom: calc(3.7558685446vw + 45.9154929577px);
  }
}
@media (min-width: 1440px) {
  .section-content__main {
    padding-bottom: 100px;
  }
}

.content {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
}
@media (min-width: 375px) {
  .content {
    font-size: calc(0.3755868545vw + 12.5915492958px);
  }
}
@media (min-width: 1440px) {
  .content {
    font-size: 18px;
  }
}
.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0;
  color: #ff9900;
  text-transform: uppercase;
}
.content h1:not(:last-child), .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content h6:not(:last-child) {
  margin-top: 36px;
}
.content h1:not(:last-child), .content h2:not(:last-child), .content h3:not(:last-child), .content h4:not(:last-child), .content h5:not(:last-child), .content h6:not(:last-child) {
  margin-bottom: 16px;
}
.content h2 {
  font-size: 24px;
}
@media (min-width: 375px) {
  .content h2 {
    font-size: calc(0.7511737089vw + 21.1830985915px);
  }
}
@media (min-width: 1440px) {
  .content h2 {
    font-size: 32px;
  }
}
.content h3 {
  font-size: 24px;
}
@media (min-width: 375px) {
  .content h3 {
    font-size: calc(0.5633802817vw + 21.8873239437px);
  }
}
@media (min-width: 1440px) {
  .content h3 {
    font-size: 30px;
  }
}
.content h4 {
  font-size: 22px;
}
@media (min-width: 375px) {
  .content h4 {
    font-size: calc(0.5633802817vw + 19.8873239437px);
  }
}
@media (min-width: 1440px) {
  .content h4 {
    font-size: 28px;
  }
}
.content h5, .content h6 {
  font-size: 20px;
}
@media (min-width: 375px) {
  .content h5, .content h6 {
    font-size: calc(0.5633802817vw + 17.8873239437px);
  }
}
@media (min-width: 1440px) {
  .content h5, .content h6 {
    font-size: 26px;
  }
}
.content ul:not(:last-child), .content ol:not(:last-child), .content p:not(:last-child) {
  margin-top: 16px;
}
.content ul:not(:last-child), .content ol:not(:last-child), .content p:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .content ul:not(:last-child), .content ol:not(:last-child), .content p:not(:last-child) {
    margin-top: 24px;
  }
  .content ul:not(:last-child), .content ol:not(:last-child), .content p:not(:last-child) {
    margin-bottom: 24px;
  }
}
.content ul {
  margin-left: 20px;
  list-style: disc;
}
.content ol {
  list-style: decimal;
}
.content strong {
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.content a {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: underline;
}

.explore {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #232323;
}
.explore:before {
  content: url("../img/explore-decor.svg");
  display: block;
  position: absolute;
  left: -300px;
  bottom: -112px;
}
@media (min-width: 1024px) {
  .explore:before {
    left: -80px;
    bottom: -4px;
  }
}
@media (min-width: 1200px) {
  .explore {
    padding-top: 20px;
  }
}
@media (min-width: 1200px) {
  .explore__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.explore__content {
  padding-left: 8%;
}
@media (min-width: 768px) {
  .explore__content {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .explore__content {
    width: 47%;
  }
}
.explore__description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 16px 0 50px 0;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}
.explore__image {
  margin: 70px 0 0 0;
  position: relative;
  background-image: url("../img/explore-image-decor.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.explore__image img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 180px;
  -webkit-transform: translateY(-50px) translateX(50px);
  -ms-transform: translateY(-50px) translateX(50px);
  transform: translateY(-50px) translateX(50px);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  z-index: 10;
}
@media (min-width: 768px) {
  .explore__image {
    margin: 80px auto 0;
    width: 70%;
  }
}
@media (min-width: 1024px) {
  .explore__image {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .explore__image {
    margin: 0;
    width: 35%;
  }
}
@media (any-hover: hover) {
  .explore__image:hover img {
    -webkit-transform: translateY(0) translateX(0);
    -ms-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
}

@media (min-width: 1200px) {
  .page-template-page-hotel-review .explore {
    padding-top: 108px;
    padding-bottom: 60px;
  }
}

/*# sourceMappingURL=main.css.map */
