@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
 */
/**
 * Contact — Gravity Form (left) + hotel info & map (right).
 */
.uh-contact {
  width: 100%;
}
.uh-contact__layout {
  display: flex;
  align-items: stretch;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .uh-contact__layout {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.uh-contact__form {
  flex: 1 1 0;
  min-width: 0;
  border-radius: var(--card-radius, 15px);
  background: var(--bg-alt, #fff);
  padding: 80px 60px 60px 60px;
}
@media screen and (max-width: 1198px) {
  .uh-contact__form {
    flex: 0 0 auto;
    padding: 40px 30px;
  }
}
.uh-contact__form .gform_wrapper form {
  font-family: var(--primary-font);
  font-size: var(--prev_content_size);
  color: var(--title-color);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-weight: 500;
}
.uh-contact__form .gform_wrapper form .gform_heading {
  text-align: center;
  margin-bottom: 40px;
}
.uh-contact__form .gform_wrapper form .gform_heading .gform_title {
  font-family: var(--highlight-font);
  font-size: var(--prev_title_size);
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 1198px) {
  .uh-contact__form .gform_wrapper .ginput_container span {
    width: 100%;
  }
}
.uh-contact__form .gform_wrapper span.gform_description {
  color: var(--body-color);
  text-align: center;
  font-size: var(--prev_content_size);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
}
.uh-contact__form .gform_wrapper .ginput_container_address {
  display: flex;
  flex-wrap: wrap;
}
.uh-contact__form .gform_wrapper .top_label div.ginput_container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.uh-contact__form .gform_wrapper .top_label div.ginput_container .gfield_consent_label {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
  color: var(--body-color);
}
.uh-contact__form .gform_wrapper .gform_footer {
  display: flex;
  justify-content: flex-end;
}
.uh-contact__form .gform_wrapper input,
.uh-contact__form .gform_wrapper select {
  height: 45px;
}
.uh-contact__form .gform_wrapper input,
.uh-contact__form .gform_wrapper select,
.uh-contact__form .gform_wrapper textarea {
  background: var(--bg);
  border: 1px solid var(--stroke, #ddd);
  padding: 0 20px;
}
.uh-contact__form .gform_wrapper input.button {
  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: uppercase;
  cursor: pointer;
  font-family: var(--primary-font);
}
@media screen and (max-width: 1198px) {
  .uh-contact__form .gform_wrapper input.button {
    width: 100%;
  }
}
.uh-contact__form .gform_wrapper input.button:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-group .uh-contact__form .gform_wrapper input.button {
  background-color: var(--btn-external-bg-group);
  color: #fff;
}
.site-group .uh-contact__form .gform_wrapper input.button:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.site-hotel .uh-contact__form .gform_wrapper input.button {
  background-color: var(--btn-external-bg-hotel);
  color: #fff;
}
.site-hotel .uh-contact__form .gform_wrapper input.button:hover {
  background-color: var(--hover-color);
  color: var(--hover-color-as);
}
.uh-contact__form .gform_wrapper a {
  position: relative;
}
.site-group .uh-contact__form .gform_wrapper a:hover, .site-group .uh-contact__form .gform_wrapper a:focus {
  color: var(--highlight-color-group);
}
.site-hotel .uh-contact__form .gform_wrapper a:hover, .site-hotel .uh-contact__form .gform_wrapper a:focus {
  color: var(--highlight-color-hotel);
}
.uh-contact__form .gform_wrapper a:hover::after, .uh-contact__form .gform_wrapper a:focus::after {
  width: 100%;
  left: 0;
  width: 100%;
  transform: scaleX(1);
  transition: all 0.3s ease;
  transform-origin: left;
}
.uh-contact__form .gform_wrapper a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  height: 1px;
  left: 0;
  width: 0;
  transition: all 0.3s ease;
  transform-origin: left;
}
.site-group .uh-contact__form .gform_wrapper a::after {
  background: var(--highlight-color-group);
}
.site-hotel .uh-contact__form .gform_wrapper a::after {
  background: var(--highlight-color-hotel);
}
.uh-contact__sidebar {
  flex: 0 0 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--card-radius, 15px);
}
@media screen and (max-width: 1198px) {
  .uh-contact__sidebar {
    flex: 0 0 auto;
    max-width: none;
    width: 100%;
    border-radius: var(--card-radius, 10px);
  }
}
.uh-contact__panel {
  background: var(--bg-alt, #fff);
  padding: 80px 60px 60px 60px;
}
@media screen and (max-width: 1198px) {
  .uh-contact__panel {
    padding: 40px 30px;
  }
}
.uh-contact__panel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-contact__panel-inner {
    padding-bottom: 20px;
  }
}
.uh-contact__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .uh-contact__details {
    padding: 0;
  }
}
.uh-contact__name {
  width: 100%;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: var(--title-color);
}
.uh-contact__contact {
  width: 100%;
  gap: 20px;
}
.uh-contact__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--stroke, #ddd);
}
.uh-contact__cta {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 1198px) {
  .uh-contact__cta {
    font-size: 16px;
    letter-spacing: 1.28px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.uh-contact__embed {
  position: relative;
  flex: 0 0 250px;
  width: 100%;
  min-height: 250px;
  background: var(--bg-d-5, #e8e8e8);
  overflow: hidden;
}
@media screen and (max-width: 1198px) {
  .uh-contact__embed {
    flex: 0 0 250px;
    height: 250px;
  }
}
.uh-contact__iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 585px;
  border: 0;
}