@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.
 */
/**
 * Services — flex list, max 5 columns on desktop; optional separators (column widths via --uh-s-cols).
 */
.uh-services {
  --uh-col-gap: 24px;
  --uh-row-gap: 40px;
  --uh-sep-row-gap: 48px;
  --uh-sep-pad-inline: 16px;
}
.uh-services__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 80px;
  margin-inline: auto;
}
@media screen and (max-width: 1198px) {
  .uh-services__inner {
    gap: 40px;
  }
}
.uh-services__block-content.block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.uh-services__block-content.block-content .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.uh-services__block-content.block-content .block-content__intro {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.uh-services__block-content.block-content .block-content__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.uh-services__block-content.block-content .block-content__title::before, .uh-services__block-content.block-content .block-content__title::after {
  content: "";
  flex: 1 1 auto;
  min-width: 50px;
  height: 1px;
  background-color: var(--title-color);
  align-self: baseline;
}
@media screen and (max-width: 767px) {
  .uh-services__block-content.block-content .block-content__title::before, .uh-services__block-content.block-content .block-content__title::after {
    display: none;
  }
}
.uh-services__block-content.block-content .block-content .block-content__intro {
  text-align: center;
  align-items: center;
}
.uh-services__block-content.block-content .block-content .btns_wrap {
  justify-content: center;
}
.uh-services__block-content .block-content__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  gap: 20px;
}
.uh-services__block-content .block-content__body {
  width: 100%;
  max-width: 42rem;
  margin-top: 12px;
  font-family: var(--primary-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}
.uh-services__block-content .block-content__body p {
  margin: 0;
}
.uh-services__list {
  --uh-services-col-gap: var(--uh-col-gap);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1400px;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: var(--uh-row-gap) var(--uh-col-gap);
}
.uh-services__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 0 0;
  min-width: 0;
  gap: 10px;
}
.uh-services__icon-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uh-services__icon {
  display: block;
  font-size: 60px;
  line-height: 1;
}
.uh-services--circled-icon .uh-services__icon-shell {
  box-sizing: border-box;
  width: 85px;
  height: 85px;
  border: 1px solid var(--uh-services-icon-ring, var(--stroke));
  border-radius: 50%;
}
.uh-services--circled-icon .uh-services__icon {
  font-size: 45px;
}
.uh-services__title {
  font-family: var(--primary-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 1198px) {
  .uh-services__title {
    font-size: 22px;
  }
}
.uh-services__description {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.uh-services__description p {
  margin: 0;
}
.uh-services--separator .uh-services__list {
  --uh-s-cols: 1;
  --uh-s-gap: 0px;
  justify-content: center;
  gap: var(--uh-sep-row-gap) 0;
  max-width: 100%;
}
.uh-services--separator .uh-services__item {
  box-sizing: border-box;
  flex: 0 0 calc((100% - (var(--uh-s-cols) - 1) * var(--uh-s-gap)) / var(--uh-s-cols));
  max-width: calc((100% - (var(--uh-s-cols) - 1) * var(--uh-s-gap)) / var(--uh-s-cols));
  justify-content: flex-start;
  padding-inline: var(--uh-sep-pad-inline);
  border-inline-end: 1px solid var(--uh-services-sep-color, var(--stroke));
}
.uh-services--separator .uh-services__item:last-child {
  border-inline-end: none;
}
@media screen and (max-width: 1198px) {
  .uh-services--separator .uh-services__item {
    flex: 0 0 50%;
    max-width: 100%;
    padding-inline: 0;
    border-inline-end: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 1198px) {
  .uh-services--separator .uh-services__list {
    --uh-s-cols: 2;
  }
  .uh-services--separator .uh-services__item:nth-child(2n) {
    border-inline-end: none;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1199px) {
  .uh-services--separator .uh-services__list {
    --uh-s-cols: 3;
  }
  .uh-services--separator .uh-services__item:nth-child(3n) {
    border-inline-end: none;
  }
}
@media screen and (min-width: 1200px) {
  .uh-services--separator .uh-services__list {
    --uh-s-cols: 5;
  }
  .uh-services--separator .uh-services__item:nth-child(5n) {
    border-inline-end: none;
  }
}
.uh-services {
  /* --- Background: variables only on modifiers, shared typography --- */
}
.uh-services--bg-color {
  --uh-main-title: var(--dark-title-color);
  --uh-text: var(--dark-body-color);
  --uh-card-title: var(--dark-title-color);
  --uh-icon-fg: var(--dark-primary-color);
  --uh-services-sep-color: rgba(255, 255, 255, 0.22);
  --uh-services-icon-ring: rgba(255, 255, 255, 0.35);
  background-color: var(--dark-bg-hotel);
  color: var(--uh-text);
}
.site-group .uh-services--bg-color {
  background-color: var(--dark-bg-group);
}
.uh-services--bg-white, .uh-services--bg-transparent {
  --uh-main-title: var(--title-color);
  --uh-text: var(--body-color);
  --uh-card-title: var(--body-color);
  --uh-icon-fg: var(--body-color);
  --uh-services-sep-color: var(--stroke);
  --uh-services-icon-ring: var(--stroke);
  color: var(--uh-text);
}
.uh-services--bg-white {
  background-color: #fff;
}
.uh-services--bg-transparent {
  background-color: transparent;
}
.uh-services--bg-color .uh-services__block-content .block-content__title, .uh-services--bg-white .uh-services__block-content .block-content__title, .uh-services--bg-transparent .uh-services__block-content .block-content__title {
  color: var(--uh-main-title);
}
.uh-services--bg-color .uh-services__block-content .block-content__title::before, .uh-services--bg-color .uh-services__block-content .block-content__title::after, .uh-services--bg-white .uh-services__block-content .block-content__title::before, .uh-services--bg-white .uh-services__block-content .block-content__title::after, .uh-services--bg-transparent .uh-services__block-content .block-content__title::before, .uh-services--bg-transparent .uh-services__block-content .block-content__title::after {
  background-color: var(--uh-main-title);
}
.uh-services--bg-color .uh-services__block-content .block-content__prev-title,
.uh-services--bg-color .uh-services__block-content .block-content__subtitle,
.uh-services--bg-color .uh-services__block-content .block-content__body, .uh-services--bg-white .uh-services__block-content .block-content__prev-title,
.uh-services--bg-white .uh-services__block-content .block-content__subtitle,
.uh-services--bg-white .uh-services__block-content .block-content__body, .uh-services--bg-transparent .uh-services__block-content .block-content__prev-title,
.uh-services--bg-transparent .uh-services__block-content .block-content__subtitle,
.uh-services--bg-transparent .uh-services__block-content .block-content__body {
  color: var(--uh-text);
}
.uh-services--bg-color .uh-services__title, .uh-services--bg-white .uh-services__title, .uh-services--bg-transparent .uh-services__title {
  color: var(--uh-card-title);
}
.uh-services--bg-white .uh-services__title, .uh-services--bg-transparent .uh-services__title {
  font-weight: 700;
}
.uh-services--bg-color .uh-services__description, .uh-services--bg-white .uh-services__description, .uh-services--bg-transparent .uh-services__description {
  color: var(--uh-text);
}
.uh-services--bg-color .uh-services__icon, .uh-services--bg-white .uh-services__icon, .uh-services--bg-transparent .uh-services__icon {
  color: var(--uh-icon-fg);
}
.uh-services {
  /* --- Non-separator: column count by breakpoint --- */
}
@media screen and (max-width: 1198px) {
  .uh-services:not(.uh-services--separator) .uh-services__item {
    flex: 1 1 45%;
    max-width: none;
  }
  .uh-services:not(.uh-services--separator) .uh-services__list {
    justify-content: center;
  }
}
@media screen and (min-width: 1199px) and (max-width: 1199px) {
  .uh-services:not(.uh-services--separator) .uh-services__item {
    flex: 1 1 calc((100% - 2 * var(--uh-services-col-gap)) / 3);
    max-width: calc((100% - 2 * var(--uh-services-col-gap)) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .uh-services:not(.uh-services--separator) .uh-services__item {
    flex: 1 1 calc((100% - 4 * var(--uh-services-col-gap)) / 5);
    max-width: calc((100% - 4 * var(--uh-services-col-gap)) / 5);
  }
}
@media screen and (max-width: 479px) {
  .uh-services:not(.uh-services--separator) .uh-services__item {
    flex: 1 1 100%;
    max-width: 320px;
  }
}