@charset "UTF-8";
/**
 * Discover arrow: data URI so the icon works from any compiled CSS.
 * A file path like `url('./img/arrow.svg')` resolves relative to the generated
 * .css: OK for `scss/main.css` → `scss/img/`, broken for `blocks/.../css/*.css`.
 */
/**
 * Breakpoints
 */
/**
 * Functions
 */
/**
 * Mixin core
 */
/**
 * Full-bleed a swiper stage out of its centered container so slides (and the
 * side nav arrows anchored to it) reach the viewport edges on mobile.
 * The intro/content sibling keeps its container padding.
 *
 * $flex-centered: pass true when the target is a flex ITEM inside a
 * flex column with `align-items: center` (e.g. highlights cards-stage): the
 * flex centering already lands the 100vw box at the viewport edges, so the
 * negative inline margin must be omitted to avoid a double shift. For normal
 * block-flow parents (gallery, awards, post_preview) leave it false.
 */
:root {
  --primary-font: "Bricolage Grotesque", sans-serif;
  --highlight-font: "Baskervville", serif;
}
:root:lang(ja) {
  --primary-font: "Noto Sans JP", sans-serif;
  --highlight-font: "Noto Serif JP", serif;
}
:root:lang(zh-hans) {
  --primary-font: "Noto Sans SC", sans-serif;
  --highlight-font: "Noto Serif SC", serif;
}
:root:lang(zh-hant) {
  --primary-font: "Noto Sans TC", sans-serif;
  --highlight-font: "Noto Serif TC", serif;
}
:root:lang(ko) {
  --primary-font: "Noto Sans KR", sans-serif;
  --highlight-font: "Noto Serif KR", serif;
}
:root {
  --big_title_size: 72px;
  --title_size: 52px;
  --small_title_size: 42px;
  --subtitle_size: 22px;
  --body_size: 18px;
  --big_content_size: 22px;
  --prev_title_size: 32px;
  --prev_title_small_size: 24px;
  --prev_content_size: 16px;
}
@media screen and (max-width: 1198px) {
  :root {
    --big_title_size: 32px;
    --title_size: 32px;
    --small_title_size: 32px;
    --subtitle_size: 18px;
    --body_size: 18px;
    --big_content_size: 20px;
    --prev_title_size: 26px;
    --prev_title_small_size: 22px;
    --prev_content_size: 16px;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1599px) {
  :root {
    --big_title_size: 48px;
    --title_size: 40px;
    --small_title_size: 40px;
    --subtitle_size: 22px;
    --body_size: 18px;
    --big_content_size: 22px;
    --prev_title_size: 32px;
    --prev_title_small_size: 24px;
    --prev_content_size: 16px;
  }
}
:root {
  --bg: #f8f8f8;
  --bg-alt: #ffffff;
  --body-color: #005272;
  --body-color-alt: #888888;
  --stroke: #dddddd;
  --highlight-color-group: #224982;
  --highlight-color-hotel: #00a1e0;
  --highlight-color-as: #ffffff;
  --title-color: #173259;
  --subtitle-color: #005272;
  --primary-color: #00729e;
  --primary-color-as: #ffffff;
  --secondary-color: #aba124;
  --secondary-color-as: #ffffff;
  --hover-color: #aba124;
  --hover-color-as: #ffffff;
  --header-bg: #ffffff;
  --header-color: var(--body-color);
  --header-highlight-color-hotel: var(--highlight-color-hotel);
  --header-highlight-color-group: var(--highlight-color-group);
  --bf-bg-group: #12294a;
  --bf-bg-hotel: #003e57;
  --bf-color: #eeeeee;
  --bf-highlight-color-hotel: var(--highlight-color-hotel);
  --bf-highlight-color-group: var(--highlight-color-group);
  --footer-bg-group: #0d1c33;
  --footer-bg-hotel: #003e57;
  --footer-color: #eeeeee;
  --footer-highlight-color: #ffffff;
  --dark-bg-hotel: #003e57;
  --dark-bg-group: #12294a;
  --dark-body-color: #eeeeee;
  --dark-subtitle-color: #eeeeee;
  --dark-title-color: #ffffff;
  --dark-primary-color: #ffffff;
  --dark-primary-color-as: #00729e;
  --btn-external-bg-hotel: var(--highlight-color-hotel);
  --btn-external-bg-group: var(--highlight-color-group);
  --btn-internal-bg-hotel: transparent;
  --btn-internal-bg-group: transparent;
  --btn-internal-outline-hotel: var(--highlight-color-hotel);
  --btn-internal-outline-group: var(--highlight-color-group);
  --button-padding: 25px;
  --container-full-padding: 340px;
  --button-radius: 5px;
  --card-radius: 15px;
}
@media screen and (max-width: 1198px) {
  :root {
    --button-padding: 20px;
    --container-full-padding: 30px;
  }
}

.uh-anchor-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 24px;
  box-sizing: border-box;
  min-height: 45px;
}
.uh-anchor-pills > .uh-anchor-pills__arrow,
.uh-anchor-pills > .uh-anchor-pills__swiper {
  position: relative;
  z-index: 1;
}
.uh-anchor-pills .uh-anchor-pills__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--bg-alt);
  color: var(--body-color);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.uh-anchor-pills .uh-anchor-pills__arrow:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.uh-anchor-pills .uh-anchor-pills__arrow span {
  display: block;
  line-height: 1;
}
.uh-anchor-pills.slider_is_visible .uh-anchor-pills__arrow {
  opacity: 1;
  pointer-events: auto;
}
.uh-anchor-pills.slider_is_visible .uh-anchor-pills__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.uh-anchor-pills.slider_is_visible .uh-anchor-pills__swiper {
  justify-content: flex-start;
}
.uh-anchor-pills:not(.slider_is_visible) .uh-anchor-pills__swiper .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  gap: 10px;
  box-sizing: border-box;
}
.uh-anchor-pills .uh-anchor-pills__line {
  flex: 1 1 0;
  min-width: 0;
  height: 1px;
  align-self: center;
  background: var(--stroke);
}
@media screen and (max-width: 1198px) {
  .uh-anchor-pills .uh-anchor-pills__line {
    display: none;
  }
}
.uh-anchor-pills .uh-anchor-pills__swiper {
  min-width: 0;
  max-width: 1120px;
  min-height: 45px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: width 0.3s ease, max-width 0.3s ease;
}
.uh-anchor-pills .uh-anchor-pills__swiper.swiper {
  max-width: 1120px;
  margin-inline: auto;
  gap: 40px;
}
.uh-anchor-pills .uh-anchor-pills__swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-width: 1120px;
  box-sizing: border-box;
}
.uh-anchor-pills .uh-anchor-pills__swiper .swiper-slide {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  flex-shrink: 0;
  margin-inline-end: 10px;
}
.uh-anchor-pills .uh-anchor-pills__swiper .swiper-slide:last-child {
  margin-inline-end: 0;
}
.uh-anchor-pills .uh-anchor-pills__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 45px;
  padding: 0 20px;
  border-radius: 50px;
  border: 1px solid var(--stroke);
  background: var(--bg-alt);
  color: var(--body-color);
  font-family: var(--primary-font);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.uh-anchor-pills .uh-anchor-pills__link.is-active, .uh-anchor-pills .uh-anchor-pills__link.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--primary-color-as);
}
.uh-anchor-pills .uh-anchor-pills__link:hover:not(.is-active):not(.active) {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.uh-anchor-pills .uh-anchor-pills__link.is-active:hover, .uh-anchor-pills .uh-anchor-pills__link.active:hover {
  color: var(--primary-color-as);
}
.uh-anchor-pills .uh-anchor-pills__link-text {
  display: block;
  max-width: 280px;
  padding: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
@media screen and (min-width: 1400px) {
  .uh-anchor-pills .uh-anchor-pills__link-text {
    max-width: 320px;
  }
}
@media screen and (max-width: 1198px) {
  .uh-anchor-pills {
    max-width: none;
    padding-inline: 5px;
    gap: 0;
    min-height: 40px;
  }
  .uh-anchor-pills .uh-anchor-pills__arrow {
    border: none;
    background: transparent;
    color: var(--primary-color);
  }
  .uh-anchor-pills .uh-anchor-pills__arrow:hover {
    border: none;
    color: var(--primary-color);
    background: transparent;
  }
  .uh-anchor-pills .uh-anchor-pills__arrow span {
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
  }
  .uh-anchor-pills .uh-anchor-pills__swiper {
    min-height: 40px;
    max-width: none;
  }
  .uh-anchor-pills .uh-anchor-pills__swiper.swiper {
    gap: 0;
    max-width: none;
  }
  .uh-anchor-pills .uh-anchor-pills__swiper .swiper-wrapper {
    max-width: none;
  }
  .uh-anchor-pills .uh-anchor-pills__link {
    min-height: 40px;
    padding: 0 15px;
    font-size: 14px;
    letter-spacing: 1.4px;
  }
  .uh-anchor-pills .uh-anchor-pills__link-text {
    max-width: 220px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  height: 100%;
  margin: 0;
  font-family: var(--primary-font);
  color: var(--body-color);
  background: var(--bg);
}

a,
button,
.btn,
input,
textarea {
  transition: all 0.3s ease;
}

input,
select {
  font-family: var(--primary-font);
  font-size: 18px;
  line-height: 110%;
  font-weight: 400;
}

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

p {
  margin: 0;
  line-height: 130%;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
}

.otgs-development-site-front-end {
  display: none;
}

h1.title,
h2.title {
  font-size: var(--title_size);
  font-family: var(--highlight-font);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 100%;
  color: var(--title-color);
}
h1.title:lang(ja), h1.title:lang(zh-hans), h1.title:lang(zh-hant), h1.title:lang(ko),
h2.title:lang(ja),
h2.title:lang(zh-hans),
h2.title:lang(zh-hant),
h2.title:lang(ko) {
  font-weight: 600;
  text-transform: none;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

h3.title,
h4.title {
  font-size: var(--small_title_size);
  font-family: var(--highlight-font);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 100%;
  color: var(--title-color);
}
h3.title:lang(ja), h3.title:lang(zh-hans), h3.title:lang(zh-hant), h3.title:lang(ko),
h4.title:lang(ja),
h4.title:lang(zh-hans),
h4.title:lang(zh-hant),
h4.title:lang(ko) {
  font-weight: 600;
  text-transform: none;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.big_title {
  font-size: var(--big_title_size);
  font-family: var(--highlight-font);
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
}
.big_title:lang(ja), .big_title:lang(zh-hans), .big_title:lang(zh-hant), .big_title:lang(ko) {
  font-weight: 600;
  text-transform: none;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.prev_title {
  font-size: var(--prev_title_size);
  font-family: var(--highlight-font);
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.prev_title:lang(ja), .prev_title:lang(zh-hans), .prev_title:lang(zh-hant), .prev_title:lang(ko) {
  font-weight: 600;
  text-transform: none;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.prev_title_small {
  font-size: var(--prev_title_small_size);
  font-weight: 700;
  line-height: 130%;
}
.prev_title_small:lang(ja), .prev_title_small:lang(zh-hans), .prev_title_small:lang(zh-hant), .prev_title_small:lang(ko) {
  font-weight: 500;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.prev_title_content {
  font-family: var(--primary-font);
  font-size: var(--subtitle_size);
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 3.3px;
  text-transform: uppercase;
}
.prev_title_content:lang(ja), .prev_title_content:lang(zh-hans), .prev_title_content:lang(zh-hant), .prev_title_content:lang(ko) {
  text-transform: none;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.subtitle_content {
  font-family: var(--primary-font);
  font-size: var(--big_content_size);
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
.subtitle_content:lang(ja), .subtitle_content:lang(zh-hans), .subtitle_content:lang(zh-hant), .subtitle_content:lang(ko) {
  font-weight: 500;
  word-break: normal;
  line-break: strict;
  text-wrap: balance;
  word-break: auto-phrase;
}

.content {
  font-weight: 400;
  line-height: 180%;
}

.container {
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 350px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1199px) {
  .container {
    max-width: 900px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1120px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1240px;
  }
}
.container_large {
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container_large {
    width: min(350px, 100% - 60px);
    max-width: 350px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1198px) {
  .container_large {
    max-width: 720px;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1199px) {
  .container_large {
    max-width: 940px;
  }
}
@media screen and (min-width: 1400px) {
  .container_large {
    max-width: 1240px;
  }
}
@media screen and (min-width: 1600px) {
  .container_large {
    max-width: 1400px;
  }
}

.section {
  box-sizing: border-box;
  padding-block: 75px;
}
@media screen and (max-width: 1198px) {
  .section {
    padding-block: 50px;
  }
}
@media screen and (max-width: 1198px) {
  .section:not(:has(.container)):not(:has(.container_large)) {
    padding-inline: 30px;
  }
}
.section.uh-services {
  padding-block: 150px;
}
@media screen and (max-width: 1198px) {
  .section.uh-services {
    padding-block: 80px;
  }
}
.section.de_last {
  padding-bottom: 150px;
}
@media screen and (max-width: 1198px) {
  .section.de_last {
    padding-bottom: 100px;
  }
}

.btns_wrap {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .btns_wrap {
    gap: 10px;
    justify-content: center;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btns_wrap {
    width: auto;
  }
}

button {
  border: 0;
  cursor: pointer;
  font-family: var(--primary-font);
  background: transparent;
}

.btn span {
  text-transform: initial;
}

.btn a span {
  text-transform: initial;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .btn {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btn {
    width: auto;
  }
}
.btn:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.btn.btn_external {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .btn.btn_external {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btn.btn_external {
    width: auto;
  }
}
.btn.btn_external:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .btn.btn_external {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .btn.btn_external:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .btn.btn_external {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .btn.btn_external:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.btn.btn_internal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .btn.btn_internal {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btn.btn_internal {
    width: auto;
  }
}
.btn.btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .btn.btn_internal {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .btn.btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .btn.btn_internal {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .btn.btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.btn.btn_booknow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .btn.btn_booknow {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btn.btn_booknow {
    width: auto;
  }
}
.btn.btn_booknow:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .btn.btn_booknow {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .btn.btn_booknow:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .btn.btn_booknow {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .btn.btn_booknow:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.btn.btn_booknow::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url(img/bell.svg) no-repeat center;
  mask: url(img/bell.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn.book-room {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .btn.book-room {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .btn.book-room {
    width: auto;
  }
}
.btn.book-room:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .btn.book-room {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .btn.book-room:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .btn.book-room {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .btn.book-room:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.btn.book-room::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url(img/arrow.svg) no-repeat center;
  mask: url(img/arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.btn.btnPdf i {
  transition: all 0.6s ease;
}
.btn.btnPdf:hover {
  background-color: transparent;
  color: var(--hover-color);
  border: none;
}
.btn.btnPdf:hover i {
  color: var(--hover-color);
}

.discover_more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--body-color);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  border: none;
}
.site-group .discover_more .fa-arrow-right {
  color: var(--highlight-color-group);
}
.site-hotel .discover_more .fa-arrow-right {
  color: var(--highlight-color-hotel);
}
.discover_more .discover_more_text {
  position: relative;
}
.site-group .discover_more .discover_more_text:hover, .site-group .discover_more .discover_more_text:focus {
  color: var(--highlight-color-group);
}
.site-hotel .discover_more .discover_more_text:hover, .site-hotel .discover_more .discover_more_text:focus {
  color: var(--highlight-color-hotel);
}
.discover_more .discover_more_text:hover::after, .discover_more .discover_more_text:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.discover_more .discover_more_text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .discover_more .discover_more_text::after {
  background: var(--highlight-color-group);
}
.site-hotel .discover_more .discover_more_text::after {
  background: var(--highlight-color-hotel);
}

.uh-property-social__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.uh-property-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
  padding: 0;
}
.site-group .uh-property-social__link {
  background: var(--highlight-color-group);
}
.site-hotel .uh-property-social__link {
  background: var(--highlight-color-hotel);
}
.uh-property-social__link:hover, .uh-property-social__link:focus-visible {
  background: var(--hover-color);
  transform: translateY(-1px);
}
.uh-property-social__link i {
  font-size: 1.125rem;
}

.uh-property-social__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.swiper-navigation-icon {
  display: none;
}

.f-button.is-close-button {
  top: 20px;
  right: 20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.f-button.is-close-button svg {
  width: 15px;
  height: 15px;
}
.f-button.is-close-button:hover {
  color: var(--hover-color);
  border-color: var(--hover-color);
}
@media screen and (max-width: 1198px) {
  .f-button.is-close-button {
    top: 10px;
    right: 10px;
  }
}

.block-gallery {
  display: flex;
  align-items: flex-start;
  flex: 1 0 0;
  position: relative;
  width: 50%;
}
@media screen and (max-width: 1198px) {
  .block-gallery {
    width: 100%;
  }
}
.block-gallery--stamp-only {
  position: relative;
  width: auto;
  flex: 0 0 auto;
  min-height: 1px;
}
.block-gallery__stamp {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -70px;
  display: flex;
  box-sizing: border-box;
  width: 150px;
  height: 150px;
  transform: rotate(5deg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  isolation: isolate;
  background-image: url("img/star.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.additional-content-repeater__row .block-gallery__stamp {
  width: 120px;
  height: 120px;
  top: -30px;
  right: -30px;
}
@media screen and (max-width: 1198px) {
  .block-gallery__stamp {
    top: 0;
    left: 7%;
    width: 100px;
    height: 100px;
  }
}
.block-gallery__stamp::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 3.6%;
  background: url("img/star-border.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
}
.block-gallery__stamp .icon {
  font-size: 40px;
  color: var(--secondary-color-as);
}
@media screen and (max-width: 1198px) {
  .block-gallery__stamp .icon {
    font-size: 32px;
  }
}
.block-gallery__stamp-desc {
  color: var(--secondary-color-as);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media screen and (max-width: 1198px) {
  .block-gallery__stamp-desc {
    font-size: 9px;
  }
}
.block-gallery__img {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-sizing: border-box;
  border: 10px solid var(--bg-alt);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.block-gallery--image-card-layout-off .block-gallery__img {
  border: 8px solid var(--bg-alt);
  border: none;
  box-shadow: none;
}
.block-gallery__img--no-card {
  border: none;
  box-shadow: none;
}
.block-gallery__img--contain {
  object-fit: contain;
}
.block-gallery--multiple {
  align-self: center;
  width: 100%;
  justify-content: flex-end;
  max-width: 530px;
  padding-left: 200px;
}
@media screen and (max-width: 1198px) {
  .block-gallery--multiple {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 0 0 24px 64px;
  }
}
.block-gallery--multiple .block-gallery__img {
  transform: rotate(4deg);
  width: 100%;
}
.block-gallery--multiple .block-gallery__img--contain {
  bottom: 50px;
  max-height: 415px;
  max-width: 415px;
}
@media screen and (max-width: 1198px) {
  .block-gallery--multiple .block-gallery__img {
    max-height: 280px;
  }
}
.block-gallery--multiple .block-gallery__img:first-of-type {
  min-height: 510px;
  max-width: 370px;
}
@media screen and (max-width: 1198px) {
  .block-gallery--multiple .block-gallery__img:first-of-type {
    max-height: 320px;
    max-width: 240px;
    min-height: 320px;
  }
}
.block-gallery--multiple .block-gallery__img:last-of-type {
  position: absolute;
  left: 0;
  bottom: -0.005px;
  transform: rotate(355deg);
  max-height: 370px;
  max-width: 280px;
}
@media screen and (max-width: 1198px) {
  .block-gallery--multiple .block-gallery__img:last-of-type {
    max-height: 180px;
    max-width: 150px;
  }
}
.block-gallery--multiple .block-gallery__img--contain:last-of-type {
  object-fit: contain;
  bottom: 50px;
  max-height: 415px;
  max-width: 415px;
}

.block-content .content {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.block-content .content ul,
.block-content .content li {
  list-style: inherit;
}
.block-content .content li {
  margin-left: 20px;
}
.block-content .content table {
  width: max-content;
  min-width: 100%;
  max-width: none;
  border-collapse: collapse;
  border: 1px solid var(--stroke);
  table-layout: auto;
}
.block-content .content table tr:nth-child(odd) {
  background: #ffffff;
}
.block-content .content table tr:nth-child(even) {
  background: #f8f8f8;
}
.block-content .content table th,
.block-content .content table td {
  padding: 15px 10px;
  border: 1px solid var(--stroke);
  text-align: center;
}
.block-content .content table tr:nth-child(5n+2) th:first-child,
.block-content .content table tr:nth-child(5n+2) td:first-child {
  background: #f8f8f8;
}
.block-content .content table tr:nth-child(5n+3) th:first-child,
.block-content .content table tr:nth-child(5n+3) td:first-child {
  background: #d9f2d0;
}
.block-content .content table tr:nth-child(5n+4) th:first-child,
.block-content .content table tr:nth-child(5n+4) td:first-child {
  background: #f6ecf5;
}
.block-content .content table tr:nth-child(5n) th:first-child,
.block-content .content table tr:nth-child(5n) td:first-child {
  background: #e3f3fa;
}
.block-content .content table tr:nth-child(5n+1) th:first-child,
.block-content .content table tr:nth-child(5n+1) td:first-child {
  background: #fafabf;
}
.block-content .content table tr:first-child th:first-child,
.block-content .content table tr:first-child td:first-child {
  background: #ffffff;
}
@media screen and (max-width: 1198px) {
  .block-content .content table th,
  .block-content .content table td {
    padding: 12px 8px;
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
  }
}

.uh-split-dialog.f-html {
  box-sizing: border-box;
  padding: 0;
  border-radius: 15px;
  max-width: 1000px;
  width: 100%;
  min-height: 500px;
}
@media screen and (max-width: 1198px) {
  .uh-split-dialog.f-html {
    max-width: 500px;
  }
}

.uh-split-dialog__surface {
  background: var(--bg-alt);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.uh-split-dialog__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-width: 0;
  gap: 0;
  min-height: 0;
  flex: 1 1 auto;
}

.uh-split-dialog__surface .uh-split-dialog__media {
  flex: 0 0 460px;
  width: 460px;
  max-width: 50%;
  align-self: stretch;
  min-height: 350px;
  height: auto;
  position: relative;
  overflow: hidden;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
@media screen and (max-width: 1198px) {
  .uh-split-dialog__surface .uh-split-dialog__media {
    border-bottom-left-radius: 0;
    border-top-right-radius: 15px;
  }
}
.uh-split-dialog__surface .uh-split-dialog__media .uh-split-dialog__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.uh-split-dialog__surface .uh-split-dialog__body {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  padding: 60px 60px 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.uh-split-dialog__surface .uh-split-dialog__title {
  margin: 0;
  color: var(--title-color);
}
.uh-split-dialog__surface .uh-split-dialog__title a {
  color: inherit;
  text-decoration: none;
}
.uh-split-dialog__surface .uh-split-dialog__title a:hover, .uh-split-dialog__surface .uh-split-dialog__title a:focus-visible {
  color: var(--hover-color);
}

.uh-split-dialog__price {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 1198px) {
  .uh-split-dialog__price {
    text-align: center;
  }
}
.uh-split-dialog__price .uh-hotels-list__price-from {
  color: var(--primary-color);
}
.uh-split-dialog__price .uh-hotels-list__price-amount {
  color: var(--title-color);
}

.uh-split-dialog__surface .uh-split-dialog__excerpt {
  font-size: var(--prev-content-size, 16px);
  line-height: 1.5;
  color: var(--body-color);
  line-clamp: unset;
  -webkit-line-clamp: unset;
  display: block;
  overflow: visible;
  max-height: none;
}
.uh-split-dialog__surface .uh-split-dialog__excerpt p {
  margin: 0 0 0.75em;
}
.uh-split-dialog__surface .uh-split-dialog__excerpt p:last-child {
  margin-bottom: 0;
}

.uh-split-dialog__surface .uh-split-dialog__actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--stroke);
}
@media screen and (max-width: 1198px) {
  .uh-split-dialog__surface .uh-split-dialog__actions {
    justify-content: center;
  }
}
@media screen and (max-width: 1198px) {
  .uh-split-dialog__surface .uh-split-dialog__actions .btn {
    flex: 1 1 auto;
  }
}

@media screen and (max-width: 1198px) {
  .uh-split-dialog__row {
    flex-direction: column;
  }
  .uh-split-dialog__surface .uh-split-dialog__media {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    min-height: 220px;
    aspect-ratio: 370/231;
  }
  .uh-split-dialog__surface .uh-split-dialog__body {
    padding: 20px 15px 15px;
  }
}
.uh-post-preview .main-content__actions .btn_internal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .uh-post-preview .main-content__actions .btn_internal {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .uh-post-preview .main-content__actions .btn_internal {
    width: auto;
  }
}
.uh-post-preview .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .uh-post-preview .main-content__actions .btn_internal {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .uh-post-preview .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .uh-post-preview .main-content__actions .btn_internal {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .uh-post-preview .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.uh-post-preview .main-content__actions .btn_internal::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url(../scss/img/arrow.svg) no-repeat center;
  mask: url(../scss/img/arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.uh-post-preview--bg-transparent .main-content__actions .btn_internal {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .uh-post-preview--bg-transparent .main-content__actions .btn_internal {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .uh-post-preview--bg-transparent .main-content__actions .btn_internal {
    width: auto;
  }
}
.uh-post-preview--bg-transparent .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .uh-post-preview--bg-transparent .main-content__actions .btn_internal {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .uh-post-preview--bg-transparent .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .uh-post-preview--bg-transparent .main-content__actions .btn_internal {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .uh-post-preview--bg-transparent .main-content__actions .btn_internal:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.uh-post-preview--bg-transparent .main-content__actions .btn_internal::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--body-color);
  -webkit-mask: url(../scss/img/arrow.svg) no-repeat center;
  mask: url(../scss/img/arrow.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.uh-post-preview--bg-transparent .main-content__actions .btn_internal:hover::before {
  background: var(--hover-color-as);
}

.post-preview-item--card-img-bg .post-preview-item__card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--uh-pp-card-radius, 15px);
  padding: 0;
  height: 570px;
  min-height: 570px;
  max-height: 570px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: var(--bg-alt);
}
.post-preview-item--card-img-bg .post-preview-item__card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background-image: var(--pp-card-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.post-preview-item--card-img-bg .post-preview-item__card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  pointer-events: none;
}
.post-preview-item--card-img-bg .post-preview-item__card:hover .post-preview-item__card-bg::after,
.post-preview-item--card-img-bg .post-preview-item__card:focus-within .post-preview-item__card-bg::after {
  background: rgba(0, 0, 0, 0.7);
}
.post-preview-item--card-img-bg .post-preview-item__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  align-self: stretch;
  min-height: 0;
  height: 100%;
  padding: 0;
  gap: 0;
}
.post-preview-item--card-img-bg .post-preview-item__overlay-main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 0;
  padding: 60px 20px 20px 20px;
  gap: 0;
}
.post-preview-item--card-img-bg .post-preview-item__hover-excerpt {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
}
.post-preview-item--card-img-bg .post-preview-item__title--on-image {
  color: #fff;
}
.post-preview-item--card-img-bg .post-preview-item__title--on-image a {
  color: inherit;
  text-decoration: none;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.post-preview-item--card-img-bg .post-preview-item__title--on-image a:hover {
  text-shadow: none;
}
.post-preview-item--card-img-bg .post-preview-item__excerpt--on-image {
  width: 300px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.post-preview-item--card-img-bg .post-preview-item__excerpt--on-image p {
  margin: 0;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: auto;
  padding: 20px 20px 24px;
  border-top: 1px solid rgba(221, 221, 221, 0.45);
  justify-content: center;
  gap: 20px;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image .discover_more {
  color: #fff;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image .discover_more i {
  color: #fff;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image .discover_more .discover_more_text {
  color: #fff;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image .discover_more .discover_more_text:hover {
  color: inherit;
}
.post-preview-item--card-img-bg .post-preview-item__actions--on-image .discover_more .discover_more_text:hover::after {
  background: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .post-preview-item--card-img-bg .post-preview-item__excerpt--on-image {
    opacity: 0;
    visibility: hidden;
  }
  .post-preview-item--card-img-bg .post-preview-item__card:hover .post-preview-item__excerpt--on-image,
  .post-preview-item--card-img-bg .post-preview-item__card:focus-within .post-preview-item__excerpt--on-image {
    opacity: 1;
    visibility: visible;
  }
}
@media (hover: none), (pointer: coarse) {
  .post-preview-item--card-img-bg .post-preview-item__excerpt--on-image {
    opacity: 1;
    visibility: visible;
  }
}

#error-page {
  padding-top: 300px;
}
#error-page .error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
#error-page .error-content .btns_wrap {
  justify-content: center;
}

@media screen and (min-width: 1199px) and (max-width: 1399px) {
  #trip_ai_container {
    bottom: 170px !important;
  }
}
@media screen and (max-width: 1198px) {
  #trip_ai_container {
    bottom: 80px !important;
  }
}

.uh-swiper-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.uh-swiper-nav i {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}
.uh-swiper-nav.swiper-button-disabled {
  display: none;
}
.uh-swiper-nav--prev {
  left: 0;
}
.uh-swiper-nav--next {
  right: 0;
}

[dir=rtl] .uh-swiper-nav--prev {
  left: auto;
  right: 0;
}

[dir=rtl] .uh-swiper-nav--next {
  right: auto;
  left: 0;
}

@media screen and (max-width: 1198px) {
  .uh-swiper-nav.uh-swiper-nav--prev {
    left: 0;
    right: auto;
    border-radius: 0 80px 80px 0;
    border-left-width: 0;
    padding: 0 5px 0 0;
  }
  .uh-swiper-nav.uh-swiper-nav--next {
    left: auto;
    right: 0;
    border-radius: 80px 0 0 80px;
    border-right-width: 0;
    padding: 0 0 0 5px;
  }
  [dir=rtl] .uh-swiper-nav.uh-swiper-nav--prev {
    left: auto;
    right: 0;
    border-radius: 80px 0 0 80px;
    border-left-width: 1px;
    border-right-width: 0;
    padding: 0 0 0 5px;
  }
  [dir=rtl] .uh-swiper-nav.uh-swiper-nav--next {
    left: 0;
    right: auto;
    border-radius: 0 80px 80px 0;
    border-right-width: 1px;
    border-left-width: 0;
    padding: 0 5px 0 0;
  }
}
.screen-reader-text {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 900;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  height: 100px;
  width: 100%;
}
.site-header.is-site-header-fixed, .site-header.absolute.is-site-header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}
.site-header.is-site-header-fixed .site-header__inner, .site-header.absolute.is-site-header-fixed .site-header__inner {
  gap: 20px;
}
@media screen and (max-width: 1198px) {
  .site-header.is-site-header-fixed .site-header__inner, .site-header.absolute.is-site-header-fixed .site-header__inner {
    gap: 12px;
  }
}
.site-header.is-site-header-fixed .site-header__center, .site-header.absolute.is-site-header-fixed .site-header__center {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  order: -1;
  flex: 0 0 auto;
  align-self: center;
  margin: 0;
  text-align: left;
  pointer-events: auto;
}
.site-header.is-site-header-fixed .site-header__left, .site-header.absolute.is-site-header-fixed .site-header__left {
  flex: 1 1 auto;
  min-width: 0;
}
.site-header.is-site-header-fixed .site-header__right, .site-header.absolute.is-site-header-fixed .site-header__right {
  flex: 0 0 auto;
}
.site-header.is-site-header-fixed .site-header__logo, .site-header.absolute.is-site-header-fixed .site-header__logo {
  bottom: 0;
  padding: 0;
  width: 100px;
  height: 100px;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 1198px) {
  .site-header.is-site-header-fixed .site-header__logo, .site-header.absolute.is-site-header-fixed .site-header__logo {
    width: 70px;
    height: 70px;
  }
}
.site-header.is-site-header-fixed .site-header__logo-img, .site-header.absolute.is-site-header-fixed .site-header__logo-img {
  width: 80px;
  height: 80px;
}
@media screen and (max-width: 1198px) {
  .site-header.is-site-header-fixed .site-header__logo-img, .site-header.absolute.is-site-header-fixed .site-header__logo-img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1198px) {
  .site-header {
    height: 70px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  gap: 170px;
  margin-inline: auto;
  padding: 0 40px 0 60px;
  height: 100%;
}
@media screen and (max-width: 1198px) {
  .site-header__inner {
    padding: 0 10px;
    gap: 10px;
  }
}
.site-header__left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1198px) {
  .site-header__left {
    margin-left: 10px;
  }
}
.site-header__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  pointer-events: none;
}
.site-header__center .site-header__logo {
  pointer-events: auto;
}
.site-header__right {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1198px) {
  .site-header__right {
    margin-right: 10px;
  }
}
.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.site-header__burger:hover .site-header__burger-bar {
  background: var(--hover-color);
}
.site-header__burger-bar {
  display: block;
  height: 2px;
  width: 30px;
  background: var(--header-color);
  transition: all 0.3s ease;
}
.site-header__burger-bar:first-child {
  width: 20px;
}
@media screen and (min-width: 1199px) {
  .site-header__burger--mobile-only {
    display: none;
  }
}
@media screen and (max-width: 1198px) {
  .site-header__highlight {
    display: none;
  }
}
.site-header__highlight-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__highlight-menu .menu-item {
  display: flex;
  align-items: center;
}
.site-header__highlight-menu .menu-item a {
  text-decoration: none;
  white-space: nowrap;
  font-size: 16px;
  color: var(--header-color);
  position: relative;
}
.site-group .site-header__highlight-menu .menu-item a:hover, .site-group .site-header__highlight-menu .menu-item a:focus {
  color: var(--highlight-color-group);
}
.site-hotel .site-header__highlight-menu .menu-item a:hover, .site-hotel .site-header__highlight-menu .menu-item a:focus {
  color: var(--highlight-color-hotel);
}
.site-header__highlight-menu .menu-item a:hover::after, .site-header__highlight-menu .menu-item a:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-header__highlight-menu .menu-item a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .site-header__highlight-menu .menu-item a::after {
  background: var(--highlight-color-group);
}
.site-hotel .site-header__highlight-menu .menu-item a::after {
  background: var(--highlight-color-hotel);
}
.site-header__highlight-menu > .menu-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: var(--stroke);
  margin-left: 30px;
  margin-right: 30px;
}
.site-header__highlight-menu .menu-item-has-children {
  gap: 8px;
}
.site-header__highlight-menu .site-header__highlight-caret {
  cursor: pointer;
  font-size: 12px;
  color: var(--header-color);
  transition: transform 0.2s ease;
}
.site-header__highlight-menu .site-header__dropdown.is-open .site-header__highlight-caret {
  transform: rotate(180deg);
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel {
  top: 100%;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  min-width: 200px;
  margin-top: 10px;
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
}
.site-group .site-header__highlight-menu .sub-menu.site-header__dropdown-panel::before {
  border-bottom-color: var(--dark-bg-group);
}
.site-hotel .site-header__highlight-menu .sub-menu.site-header__dropdown-panel::before {
  border-bottom-color: var(--dark-bg-hotel);
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel .menu-item {
  display: block;
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel .menu-item::after {
  content: none;
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel .menu-item:not(:last-child) {
  margin-bottom: 12px;
}
.site-header__highlight-menu .sub-menu.site-header__dropdown-panel .menu-item a {
  color: var(--dark-title-color);
}
.site-header__logo {
  display: inline-block;
  padding: 10px;
  width: 160px;
  height: 160px;
  position: relative;
  bottom: -60px;
  background-color: var(--header-bg);
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .site-header__logo {
    width: 110px;
    padding: 7px;
    height: 110px;
    bottom: -30px;
  }
}
.site-header__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header__dropdown {
  position: relative;
  margin-left: 40px;
}
.site-header__dropdown-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .site-header__dropdown-toggle {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .site-header__dropdown-toggle {
    width: auto;
  }
}
.site-header__dropdown-toggle:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .site-header__dropdown-toggle {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .site-header__dropdown-toggle:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .site-header__dropdown-toggle {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .site-header__dropdown-toggle:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-header__dropdown-panel {
  position: absolute;
  top: auto;
  right: 0;
  width: 100%;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 120;
  border-radius: var(--button-radius);
  color: var(--dark-title-color);
  min-width: 60px;
}
.site-group .site-header__dropdown-panel {
  background: var(--dark-bg-group);
}
.site-hotel .site-header__dropdown-panel {
  background: var(--dark-bg-hotel);
}
.site-header__dropdown-panel[hidden] {
  display: none;
}
.site-header__dropdown.is-open .site-header__dropdown-panel:not([hidden]) {
  display: block;
}
@media screen and (max-width: 1198px) {
  .site-header__membership, .site-header__btn-booknow {
    display: none !important;
  }
}
.site-header__membership-panel {
  padding: 30px 20px 25px 20px;
  min-width: 280px;
}
.site-header__membership-panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.site-header__membership-panel-inner-links {
  display: flex;
  gap: 10px;
  width: 100%;
}
.site-header__membership-panel-inner-links .btn {
  width: 100%;
}
.site-header__membership-panel-inner-links .btn.btn-join {
  background-color: var(--highlight-color-as);
  color: var(--body-color);
}
.site-header__membership-panel-inner-links .btn.btn-join:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-header__membership-panel-inner-links .btn.btn-sign-in {
  border: 1px solid var(--highlight-color-as);
  color: var(--highlight-color-as);
  background-color: transparent;
}
.site-header__membership-panel-inner-links .btn.btn-sign-in:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}
.site-header__contact {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1198px) {
  .site-header__contact {
    display: none;
  }
}
.site-header__contact-link {
  position: relative;
}
.site-group .site-header__contact-link:hover, .site-group .site-header__contact-link:focus {
  color: var(--highlight-color-group);
}
.site-hotel .site-header__contact-link:hover, .site-hotel .site-header__contact-link:focus {
  color: var(--highlight-color-hotel);
}
.site-header__contact-link:hover::after, .site-header__contact-link:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-header__contact-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .site-header__contact-link::after {
  background: var(--highlight-color-group);
}
.site-hotel .site-header__contact-link::after {
  background: var(--highlight-color-hotel);
}
.site-header__lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.site-header__lang-switcher::before {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: var(--stroke);
  margin-left: 30px;
  margin-right: 30px;
}
.site-header__lang-switcher.is-open .lang-switcher__caret {
  transform: rotate(180deg);
}
.site-header__lang-switcher .lang-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.site-group .site-header__lang-switcher .lang-switcher__toggle:hover, .site-group .site-header__lang-switcher .lang-switcher__toggle:focus {
  color: var(--highlight-color-group);
}
.site-hotel .site-header__lang-switcher .lang-switcher__toggle:hover, .site-hotel .site-header__lang-switcher .lang-switcher__toggle:focus {
  color: var(--highlight-color-hotel);
}
.site-header__lang-switcher .lang-switcher__toggle:hover::after, .site-header__lang-switcher .lang-switcher__toggle:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-header__lang-switcher .lang-switcher__toggle::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .site-header__lang-switcher .lang-switcher__toggle::after {
  background: var(--highlight-color-group);
}
.site-hotel .site-header__lang-switcher .lang-switcher__toggle::after {
  background: var(--highlight-color-hotel);
}
.site-header__lang-switcher .lang-switcher__code {
  font-weight: 500;
  font-size: 16px;
}
.site-header__lang-switcher .lang-switcher__caret {
  font-size: 0.65em;
  opacity: 0.85;
  transition: transform 0.2s ease;
}
.site-header__lang-switcher .lang-switcher__panel {
  top: 100%;
  right: 0;
  left: auto;
  transform: none;
  width: auto;
  min-width: max-content;
  margin-top: 10px;
}
.site-header__lang-switcher .lang-switcher__panel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 20px;
  border: 8px solid transparent;
}
.site-group .site-header__lang-switcher .lang-switcher__panel::before {
  border-bottom-color: var(--dark-bg-group);
}
.site-hotel .site-header__lang-switcher .lang-switcher__panel::before {
  border-bottom-color: var(--dark-bg-hotel);
}
.site-header__lang-switcher .lang-switcher__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.site-header__lang-switcher .lang-switcher__list a {
  display: block;
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}
.site-header__lang-switcher .lang-switcher__list a:hover {
  color: var(--hover-color);
}
.site-header__lang-switcher .lang-switcher__list a:hover::after {
  background: var(--hover-color);
}
.site-header__btn-booknow {
  margin-left: 10px;
}
@media screen and (min-width: 1199px) {
  .site-header__btn-booknow--scroll-reveal {
    display: none !important;
  }
  .site-header__btn-booknow--scroll-reveal.is-header-booknow-visible {
    display: inline-flex !important;
  }
}

body.is-site-header-fixed-pad {
  padding-top: 100px;
}
@media screen and (max-width: 1198px) {
  body.is-site-header-fixed-pad {
    padding-top: 70px;
  }
}

.header-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.header-offcanvas:not([hidden]) {
  pointer-events: auto;
}
.header-offcanvas[hidden] {
  display: none;
}
.header-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.header-offcanvas.is-open .header-offcanvas__backdrop {
  opacity: 1;
}
.header-offcanvas__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(25rem, 92vw);
  height: 100%;
  max-width: 100%;
  background: var(--header-bg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  overflow-y: scroll;
}
@media screen and (max-width: 1198px) {
  .header-offcanvas__panel {
    width: min(20rem, 92vw);
  }
}
.header-offcanvas.is-open .header-offcanvas__panel {
  transform: translateX(0);
}
.header-offcanvas__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 60px;
  gap: 40px;
}
@media screen and (max-width: 1198px) {
  .header-offcanvas__body {
    padding: 60px 40px 40px 40px;
  }
}
.header-offcanvas__close {
  position: absolute;
  right: 20px;
  top: 20px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background-image: url("img/close.svg");
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 10px;
}
.header-offcanvas__close:hover {
  background-color: var(--hover-color);
}
.header-offcanvas__brand {
  flex-shrink: 0;
  text-align: center;
  line-height: 0;
}
.header-offcanvas__brand .uh-property-logo__link {
  display: inline-block;
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}
.header-offcanvas__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-offcanvas__nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 30px;
}
.site-group .header-offcanvas__nav {
  border-bottom: none;
}
.header-offcanvas__nav--mobile-group {
  display: none;
  flex: 0 0 auto;
}
@media screen and (max-width: 1198px) {
  .header-offcanvas__nav--mobile-group {
    display: flex;
  }
}
.header-offcanvas__property {
  flex-shrink: 0;
  margin-top: auto;
}
.header-offcanvas__menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1198px) {
  .header-offcanvas__menu {
    gap: 10px;
  }
}
.header-offcanvas__menu a {
  display: block;
  text-decoration: none;
  color: var(--title-color);
  font-weight: 500;
  line-height: normal;
  padding-top: 5px;
  width: max-content;
  position: relative;
}
.site-group .header-offcanvas__menu a:hover, .site-group .header-offcanvas__menu a:focus {
  color: var(--highlight-color-group);
}
.site-hotel .header-offcanvas__menu a:hover, .site-hotel .header-offcanvas__menu a:focus {
  color: var(--highlight-color-hotel);
}
.header-offcanvas__menu a:hover::after, .header-offcanvas__menu a:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.header-offcanvas__menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .header-offcanvas__menu a::after {
  background: var(--highlight-color-group);
}
.site-hotel .header-offcanvas__menu a::after {
  background: var(--highlight-color-hotel);
}
.header-offcanvas__menu .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
}
.header-offcanvas__menu .menu-item-has-children > .sub-menu {
  flex: 1 0 100%;
  width: 100%;
  display: none;
  padding: 10px 0 20px 20px;
  gap: 5px;
  flex-direction: column;
  border-bottom: 1px solid var(--stroke);
}
.header-offcanvas__menu .menu-item-has-children > .sub-menu a {
  color: var(--body-color);
  width: fit-content;
}
.site-group .header-offcanvas__menu .menu-item-has-children > .sub-menu a:hover {
  color: var(--highlight-color-group);
}
.site-hotel .header-offcanvas__menu .menu-item-has-children > .sub-menu a:hover {
  color: var(--highlight-color-hotel);
}
.header-offcanvas__menu .menu-item-has-children.is-open > .sub-menu {
  display: flex;
}
.header-offcanvas__menu .header-offcanvas__sub-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--title-color);
  cursor: pointer;
  transition: color 0.15s ease;
}
.header-offcanvas__menu .header-offcanvas__sub-toggle::after {
  content: "";
  display: block;
  width: 0.45em;
  height: 0.45em;
  margin-top: -0.15em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.header-offcanvas__menu .header-offcanvas__sub-toggle[aria-expanded=true]::after {
  transform: rotate(-135deg);
  margin-top: 0.1em;
}
.header-offcanvas__menu .menu-item-has-children.is-open > .header-offcanvas__sub-toggle {
  color: var(--hover-color);
}

.uh-property-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-group .uh-property-contact {
  display: none;
}
.uh-property-contact__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
}
.uh-property-contact__row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.uh-property-contact__icon {
  color: var(--title-color);
  font-size: 20px;
  line-height: 150%;
}
.uh-property-contact__text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  line-height: 150%;
  font-weight: 400;
}
.uh-property-contact__text a {
  position: relative;
}
.site-group .uh-property-contact__text a:hover, .site-group .uh-property-contact__text a:focus {
  color: var(--highlight-color-group);
}
.site-hotel .uh-property-contact__text a:hover, .site-hotel .uh-property-contact__text a:focus {
  color: var(--highlight-color-hotel);
}
.uh-property-contact__text a:hover::after, .uh-property-contact__text a:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.uh-property-contact__text a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .uh-property-contact__text a::after {
  background: var(--highlight-color-group);
}
.site-hotel .uh-property-contact__text a::after {
  background: var(--highlight-color-hotel);
}

body.is-header-offcanvas-open {
  overflow: hidden;
}

.site-mobile-bar {
  display: none;
}
@media screen and (max-width: 1198px) {
  .site-mobile-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -4px 20px 0 rgba(0, 0, 0, 0.08);
    height: 60px;
  }
}
.site-mobile-bar__inner {
  display: flex;
  width: 100%;
  height: 100%;
}
.site-mobile-bar__btn {
  flex: 1 0 0;
  align-self: stretch;
  min-width: 0;
}
.site-mobile-bar__btn.btn_booknow {
  margin-left: 0;
}
.site-mobile-bar__btn.btn_booknow {
  border-radius: 0;
  height: 100%;
  padding: 0;
}
.site-mobile-bar__membership .btn {
  border-radius: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  color: var(--dark-title-color);
}
.site-group .site-mobile-bar__membership .btn {
  background-color: var(--dark-bg-group);
}
.site-hotel .site-mobile-bar__membership .btn {
  background-color: var(--dark-bg-hotel);
}

.urbain-book-now-modal {
  padding: 80px 60px;
  min-width: 650px;
  min-height: 600px;
}
@media screen and (max-width: 1198px) {
  .urbain-book-now-modal {
    padding: 60px 30px 40px 30px;
    min-width: 100%;
    height: 100%;
  }
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] {
  padding: 60px 20px;
  min-width: min(100%, 420px);
  height: auto;
}
@media screen and (min-width: 1199px) {
  .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] {
    min-width: 560px;
    padding: 60px 40px;
  }
}
.urbain-book-now-modal__inner {
  display: flex;
  flex-direction: column;
  gap: 43px;
  align-items: center;
  overflow: visible;
  width: 100%;
  height: 100%;
}
.urbain-book-now-modal__step {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 40px;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__step--choice {
  align-items: center;
  gap: 20px;
  padding: 0;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__choice-title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--title-color);
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__choice-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay) {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay) {
    width: auto;
  }
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay):hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay) {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay):hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay) {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay):hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn:not(.js-urbain-book-now-stay)::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-mask: url(img/external.svg) no-repeat center;
  mask: url(img/external.svg) no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay {
    width: auto;
  }
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__package-btn.js-urbain-book-now-stay:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"] .urbain-book-now-modal__step--form {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"].is-book-now-form-step .urbain-book-now-modal__step--choice {
  display: none;
}
.urbain-book-now-modal[data-urbain-hotel-book-two-step="1"].is-book-now-form-step .urbain-book-now-modal__step--form {
  display: flex;
}
.urbain-book-now-modal__title {
  text-align: center;
  color: var(--title-color);
}
.urbain-book-now-modal .uh-booking-form-stamp {
  display: none;
}
.urbain-book-now-modal .uh-booking-form-tabs {
  margin-bottom: 20px;
  justify-content: center;
}
.urbain-book-now-modal .uh-booking-form-tabs .booking-form-tab-button {
  border-radius: 5px;
  border-bottom: 1px solid;
  border-color: var(--body-color);
  background: #fff;
  color: var(--title-color);
}
.urbain-book-now-modal .uh-booking-form-tabs .booking-form-tab-button:first-child {
  display: none;
}
.urbain-book-now-modal .uh-booking-form-tabs .booking-form-tab-button:hover {
  background: var(--hover-color);
  color: #fff;
  border-color: var(--hover-color);
}
.urbain-book-now-modal .uh-booking-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  background: var(--bg-alt);
  color: var(--body-color);
  padding: 0;
}
.urbain-book-now-modal .uh-booking-form form > * {
  grid-column: 1/-1;
  min-width: 0;
}
.urbain-book-now-modal .uh-booking-form form > .uh-booking-form__field.js-uh-booking-rooms-field {
  grid-column: 1;
}
.urbain-book-now-modal .uh-booking-form form > .uh-booking-form__field.js-uh-booking-rooms-field + .uh-booking-form__field.js-uh-booking-adults-field {
  grid-column: 2;
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field {
  padding: 15px 20px;
  min-width: 0;
  border-right: none;
  border-radius: 5px;
  border: 1px solid var(--stroke);
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field input,
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field select {
  width: 100%;
  background: transparent;
  border: none;
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field input,
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field select,
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field input::placeholder,
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__field select::placeholder {
  color: var(--body-color);
}
.urbain-book-now-modal .uh-booking-form form .flatpickr-wrapper {
  width: 100%;
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__icon {
  background: var(--title-color);
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__actions-wrap {
  padding: 0;
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__actions-wrap .uh-booking-form__actions {
  margin-top: 0;
  width: 100%;
}
.urbain-book-now-modal .uh-booking-form form .uh-booking-form__actions-wrap .uh-booking-form__actions button {
  width: 100%;
}
.urbain-book-now-modal .uh-booking-form--in-header-modal {
  max-width: 100%;
  height: auto;
  margin-left: 0;
  margin-right: 0;
  overflow: visible;
  justify-content: center;
}

.urbain-mobile-membership-modal {
  min-height: 300px;
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  height: 100%;
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join {
    width: auto;
  }
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-join:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 var(--button-padding, 25px);
  gap: 10px;
  border-radius: var(--button-radius, 5px);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1.28px;
  text-transform: initial;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 479px) {
  .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in {
    width: auto;
  }
}
.urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in {
  background-color: var(--btn-internal-bg-group);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-group);
}
.site-group .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}
.site-hotel .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in {
  background-color: var(--btn-internal-bg-hotel);
  color: var(--body-color);
  border: 1px solid var(--highlight-color-hotel);
}
.site-hotel .urbain-mobile-membership-modal .site-mobile-bar__membership-modal-inner .site-mobile-bar__membership-modal-inner-links .btn.btn-sign-in:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
  border: 1px solid var(--hover-color);
}

.fancybox__slide.has-html,
.fancybox__slide.has-close-btn {
  padding: 0;
}

.site-footer {
  color: var(--footer-color);
}
.site-group .site-footer {
  background: var(--footer-bg-group);
}
.site-hotel .site-footer {
  background: var(--footer-bg-hotel);
}
.site-footer__hotels {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--footer-highlight-color);
}
.site-footer__hotels-inner {
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  margin: 0 auto;
}
@media screen and (max-width: 1198px) {
  .site-footer__hotels-inner {
    padding: 40px 30px;
  }
}
.site-footer__hotels-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .site-footer__hotels-list {
    gap: 25px;
    justify-content: center;
  }
}
.site-footer__hotels-item {
  height: 120px;
  aspect-ratio: 83/91;
}
@media screen and (max-width: 1198px) {
  .site-footer__hotels-item {
    height: 90px;
    aspect-ratio: 41/45;
  }
}
.site-footer__hotels-item#site-footer-group-logo {
  display: contents;
}
.site-footer__hotels-item#site-footer-group-logo::after {
  content: "";
  flex: none;
  width: 1px;
  height: 120px;
  background-color: var(--stroke);
}
.site-footer__hotels-link {
  display: block;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.site-footer__hotels-link:hover, .site-footer__hotels-link:focus-visible {
  opacity: 1;
}
.site-footer__hotels-logo {
  display: block;
  max-height: 120px;
  width: auto;
  max-width: 100px;
  height: 120px;
  object-fit: contain;
}
@media screen and (max-width: 1198px) {
  .site-footer__hotels-logo {
    height: 100%;
    max-height: 90px;
  }
}
.site-footer__main {
  padding: 60px 260px;
}
@media screen and (max-width: 1198px) {
  .site-footer__main {
    padding: 40px 30px 100px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1599px) {
  .site-footer__main {
    padding: 60px 60px 100px;
  }
}
.site-footer__main-inner {
  max-width: 1500px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}
@media screen and (max-width: 1198px) {
  .site-footer__main-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.site-footer__col--left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  border-right: 1px solid rgba(221, 221, 221, 0.1803921569);
}
@media screen and (max-width: 1198px) {
  .site-footer__col--left {
    border-right: 0;
    border-bottom: 1px solid rgba(221, 221, 221, 0.1803921569);
    align-items: center;
    padding-bottom: 30px;
    text-align: center;
  }
}
.site-footer__property-name {
  color: var(--footer-highlight-color);
  font-weight: 700;
  line-height: 130%;
}
.site-group .site-footer__property-name {
  margin-bottom: 30px;
}
.site-footer__catchphrase-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}
.site-footer__catchphrase-subtitle {
  color: var(--footer-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.site-footer__contact {
  color: rgba(255, 255, 255, 0.85);
}
.site-footer__contact .uh-property-contact__icon {
  color: var(--footer-highlight-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.site-footer__contact .uh-property-contact__name {
  display: none;
}
.site-footer__social {
  margin-top: 4px;
}
.site-footer__col--right {
  display: grid;
  height: 100%;
}
.site-footer__col--right-menus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 40px;
}
@media screen and (max-width: 1198px) {
  .site-footer__col--right-menus {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }
}
.site-footer__col--right-copyright {
  margin-top: auto;
  color: var(--footer-color);
  font-size: 14px;
  line-height: 150%;
}
@media screen and (max-width: 1198px) {
  .site-footer__col--right-copyright {
    text-align: center;
    margin-top: 20px;
  }
}
.site-footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__menu a {
  color: var(--footer-color);
}
.site-footer__menu a:hover {
  position: relative;
}
.site-group .site-footer__menu a:hover:hover, .site-group .site-footer__menu a:hover:focus {
  color: var(--highlight-color-group);
}
.site-hotel .site-footer__menu a:hover:hover, .site-hotel .site-footer__menu a:hover:focus {
  color: var(--highlight-color-hotel);
}
.site-footer__menu a:hover:hover::after, .site-footer__menu a:hover:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-footer__menu a:hover::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .site-footer__menu a:hover::after {
  background: var(--highlight-color-group);
}
.site-hotel .site-footer__menu a:hover::after {
  background: var(--highlight-color-hotel);
}

.uh-sitemap__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 100px;
}
@media screen and (max-width: 767px) {
  .uh-sitemap__grid {
    column-count: 1;
  }
}
.uh-sitemap__item {
  break-inside: avoid;
  margin-bottom: 40px;
}
.uh-sitemap__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .uh-sitemap__item {
    margin-bottom: 30px;
  }
}
.uh-sitemap__parent {
  display: inline-block;
  margin-bottom: 15px;
  font-family: var(--highlight-font);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  color: var(--title-color);
  position: relative;
}
.site-group .uh-sitemap__parent:hover, .site-group .uh-sitemap__parent:focus {
  color: var(--highlight-color-group);
}
.site-hotel .uh-sitemap__parent:hover, .site-hotel .uh-sitemap__parent:focus {
  color: var(--highlight-color-hotel);
}
.uh-sitemap__parent:hover::after, .uh-sitemap__parent:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.uh-sitemap__parent::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .uh-sitemap__parent::after {
  background: var(--highlight-color-group);
}
.site-hotel .uh-sitemap__parent::after {
  background: var(--highlight-color-hotel);
}
.uh-sitemap__children {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 10px;
}
.uh-sitemap__link {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  color: var(--body-color);
  position: relative;
}
.site-group .uh-sitemap__link:hover, .site-group .uh-sitemap__link:focus {
  color: var(--highlight-color-group);
}
.site-hotel .uh-sitemap__link:hover, .site-hotel .uh-sitemap__link:focus {
  color: var(--highlight-color-hotel);
}
.uh-sitemap__link:hover::after, .uh-sitemap__link:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.uh-sitemap__link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .uh-sitemap__link::after {
  background: var(--highlight-color-group);
}
.site-hotel .uh-sitemap__link::after {
  background: var(--highlight-color-hotel);
}