@charset "UTF-8";
/* VALIDATION */
.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  line-height: 18px;
  cursor: pointer;
  z-index: 5000;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  background: #b31919;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: 150px;
  font: 13px "Brandon Grotesque WF", Arial, sans-serif;
  padding: 4px 10px 4px 10px;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.ui-datepicker {
  display: none;
  padding: 10px;
  background: #D8D8D8;
  z-index: 10;
}
body > .ui-datepicker {
  z-index: 30;
}
.ui-datepicker:after {
  display: block;
  content: "";
  height: 0;
  overflow: hidden;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    width: calc(100% - 20px);
  }
}

.ui-datepicker-header {
  position: relative;
  margin-bottom: 6px;
  font: bold 18px/44px "Brandon Grotesque WF", Arial, sans-serif;
  text-align: center;
  color: #211E1A;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  position: absolute;
  top: 10px;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.ui-datepicker-prev:after,
.ui-datepicker-next:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #263664;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: border-color 350ms ease-in-out;
}
.ui-datepicker-prev.ui-state-disabled,
.ui-datepicker-next.ui-state-disabled {
  opacity: 0.3;
}

.ui-datepicker-prev {
  left: 5px;
}
.ui-datepicker-prev:after {
  left: 10px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #263664;
  border-bottom: 2px solid #263664;
}
.ui-datepicker-prev:not(.ui-state-disabled):hover:after {
  border-bottom-color: #BFBFBF;
  border-left-color: #BFBFBF;
}

.ui-datepicker-next {
  right: 5px;
}
.ui-datepicker-next:not(.ui-state-disabled):hover:after {
  border-top-color: #BFBFBF;
  border-right-color: #BFBFBF;
}

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  line-height: 30px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 10px;
  font-weight: bold;
  color: #211E1A;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 11px;
  color: #211E1A;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #8D8D8D;
}
.ui-datepicker-calendar td.ui-datepicker-other-month span:hover, .ui-datepicker-calendar td.ui-state-disabled span:hover {
  color: inherit;
  background: none;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: #ccc;
}
.ui-datepicker-calendar .ui-datepicker-highlight a,
.ui-datepicker-calendar .ui-datepicker-current-day a,
.ui-datepicker-calendar .ui-state-default:hover {
  background: #263664;
  color: #fff;
}

.ui-datepicker-trigger {
  float: left;
  margin: 13px 0 0 8px;
  width: 17px;
  height: 15px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
}
.ui-datepicker-trigger:hover {
  background-position: -37px 0;
}

.ui-selectmenu-button {
  position: relative;
  display: block;
  width: auto !important;
  height: 40px;
  line-height: 40px;
  border: thin solid #d1d1d1;
  font-size: 14px;
  text-align: left;
  color: #53565a;
  background: #fff;
  transition: all 0.2s;
}
.ui-selectmenu-button::-moz-placeholder {
  color: #292C2D;
}
.ui-selectmenu-button::placeholder {
  color: #292C2D;
}
.ui-selectmenu-button .ui-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #292C2D;
}
.ui-selectmenu-button:hover .ui-icon {
  border-top-color: #54baba;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  height: 100%;
  padding: 0 30px 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ui-selectmenu-button .ui-selectmenu-text strong {
  font-weight: 700;
}

.ui-selectmenu-menu {
  position: absolute;
  z-index: 9999999;
  display: none;
  max-height: 258px;
  overflow: auto;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.ui-selectmenu-menu.ui-selectmenu-open {
  display: block;
}
.ui-selectmenu-menu li .ui-menu-item-wrapper {
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  color: #000;
}
.ui-selectmenu-menu li .ui-state-active {
  background: #eee;
  cursor: pointer;
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition-property: transform;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}

@font-face {
  font-family: "HeBS-Icons";
  src: url("../fonts/HeBS-Icons.woff2?8uvq96") format("woff2"), url("../fonts/HeBS-Icons.woff?8uvq96") format("woff");
  font-weight: normal;
  font-style: normal;
}
[class^=rooms-icon-], [class*=" rooms-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "HeBS-Icons" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.rooms-icon-theatre-set-up:before {
  content: "";
}

.rooms-icon-classroom-set-up:before {
  content: "";
}

.rooms-icon-cabaret-set-up:before {
  content: "";
}

.rooms-icon-boardroom-set-up:before {
  content: "";
}

.rooms-icon-u-shaped-set-up:before {
  content: "";
}

.rooms-icon-banquet-set-up:before {
  content: "";
}

.rooms-icon-dinner-dance-set-up:before {
  content: "";
}

.rooms-icon-reception-set-up:before {
  content: "";
}

.rooms-icon-ceremony-set-up:before {
  content: "";
}

.rooms-icon-natural-daylight:before {
  content: "";
}

.rooms-icon-outlets-sockets:before {
  content: "";
}

.rooms-icon-direct-dial-point:before {
  content: "";
}

.rooms-icon-video-conferencing:before {
  content: "";
}

.rooms-icon-air-conditioning:before {
  content: "";
}

.rooms-icon-wi-fi:before {
  content: "";
}

.rooms-icon-blackout-shades:before {
  content: "";
}

.rooms-icon-visual-equipment:before {
  content: "";
}

.rooms-icon-audio-equipment:before {
  content: "";
}

.rooms-icon-flipchart-presentation-equipment:before {
  content: "";
}

.rooms-icon-tv-point:before {
  content: "";
}

.rooms-icon-overhead-projector:before {
  content: "";
}

.rooms-icon-data-projector:before {
  content: "";
}

.rooms-icon-balcony:before {
  content: "";
}

.rooms-icon-city-view:before {
  content: "";
}

.rooms-icon-beds:before {
  content: "";
}

.rooms-icon-flat-screen-tv:before {
  content: "";
}

.rooms-icon-hair-dryer:before {
  content: "";
}

.rooms-icon-iron:before {
  content: "";
}

.rooms-icon-ac:before {
  content: "";
}

.rooms-icon-king-bed:before {
  content: "";
}

.rooms-icon-kitchen:before {
  content: "";
}

.rooms-icon-minibar:before {
  content: "";
}

.rooms-icon-smoke-free:before {
  content: "";
}

.rooms-icon-occupancy:before {
  content: "";
}

.rooms-icon-ocean-view:before {
  content: "";
}

.rooms-icon-personal_items:before {
  content: "";
}

.rooms-icon-pool-view:before {
  content: "";
}

.rooms-icon-room-service:before {
  content: "";
}

.rooms-icon-safe:before {
  content: "";
}

.rooms-icon-single-room:before {
  content: "";
}

.rooms-icon-smoking:before {
  content: "";
}

.rooms-icon-size:before {
  content: "";
}

.rooms-icon-pulloutsofa:before {
  content: "";
}

.rooms-icon-twin-room:before {
  content: "";
}

.rooms-icon-wifi:before {
  content: "";
}

.rooms-icon-adaroom:before {
  content: "";
}

.rooms-icon-airport-shuttle-paid:before {
  content: "";
}

.rooms-icon-amusement-park:before {
  content: "";
}

.rooms-icon-bar:before {
  content: "";
}

.rooms-icon-beach:before {
  content: "";
}

.rooms-icon-business-center:before {
  content: "";
}

.rooms-icon-elevator:before {
  content: "";
}

.rooms-icon-environmentally-friendly:before {
  content: "";
}

.rooms-icon-fitness:before {
  content: "";
}

.rooms-icon-golf:before {
  content: "";
}

.rooms-icon-indoor-pool:before {
  content: "";
}

.rooms-icon-landmark:before {
  content: "";
}

.rooms-icon-outdoor-pool:before {
  content: "";
}

.rooms-icon-pet-friendly:before {
  content: "";
}

.rooms-icon-pool:before {
  content: "";
}

.rooms-icon-restaurant:before {
  content: "";
}

.rooms-icon-shuttle:before {
  content: "";
}

.rooms-icon-spa:before {
  content: "";
}

.rooms-icon-ticket-services:before {
  content: "";
}

.rooms-icon-valet:before {
  content: "";
}

.rooms-icon-water-park:before {
  content: "";
}

.rooms-icon-coffeemaker:before {
  content: "";
}

.rooms-icon-highfloor:before {
  content: "";
}

.rooms-icon-airport-shuttle-free:before {
  content: "";
}

.rooms-icon-view:before {
  content: "";
}

.rooms-icon-tv:before {
  content: "";
}

.rooms-icon-minifridge:before {
  content: "";
}

.rooms-icon-pets:before {
  content: "";
}

.rooms-icon-valet-only:before {
  content: "";
}

.rooms-icon-accessibility-features:before {
  content: "";
}

.rooms-icon-parking:before {
  content: "";
}

.faq-section .faq-section-category-descr h2 {
  font-size: 18px;
}
.faq-section .faq-section-question {
  font-weight: 700;
}

.acm-block.two-blocks {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding-top: 100px;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .acm-block.two-blocks {
    flex-wrap: wrap;
    padding: 20px 0 0 0;
  }
}
.acm-block.two-blocks .tile {
  width: 50%;
  padding-right: 66px;
}
.acm-block.two-blocks .tile.right {
  padding-right: 0;
  padding-left: 66px;
}
@media only screen and (max-width: 767px) {
  .acm-block.two-blocks .tile {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 20px;
  }
}
.acm-block.two-blocks .tile .image {
  height: 710px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 979px) {
  .acm-block.two-blocks .tile .image {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.two-blocks .tile .image {
    height: 0;
    padding-top: 100%;
  }
}
.acm-block.two-blocks .tile .content {
  background: #F9F9F7;
  width: calc(100% - 120px);
  margin: 0 auto;
  margin-top: -136px;
  padding: 4vh 3vw 5vh 3vw;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .acm-block.two-blocks .tile .content {
    padding: 3vh 2vw 4vh 2vw;
    width: calc(100% - 66px);
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.two-blocks .tile .content {
    padding: 30px 30px 26px 30px;
    margin-top: -70px;
  }
}
.acm-block.two-blocks .tile .content h2 {
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media screen and (max-width: 1198px) {
  .acm-block.two-blocks .tile .content h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.two-blocks .tile .content h2 {
    margin-bottom: 22px;
    letter-spacing: 3px;
  }
}

.acm-block.big-image {
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .acm-block.big-image .center-column {
    padding: 0;
  }
}
.acm-block.big-image .image {
  height: 660px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 979px) {
  .acm-block.big-image .image {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.big-image .image {
    height: 0;
    padding-top: 100%;
  }
}
.acm-block.big-image .content {
  background: #F9F9F7;
  width: 470px;
  margin: 0 auto;
  margin-top: -136px;
  padding: 4vh 3vw 5vh 3vw;
  text-align: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1198px) {
  .acm-block.big-image .content {
    padding: 3vh 2vw 4vh 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.big-image .content {
    width: calc(100% - 66px);
    padding: 30px 30px 26px 30px;
    margin-top: -70px;
  }
}
.acm-block.big-image .content h2 {
  font: 30px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
@media screen and (max-width: 1198px) {
  .acm-block.big-image .content h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.big-image .content h2 {
    margin-bottom: 22px;
    letter-spacing: 3px;
  }
}
.acm-block.big-image .content nav {
  display: block;
  margin-top: 28px;
}

.specials-widget {
  position: relative;
  background: #F9F9F7 url("../images/bg-grey.png") 50% 0 repeat;
  padding-top: 107px;
  padding-bottom: 357px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .specials-widget {
    padding-top: 40px;
    padding-bottom: 40px;
    z-index: 3;
    background-size: 116px 201px;
  }
}
.specials-widget .wrapper {
  position: relative;
}
.specials-widget .slideshow {
  overflow: hidden;
}
.specials-widget .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.specials-widget .tile {
  width: calc(50% - 67px);
  display: inline-block;
  text-align: center;
  white-space: normal;
}
.specials-widget .tile img {
  display: block;
  border: 30px solid #F9F9F7;
  width: calc(100% - 60px);
  height: auto;
  margin-bottom: 66px;
}
@media only screen and (max-width: 767px) {
  .specials-widget .tile img {
    border-width: 17px;
    width: calc(90% - 34px);
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
.specials-widget .tile h2 {
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .specials-widget .tile h2 {
    font-size: 21px;
    letter-spacing: 2px;
  }
}
.specials-widget .tile .descr {
  font: 18px "Old Standard TT", sans-serif;
}
@media only screen and (max-width: 767px) {
  .specials-widget .tile .descr {
    font-size: 16px;
  }
}
.specials-widget .tile nav {
  margin-top: 38px;
}
@media only screen and (max-width: 767px) {
  .specials-widget .tile nav {
    margin-top: 30px;
  }
}
.specials-widget .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  width: 30px;
  height: 30px;
  border: thin solid #211E1A;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .specials-widget .slideshow-button {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}
.specials-widget .slideshow-button:hover {
  opacity: 0.5;
}
.specials-widget .slideshow-button.previous {
  left: 26px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .specials-widget .slideshow-button.previous {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-widget .slideshow-button.previous {
    left: 16px;
  }
}
.specials-widget .slideshow-button.next {
  right: 26px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .specials-widget .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-widget .slideshow-button.next {
    right: 16px;
  }
}
.specials-widget + .acm-block {
  margin-top: -256px;
}
@media only screen and (max-width: 767px) {
  .specials-widget + .acm-block {
    margin-top: 0;
  }
}

.acm-block.testimonials-and-blog {
  padding-top: 100px;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog {
    background: #F9F9F7;
    padding-top: 60px;
  }
}
.acm-block.testimonials-and-blog .center-column {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog .center-column {
    flex-wrap: wrap;
  }
}
.acm-block.testimonials-and-blog article.column {
  width: 50%;
  padding-right: 66px;
  text-align: center;
}
.acm-block.testimonials-and-blog article.column.right {
  padding-right: 0;
  padding-left: 66px;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog article.column {
    width: 100%;
    padding: 0 !important;
    margin-bottom: 72px;
  }
}
.acm-block.testimonials-and-blog article.column h2 {
  font: 500 18px/1.2 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #263664;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog article.column h2 {
    order: 2;
    font-size: 14px;
    letter-spacing: 1.33px;
    margin-bottom: 30px;
  }
}
.acm-block.testimonials-and-blog article.column .divider {
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 80px;
  width: 46px;
  height: 46px;
  background: #211E1A;
  transform: rotate(45deg);
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog article.column .divider {
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog article.column .divider {
    order: 1;
    margin-top: 0;
    margin-bottom: 40px;
  }
}
.acm-block.testimonials-and-blog article.column .quote {
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog article.column .quote {
    order: 3;
  }
}
.acm-block.testimonials-and-blog article.column .quote span {
  position: relative;
  font-size: 36px;
  line-height: 1.3;
  letter-spacing: 0.36px;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog article.column .quote span {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.24px;
  }
}
.acm-block.testimonials-and-blog article.column .quote:before, .acm-block.testimonials-and-blog article.column .quote:after {
  content: "“";
  position: relative;
  display: inline;
  font-size: 36px;
  line-height: 1.4;
  color: #211E1A;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog article.column .quote:before, .acm-block.testimonials-and-blog article.column .quote:after {
    font-size: 24px;
  }
}
.acm-block.testimonials-and-blog article.column .quote:after {
  content: "”";
}
.acm-block.testimonials-and-blog article.column nav {
  margin-top: 80px;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog article.column nav {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog article.column nav {
    order: 4;
  }
}
.acm-block.testimonials-and-blog .testimonial {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog #blog-feed {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog #blog-feed h2 {
    margin-bottom: 54px;
  }
}
.acm-block.testimonials-and-blog #blog-feed .content {
  background: #ECECEA;
  text-align: left;
}
.acm-block.testimonials-and-blog #blog-feed .content .thumbnail {
  height: 0;
  padding-top: 70%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .acm-block.testimonials-and-blog #blog-feed .content .thumbnail {
    padding-top: 100%;
  }
}
.acm-block.testimonials-and-blog #blog-feed .content .copy {
  padding: 44px 44px 40px 44px;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog #blog-feed .content .copy {
    padding: 36px 30px 32px 30px;
  }
}
.acm-block.testimonials-and-blog #blog-feed .content h3 {
  font: 24px/1.5 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog #blog-feed .content h3 {
    font-size: 18px;
  }
}
.acm-block.testimonials-and-blog #blog-feed .content h3 a {
  color: #211E1A;
  text-decoration: none;
}
.acm-block.testimonials-and-blog #blog-feed .content h3 + .descr {
  margin-top: 32px;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog #blog-feed .content h3 + .descr {
    margin-top: 18px;
  }
}
.acm-block.testimonials-and-blog #blog-feed .content nav {
  margin-top: 50px;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  .acm-block.testimonials-and-blog #blog-feed .content nav {
    margin-top: 42px;
  }
}

.acm-block.image-and-content {
  position: relative;
  z-index: 3;
  background: #F9F9F7;
  padding-top: 80px;
  padding-bottom: 20px;
  margin-top: 120px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content {
    padding-top: 65px;
    margin-top: 40px;
  }
}
.acm-block.image-and-content p.add-space {
  padding: 20px 0;
}
.acm-block.image-and-content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: url("../images/bg-grey.png") 50% 0 repeat;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content:before {
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .center-column {
    padding: 0;
  }
}
.acm-block.image-and-content h2 {
  font: 36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content h2 {
    display: none;
  }
}
.acm-block.image-and-content .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}
.acm-block.image-and-content .content-wrapper .content {
  flex-shrink: 0;
  width: 35%;
  margin-left: 40px;
}
@media screen and (max-width: 1198px) {
  .acm-block.image-and-content .content-wrapper .content {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content {
    width: 100%;
    margin: 0;
    padding: 0 33px;
  }
}
.acm-block.image-and-content .content-wrapper .content h2.mobile {
  display: none;
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content h2.mobile {
    display: block;
  }
}
.acm-block.image-and-content .content-wrapper .content .h3 {
  font: 24px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content .h3 {
    font-size: 21px;
    letter-spacing: 3px;
  }
}
.acm-block.image-and-content .content-wrapper .content p {
  padding: 15px 0;
}
.acm-block.image-and-content .content-wrapper .content ul {
  margin: 0px 0 0 20px;
}
.acm-block.image-and-content .content-wrapper .content ul li {
  list-style: disc;
  list-style-position: outside;
  width: 100%;
  margin: 10px 0;
}
.acm-block.image-and-content .content-wrapper .content nav {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .content nav {
    margin-top: 20px;
  }
}
.acm-block.image-and-content .content-wrapper .image {
  width: calc(65% - 40px);
}
@media screen and (max-width: 1198px) {
  .acm-block.image-and-content .content-wrapper .image {
    width: calc(50% - 33px);
  }
}
@media only screen and (max-width: 767px) {
  .acm-block.image-and-content .content-wrapper .image {
    width: 100%;
    margin-bottom: 30px;
  }
}
.acm-block.image-and-content .content-wrapper .image img {
  display: block;
  width: 100%;
  height: auto;
}

.rooms {
  padding: 80px 0 120px;
}
@media only screen and (max-width: 767px) {
  .rooms {
    padding: 40px 0 100px;
  }
}
.rooms .categories-descr {
  padding: 0 20px;
}
.rooms .categories-descr .category-descr {
  display: none;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}

/* TEMPLATE ROOM-INFO-CARD */
.room-info-card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .room-info-card {
    flex-direction: column;
    gap: 0;
    max-width: initial;
  }
}
.room-info-card + .room-info-card {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .room-info-card + .room-info-card {
    margin-top: 70px;
  }
}
.room-info-card.odd .room-image {
  order: 1;
}
@media only screen and (max-width: 767px) {
  .room-info-card.odd .room-image {
    order: initial;
  }
}
.room-info-card .room-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 608px;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .room-info-card .room-image {
    max-width: initial;
  }
}
.room-info-card .room-image .room-thumbnail,
.room-info-card .room-image .room-gallery-slideshow {
  position: relative;
  width: 100%;
  height: initial;
  overflow: hidden;
}
.room-info-card .room-image .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.room-info-card .room-image .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: 100%;
}
.room-info-card .room-image .room-thumbnail,
.room-info-card .room-image .room-gallery-slide {
  position: relative;
  max-height: 520px;
}
@media only screen and (max-width: 767px) {
  .room-info-card .room-image .room-thumbnail,
.room-info-card .room-image .room-gallery-slide {
    max-height: 350px;
  }
}
.room-info-card .room-image .room-thumbnail:before,
.room-info-card .room-image .room-gallery-slide:before {
  content: "";
  display: inline-block;
  width: 0;
  padding-bottom: 85.5%;
}
.room-info-card .room-image .slideshow-controls {
  margin-top: 20px;
  margin-left: auto;
  color: #263664;
}
.room-info-card .room-image .slideshow-controls .slideshow-button svg {
  stroke: #263664;
}
.room-info-card .room-info {
  min-width: 0;
  max-width: 486px;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .room-info-card .room-info {
    max-width: initial;
  }
}
.room-info-card .room-info .h4-header {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 16px;
}
.room-info-card .room-info .h3-feature-title {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 34px;
}
.room-info-card .room-info .buttons-container {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .room-info-card .room-info .buttons-container {
    margin-top: 30px;
  }
}
.room-info-card .room-info .room-features {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .room-info-card .room-info .room-features {
    margin-top: 30px;
  }
}
.room-info-card .room-info .room-features li {
  font: 400 14px/1 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #263664;
}
.room-info-card .room-info .room-features li > * {
  vertical-align: middle;
}
.room-info-card .room-info .room-features li .feature-icon {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin-right: 20px;
  text-align: center;
}
.room-info-card .room-info .room-features li .feature-icon .svg-icon {
  max-width: 100%;
  max-height: 100%;
  fill: #4A78C7;
}
.room-info-card .room-info .room-features li .feature-icon .svg-icon.feature-size-icon {
  max-width: 22px;
}
.room-info-card .room-info .room-features li + li {
  margin-top: 8px;
}
.rooms-slider .room-info-card {
  display: block;
}
.rooms-slider .room-info-card .room-image {
  max-width: 100%;
}
.rooms-slider .room-info-card .room-image .room-thumbnail {
  position: relative;
  max-height: 347px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider .room-info-card .room-image .room-thumbnail {
    max-height: 347px;
  }
}
.rooms-slider .room-info-card .room-image .room-thumbnail:before {
  padding-bottom: 59%;
}
.rooms-slider .room-info-card .room-info {
  max-width: 100%;
  margin-top: 35px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider .room-info-card .room-info {
    margin-top: 30px;
  }
}
.rooms-slider .room-info-card .room-info .buttons-container, .rooms-slider .room-info-card .room-info .room-features {
  margin-top: 35px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider .room-info-card .room-info .buttons-container, .rooms-slider .room-info-card .room-info .room-features {
    margin-top: 30px;
  }
}

.rooms-slider-acm {
  overflow: hidden;
  padding: 70px 0 120px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm {
    padding: 80px 0;
  }
}
.rooms-slider-acm .section-content .page-column {
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .rooms-slider-acm .section-content .page-column {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .page-column {
    flex-direction: column;
    gap: 30px;
  }
}
.rooms-slider-acm .section-content .headings-col {
  text-align: left;
  max-width: 447px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .headings-col {
    max-width: initial;
  }
}
.rooms-slider-acm .section-content .text-col {
  text-align: left;
  max-width: 466px;
  padding-top: 49px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .text-col {
    max-width: initial;
    padding-top: 0;
  }
}
.rooms-slider-acm .section-content .h1-script {
  margin-left: -20px;
  padding: 33px 0;
}
@media only screen and (max-width: 979px) {
  .rooms-slider-acm .section-content .h1-script {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .h1-script {
    margin-left: 0;
  }
}
.rooms-slider-acm .section-content .h1-script + .h2-serif-headlines {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .h1-script + .h2-serif-headlines {
    margin-top: 30px;
  }
}
.rooms-slider-acm .section-content .buttons-container {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content .buttons-container {
    margin-top: 40px;
  }
}
.rooms-slider-acm .section-content + .section-widget {
  margin-top: 76px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-content + .section-widget {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1440px) {
  .rooms-slider-acm .section-widget .page-column {
    max-width: none;
    padding: 0 100px;
  }
}
.rooms-slider-acm .section-widget .slideshow {
  position: relative;
  width: 100%;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-widget .slideshow {
    overflow: hidden;
  }
}
.rooms-slider-acm .section-widget .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.rooms-slider-acm .section-widget .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: calc((100% - 20px)/2);
  background-color: #d3ecc9;
}
.rooms-slider-acm .section-widget .slideshow-controls {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .rooms-slider-acm .section-widget .slideshow-controls {
    margin-top: 30px;
  }
}

.room h1 {
  text-align: center;
}
.room .intro {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .room .intro {
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
  }
}
.room .intro.no-img .description {
  width: 100%;
  margin-left: 0;
}
.room .intro .thumb-wrapper {
  width: calc(65% - 40px);
}
@media screen and (max-width: 1198px) {
  .room .intro .thumb-wrapper {
    width: calc(50% - 33px);
  }
}
@media only screen and (max-width: 767px) {
  .room .intro .thumb-wrapper {
    margin-left: -33px;
    width: calc(100% + 66px);
    margin-bottom: 38px;
  }
}
.room .intro .thumb {
  width: 100%;
  height: 0;
  padding-top: 60%;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .room .intro .thumb {
    padding-top: 100%;
  }
}
.room .intro .description {
  flex-shrink: 0;
  width: 35%;
  margin-left: 40px;
}
@media screen and (max-width: 1198px) {
  .room .intro .description {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .room .intro .description {
    width: 100%;
    margin: 0;
  }
}
.room .intro .description h2 {
  letter-spacing: 4px;
}
@media only screen and (max-width: 767px) {
  .room .intro .description h2 {
    letter-spacing: 3px;
    font-size: 21px;
    margin-bottom: 24px;
  }
}
.room .intro .description .rooms-item-gallery {
  margin-left: 20px;
}

.room-page-acm .row > .page-column {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row > .page-column {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.room-page-acm .row .column {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row .column {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row .column.left {
    order: 2;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row .column.right {
    order: 1;
    padding-left: 0;
  }
}
.room-page-acm .row.top {
  background: #ECECEA;
  padding-top: 100px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.room-page-acm .row.top .column.right {
  padding-left: 70px;
  padding-bottom: 380px;
}
@media screen and (max-width: 1198px) {
  .room-page-acm .row.top .column.right {
    padding-bottom: 240px;
  }
}
@media only screen and (max-width: 979px) {
  .room-page-acm .row.top .column.right {
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .room-page-acm .row.top .column.right {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column.right {
    padding-left: 0;
  }
}
.room-page-acm .row.top .column.right h2.h3-feature-title {
  text-align: center;
  margin-bottom: 54px;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column.right h2.h3-feature-title {
    margin-bottom: 40px;
  }
}
.room-page-acm .row.top .column.right .amenities {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column.right .amenities {
    margin-bottom: 10px;
  }
}
.room-page-acm .row.top .column.right .amenities span.amenity {
  position: relative;
  display: inline-block;
  width: 130px;
  padding: 0 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  font: 400 12px/1 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #263664;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column.right .amenities span.amenity {
    width: 64px;
    box-sizing: content-box;
    margin-bottom: 40px;
  }
}
.room-page-acm .row.top .column.right .amenities span.amenity .icon {
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  margin-bottom: 15px;
}
.room-page-acm .row.top .column.right .amenities span.amenity .icon svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  fill: #4A78C7;
}
.room-page-acm .row.top .column .thumb {
  width: 100%;
  height: 0;
  padding-top: 80%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column .thumb {
    margin-left: -22px;
    width: calc(100% + 44px);
    height: 0;
    padding-top: calc(100% + 44px);
  }
}
.room-page-acm .row.top .column .description-left {
  margin-top: 28px;
  width: 50%;
}
@media only screen and (max-width: 979px) {
  .room-page-acm .row.top .column .description-left {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.top .column .description-left {
    margin-top: 40px;
  }
}
.room-page-acm .row.bottom {
  padding-top: 140px;
  padding-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom .column.left .main-text {
    text-align: center;
  }
}
.room-page-acm .row.bottom .column.left nav {
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom .column.left nav {
    text-align: center;
    margin-top: 44px;
  }
}
.room-page-acm .row.bottom .column.right {
  padding-left: 70px;
  margin-top: -540px;
}
@media screen and (max-width: 1198px) {
  .room-page-acm .row.bottom .column.right {
    margin-top: -400px;
  }
}
@media only screen and (max-width: 979px) {
  .room-page-acm .row.bottom .column.right {
    margin-top: -200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .room-page-acm .row.bottom .column.right {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom .column.right {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 76px;
  }
}
.room-page-acm .row.bottom .column.right .thumb {
  width: 100%;
  height: 796px;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1198px) {
  .room-page-acm .row.bottom .column.right .thumb {
    height: 700px;
  }
}
@media only screen and (max-width: 979px) {
  .room-page-acm .row.bottom .column.right .thumb {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom .column.right .thumb {
    margin-left: -22px;
    width: calc(100% + 44px);
    height: 0;
    padding-top: calc(100% + 44px);
  }
}
.room-page-acm .row.bottom .column.right .description-right {
  margin-top: 28px;
  padding-left: 40%;
  padding-right: 10px;
}
@media only screen and (max-width: 979px) {
  .room-page-acm .row.bottom .column.right .description-right {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-acm .row.bottom .column.right .description-right {
    margin-top: 44px;
  }
}

.room-page-additional-acm {
  padding-top: 80px;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm {
    padding-top: 45px;
  }
}
.room-page-additional-acm:last-child {
  padding-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm:last-child {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .headings {
    display: none !important;
  }
}
.room-page-additional-acm .headings,
.room-page-additional-acm .tiles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .headings,
.room-page-additional-acm .tiles {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.room-page-additional-acm .column {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column {
    width: 100% !important;
  }
}
.room-page-additional-acm .column.left {
  width: 30%;
}
@media only screen and (max-width: 979px) {
  .room-page-additional-acm .column.left {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column.left {
    order: 2;
  }
}
.room-page-additional-acm .column.right {
  width: calc(70% - 70px);
}
@media only screen and (max-width: 979px) {
  .room-page-additional-acm .column.right {
    width: 45%;
  }
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column.right {
    order: 1;
    margin-bottom: 30px;
  }
}
.room-page-additional-acm .column h2 {
  margin-bottom: 50px;
}
.room-page-additional-acm .column h2.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column h2.mobile {
    display: block;
  }
}
.room-page-additional-acm .column .tile {
  position: relative;
  height: 434px;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column .tile {
    height: auto;
  }
}
.room-page-additional-acm .column .tile:hover .thumb:after {
  opacity: 0.7;
}
.room-page-additional-acm .column .tile.stripes:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: url("../images/bg-black-narrow.png") 50% 100% repeat;
}
.room-page-additional-acm .column .tile .thumb {
  position: relative;
  height: 100%;
  background-color: #263664;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .room-page-additional-acm .column .tile .thumb {
    height: 0;
    padding-top: 100%;
  }
}
.room-page-additional-acm .column .tile .thumb:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
  transition: 350ms ease-in-out;
}
.room-page-additional-acm .column .tile h3 {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 20px;
  right: 20px;
  color: #fff;
  z-index: 2;
}
.room-page-additional-acm .column .tile a.link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
  text-indent: -10000px;
  z-index: 2;
}

/* TEMPLATE 1 - 1 */
.three-columns-list-acm {
  padding: 60px 0 66px;
  background-color: #C6DEE7;
}
@media only screen and (max-width: 979px) {
  .three-columns-list-acm {
    padding: 50px 0 46px;
  }
}
.three-columns-list-acm .content-column {
  text-align: center;
}
.three-columns-list-acm .h3-feature-title {
  margin-bottom: 40px;
}
@media only screen and (max-width: 979px) {
  .three-columns-list-acm .h3-feature-title {
    margin-bottom: 50px;
  }
}
.three-columns-list-acm .three-columns-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 60px;
}
@media only screen and (max-width: 767px) {
  .three-columns-list-acm .three-columns-list {
    flex-direction: column;
    gap: 0;
  }
}
.three-columns-list-acm .three-columns-list .list-item {
  width: calc((100% - 120px)/3);
  padding: 11px 10px 9px;
  font: 400 14px/1 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #263664;
  text-align: center;
  border-bottom: 1px dashed #4A78C7;
}
@media only screen and (min-width: 980px) {
  .three-columns-list-acm .three-columns-list .list-item:nth-child(-n+3) {
    border-top: 1px dashed #4A78C7;
  }
  .three-columns-list-acm .three-columns-list .list-item:last-child {
    margin-right: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .three-columns-list-acm .three-columns-list .list-item {
    width: calc((100% - 60px)/2);
  }
  .three-columns-list-acm .three-columns-list .list-item:nth-child(-n+2) {
    border-top: 1px dashed #4A78C7;
  }
}
@media only screen and (max-width: 767px) {
  .three-columns-list-acm .three-columns-list .list-item {
    width: 100%;
  }
  .three-columns-list-acm .three-columns-list .list-item:nth-child(-n+1) {
    border-top: 1px dashed #4A78C7;
  }
}

.grid-content-acm {
  padding: 120px 0;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm {
    padding: 70px 0;
  }
}
.grid-content-acm .section-content, .grid-content-acm .add-section-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .section-content, .grid-content-acm .add-section-content {
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .grid-content-acm .section-content, .grid-content-acm .add-section-content {
    flex-direction: column;
  }
}
.grid-content-acm .content-wrapper {
  text-align: left;
}
.grid-content-acm .content-wrapper .page-content-modern {
  text-align: inherit;
}
.grid-content-acm .image {
  position: relative;
}
.grid-content-acm .image:before {
  content: "";
  display: inline-block;
}
.grid-content-acm .h1-script {
  margin-bottom: 4px;
  line-height: 143px;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .h1-script {
    margin-bottom: 30px;
    line-height: 60px;
  }
}
.grid-content-acm .h1-serif-headlines {
  margin-bottom: 15px;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .h1-serif-headlines {
    margin-bottom: 30px;
  }
}
.grid-content-acm .section-content .image,
.grid-content-acm .add-section-content .content-wrapper {
  width: 485px;
}
@media only screen and (max-width: 767px) {
  .grid-content-acm .section-content .image,
.grid-content-acm .add-section-content .content-wrapper {
    width: 100%;
  }
}
.grid-content-acm .section-content .content-wrapper,
.grid-content-acm .add-section-content .image {
  width: 590px;
}
@media only screen and (max-width: 767px) {
  .grid-content-acm .section-content .content-wrapper,
.grid-content-acm .add-section-content .image {
    width: 100%;
  }
}
.grid-content-acm .section-content .content-wrapper {
  order: 2;
  padding: 65px 0;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .grid-content-acm .section-content .content-wrapper {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .grid-content-acm .section-content .content-wrapper {
    order: initial;
    padding: 0;
  }
}
.grid-content-acm .section-content .content-wrapper > * {
  max-width: 470px;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .section-content .content-wrapper > * {
    max-width: initial;
  }
}
.grid-content-acm .section-content .image:before {
  padding-bottom: 143%;
}
.grid-content-acm .add-section-content {
  margin-top: -20px;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .add-section-content {
    margin-top: 30px;
  }
}
.grid-content-acm .add-section-content .content-wrapper {
  padding: 80px 0;
}
@media only screen and (max-width: 979px) {
  .grid-content-acm .add-section-content .content-wrapper {
    padding: 0;
  }
}
.grid-content-acm .add-section-content .image:before {
  padding-bottom: 66%;
}
.tiles-slider-acm .content-column {
  padding-top: 70px;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .content-column {
    padding-top: 70px;
  }
}
.bg-content-with-images-acm + .tiles-slider-acm {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm + .tiles-slider-acm {
    margin-top: 80px;
  }
}
.bg-content-with-images-acm + .tiles-slider-acm .content-column {
  padding-top: 0;
}
.tiles-slider-acm .h3-script {
  margin-bottom: 9px;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .h3-script {
    margin-bottom: 30px;
  }
}
.tiles-slider-acm .h2-serif-headlines {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .h2-serif-headlines {
    margin-bottom: 30px;
  }
}
.tiles-slider-acm .section-content + .section-widget {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .section-content + .section-widget {
    margin-top: 30px;
  }
}
.tiles-slider-acm .slideshow {
  position: relative;
  width: 100%;
  height: initial;
  overflow: hidden;
}
.tiles-slider-acm .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.tiles-slider-acm .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex: 0 0 calc(100% / 3);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .tiles-slider-acm .slideshow-wrapper:not(.swiper-wrapper) .slide {
    flex: 0 0 calc(100% / 2);
  }
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .slideshow-wrapper:not(.swiper-wrapper) .slide {
    flex: 0 0 calc(100% - 22px);
  }
}
.tiles-slider-acm .slide {
  position: relative;
  display: flex;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .slide {
    flex: 0 0 calc(100% - 22px);
  }
}
.tiles-slider-acm .slide:before {
  content: "";
  display: inline-block;
  width: 0;
  max-height: 760px;
  padding-bottom: 163%;
}
@media only screen and (max-width: 767px) {
  .tiles-slider-acm .slide:before {
    max-height: 600px;
  }
}
.tiles-slider-acm .slide .tile-content {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to bottom, rgba(32, 29, 26, 0) 0%, rgba(32, 29, 26, 0.4) 100%);
  color: #F8F8F7;
  z-index: 5;
}
.tiles-slider-acm .slide .tile-content .h3-feature-title {
  color: inherit;
}
.tiles-slider-acm .slide .tile-content .buttons-container:not(:first-child) {
  margin-top: 10px;
}
.tiles-slider-acm .slide .tile-content .button-link.arrow-right {
  padding-right: 30px;
}
.tiles-slider-acm .slide:hover img {
  transform: scale(1.1);
}

.content-under-images-acm {
  padding: 120px 0 100px;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm {
    padding: 50px 0;
  }
}
.content-under-images-acm + .content-under-images-acm {
  padding-top: 0;
}
.content-under-images-acm .dashed-divider {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#main-content + .content-under-images-acm .dashed-divider {
  display: block;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-slider {
    padding: 0;
  }
}
.content-under-images-acm .section-slider .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content-under-images-acm .section-slider .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.content-under-images-acm .section-slider .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: 100%;
}
.content-under-images-acm .section-slider .slide {
  position: relative;
  max-height: 550px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-slider .slide {
    max-height: 355px;
  }
}
.content-under-images-acm .section-slider .slide:before {
  content: "";
  display: inline-block;
  width: 0;
  padding-bottom: 56.7%;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-slider .slide:before {
    padding-bottom: 141.3%;
  }
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-slider .slideshow-button.circled {
    display: none;
  }
}
.content-under-images-acm .section-slider + .section-content {
  margin-top: 25px;
}
.content-under-images-acm .section-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.content-under-images-acm .section-content .headings-col {
  max-width: 447px;
}
@media only screen and (max-width: 979px) {
  .content-under-images-acm .section-content .headings-col {
    max-width: initial;
    padding-bottom: 40px;
    border-bottom: 1px dashed #4A78C7;
  }
}
.content-under-images-acm .section-content .headings-col .h4-header {
  margin-bottom: 16px;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-content .headings-col .h2-serif-headlines {
    margin-bottom: 20px;
  }
}
.content-under-images-acm .section-content .headings-col .buttons-container {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .content-under-images-acm .section-content .headings-col .buttons-container {
    margin-top: 45px;
  }
}
.content-under-images-acm .section-content .text-col {
  max-width: 710px;
  padding-top: 30px;
  padding-bottom: 26px;
  border-bottom: 1px dashed #4A78C7;
}
@media only screen and (max-width: 979px) {
  .content-under-images-acm .section-content .text-col {
    display: none;
  }
}

.content-on-images-acm {
  padding: 100px 0 120px;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm {
    padding: 70px 0;
  }
}
.content-on-images-acm + .content-on-images-acm {
  padding-top: 0;
}
@media only screen and (min-width: 1440px) {
  .content-on-images-acm .page-column {
    max-width: 1920px;
    padding: 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .page-column {
    padding: 0;
  }
}
.content-on-images-acm .section-content {
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .section-content {
    align-items: stretch;
  }
}
.content-on-images-acm .section-content:before {
  content: "";
  display: inline-block;
  width: 0;
  padding-bottom: 56.7%;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .section-content:before {
    max-height: 600px;
    padding-bottom: 152.5%;
  }
}
.content-on-images-acm .content-wrapper {
  position: relative;
  width: 100%;
  max-width: 669px;
  padding: 120px 100px;
  color: #F8F8F7;
  text-align: left;
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .content-on-images-acm .content-wrapper {
    max-width: 549px;
    padding: 100px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .content-wrapper {
    display: flex;
    flex-direction: column;
    max-width: initial;
    padding: 50px 22px 30px;
  }
}
.content-on-images-acm.content-position-right .content-wrapper {
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm.content-position-right .content-wrapper {
    margin-left: 0;
  }
}
.content-on-images-acm .small-image {
  display: block;
  width: 100%;
  max-width: 110px;
  height: auto;
  margin-bottom: 40px;
}
.content-on-images-acm .h3-script {
  margin-bottom: 10px;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .h3-script {
    margin-top: 7px;
  }
}
.content-on-images-acm .h3-feature-title {
  margin-bottom: 10px;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .h3-feature-title {
    margin-top: 19px;
  }
}
.content-on-images-acm .h3-feature-title, .content-on-images-acm .running-text {
  max-width: 318px;
}
.content-on-images-acm .buttons-container {
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .buttons-container {
    margin-top: auto;
  }
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .buttons-container .button {
    min-width: 180px;
  }
}
.content-on-images-acm .section-slider {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.content-on-images-acm .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.content-on-images-acm .slideshow:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, rgba(32, 29, 26, 0) 0%, rgba(32, 29, 26, 0.4) 100%);
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .slideshow:before {
    background: rgba(32, 29, 26, 0.3);
  }
}
.content-on-images-acm .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.content-on-images-acm .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: 100%;
}
.content-on-images-acm .slide {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .content-on-images-acm .slideshow-button.circled {
    display: none;
  }
}

.bg-content-with-images-acm {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.bg-content-with-images-acm.even .section-content {
  order: 1;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm.even .section-content {
    order: 0;
  }
}
.bg-content-with-images-acm .section-content {
  width: 100%;
  min-width: 0;
  max-width: 570px;
  background-color: #263664;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm .section-content {
    max-width: initial;
  }
}
.bg-content-with-images-acm .content-column {
  max-width: 365px;
  padding: 50px 0;
  color: #F8F8F7;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm .content-column {
    max-width: initial;
    padding: 30px 0 45px;
  }
}
.bg-content-with-images-acm .h4-header {
  margin-bottom: 18px;
  font-size: 16px;
  color: inherit;
}
.bg-content-with-images-acm .h3-feature-title {
  margin-bottom: 25px;
  color: inherit;
}
.bg-content-with-images-acm .buttons-container {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm .buttons-container {
    margin-top: 30px;
  }
}
.bg-content-with-images-acm .section-slider {
  position: relative;
  display: flex;
  width: 100%;
  min-width: 0;
  background-color: #4A78C7;
}
.bg-content-with-images-acm .section-slider:before {
  content: "";
  display: inline-block;
  width: 0;
  max-height: 720px;
  padding-bottom: 86.5%;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm .section-slider {
    max-width: initial;
  }
}
.bg-content-with-images-acm .section-slider .slideshow {
  position: relative;
  width: 100%;
  height: initial;
  overflow: hidden;
  flex-shrink: 0;
}
.bg-content-with-images-acm .section-slider .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}
.bg-content-with-images-acm .section-slider .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: 100%;
}
.bg-content-with-images-acm .section-slider .slide {
  position: relative;
}
.bg-content-with-images-acm .section-slider .slideshow-controls {
  position: absolute;
  left: 30px;
  bottom: 25px;
  color: #F8F8F7;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .bg-content-with-images-acm .section-slider .slideshow-controls {
    left: 52px;
    bottom: 20px;
  }
}
.bg-content-with-images-acm .section-slider .slideshow-controls .slideshow-button svg {
  stroke: #F8F8F7;
}

.content-with-slider-acm {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: auto;
  padding: 100px 0 120px;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm {
    flex-direction: column;
    padding: 80px 0;
  }
}
.content-with-slider-acm .section-content {
  flex-shrink: 0;
  width: 100%;
  max-width: calc(50vw - (1200px/2 - 561px) - 20px);
  margin-left: 20px;
  padding-left: 40px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1200px) {
  .content-with-slider-acm .section-content {
    max-width: calc(561px + 40px);
    flex-shrink: 1;
  }
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .section-content {
    max-width: initial;
    margin-left: 0;
    padding: 0 22px;
  }
}
.content-with-slider-acm .section-slider {
  width: 100%;
  max-width: calc(50vw + (586px - 1200px/2));
  padding-right: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .content-with-slider-acm .section-slider {
    max-width: calc(586px + 40px + 20px);
  }
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .section-slider {
    max-width: initial;
    margin-right: 0;
    padding: 0 22px;
  }
}
.content-with-slider-acm .content-wrapper {
  width: 100%;
  min-width: 0;
  max-width: 561px;
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .content-wrapper {
    max-width: initial;
  }
}
.content-with-slider-acm .content-wrapper .h1-script {
  margin-left: -20px;
  margin-bottom: 8px;
  padding: 33px 0;
}
@media only screen and (max-width: 979px) {
  .content-with-slider-acm .content-wrapper .h1-script {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .content-wrapper .h1-script {
    margin-left: 0;
  }
}
.content-with-slider-acm .content-wrapper .h2-serif-headlines {
  margin-bottom: 20px;
}
.content-with-slider-acm .content-wrapper .h2-serif-headlines, .content-with-slider-acm .content-wrapper .running-text {
  max-width: 473px;
}
@media only screen and (max-width: 979px) {
  .content-with-slider-acm .content-wrapper .h2-serif-headlines, .content-with-slider-acm .content-wrapper .running-text {
    max-width: initial;
  }
}
.content-with-slider-acm .content-wrapper .buttons-container {
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .content-wrapper .buttons-container {
    margin-top: 30px;
  }
}
.content-with-slider-acm .slideshow {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 586px;
  height: initial;
  overflow: visible;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .slideshow {
    overflow: hidden;
  }
}
.content-with-slider-acm .slideshow-wrapper:not(.swiper-wrapper) {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.content-with-slider-acm .slideshow-wrapper:not(.swiper-wrapper) .slide {
  flex-shrink: 0;
  width: 100%;
}
.content-with-slider-acm .slide {
  position: relative;
  transform: padding-bottom 350ms ease-in-out;
}
.content-with-slider-acm .slide .image {
  position: relative;
  display: flex;
  max-height: 444px;
  margin-bottom: 20px;
  transition: max-height 150ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .slide .image {
    max-height: 260px;
    margin-bottom: 24px;
    transition: none;
  }
}
.content-with-slider-acm .slide .image:before {
  content: "";
  display: inline-block;
  width: 0;
  padding-bottom: 95%;
  transition: padding-bottom 150ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .slide .image:before {
    padding-bottom: 75%;
    transition: none;
  }
}
.content-with-slider-acm .slide .h4-header {
  font-size: 28px;
  margin-bottom: 15px;
}
.content-with-slider-acm .slide.swiper-slide.swiper-slide-active .image, .content-with-slider-acm .slide:not(.swiper-slide):first-child .image {
  max-height: 390px;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .slide.swiper-slide.swiper-slide-active .image, .content-with-slider-acm .slide:not(.swiper-slide):first-child .image {
    max-height: 260px;
  }
}
.content-with-slider-acm .slide.swiper-slide.swiper-slide-active .image:before, .content-with-slider-acm .slide:not(.swiper-slide):first-child .image:before {
  padding-bottom: 85%;
}
@media only screen and (max-width: 767px) {
  .content-with-slider-acm .slide.swiper-slide.swiper-slide-active .image:before, .content-with-slider-acm .slide:not(.swiper-slide):first-child .image:before {
    padding-bottom: 75%;
  }
}
.content-with-slider-acm .slideshow-controls {
  margin-top: 35px;
}

#home-gallery {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 10px;
  text-align: center;
  z-index: 10;
}
#home-gallery h2 {
  display: none;
  font: 200 36px/1.2 "Old Standard TT", sans-serif;
  margin: 40px 0;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #home-gallery h2 {
    display: block;
  }
}
#home-gallery div.gallery-wrapper {
  overflow: hidden;
}
#home-gallery .photo {
  display: block;
  float: left;
  margin: 10px 0 0 10px;
  width: calc((100% - 60px) / 5);
  height: 0;
  padding-top: calc((100% - 60px) / 5);
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  font-size: 0;
  transition: opacity 0.3s ease-out;
  opacity: 1;
}
#home-gallery .photo:hover {
  opacity: 0.8;
}
#home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #home-gallery .photo {
    width: calc((100% - 50px) / 4);
    padding-top: calc((100% - 50px) / 4);
  }
  #home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
    width: calc((100% - 50px) / 4);
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery .photo {
    width: calc((100% - 30px) / 2);
    padding-top: calc((100% - 30px) / 2);
  }
  #home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
    width: calc((100% - 30px) / 2);
  }
  #home-gallery .photo:nth-child(n+8) {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  #home-gallery span.photo {
    display: none;
  }
}
#home-gallery span.photo:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
#home-gallery span.photo .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 25px/25px "Old Standard TT", sans-serif;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
}
#home-gallery span.photo .text a {
  margin-top: 6px;
  padding: 0 20px;
}
#home-gallery .all-photos {
  display: none;
}
@media only screen and (max-width: 767px) {
  #home-gallery .all-photos {
    display: block;
    margin-top: 40px;
  }
}

#merchandising_tile {
  position: fixed;
  bottom: 0;
  right: -600px;
  width: 525px;
  z-index: 999;
  background: transparent;
  color: white;
  height: 250px;
  transition: 1s;
}
@media only screen and (max-width: 767px) {
  #merchandising_tile {
    width: 100%;
    height: 270px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 980px) {
  #merchandising_tile.centered {
    bottom: 25%;
  }
}
#merchandising_tile .img-overlay {
  width: 525px;
  height: 220px;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #merchandising_tile .img-overlay {
    width: calc(100% - 40px);
  }
}
#merchandising_tile .img-overlay .color-overlay {
  background-color: rgba(38, 54, 106, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#merchandising_tile .promo-name {
  font-size: 20px;
  text-align: center;
  margin-top: 65px;
  text-transform: uppercase;
}
#merchandising_tile .promo-text {
  font-size: 14px;
  padding: 10px 20px;
  text-align: center;
}
#merchandising_tile .promo-content {
  text-align: center;
  padding: 0 40px 0 0;
}
#merchandising_tile .promo-content .button {
  text-align: center;
  background-color: transparent;
  border: 0;
}
#merchandising_tile .promo-content .button:hover {
  color: #fff;
  opacity: 0.7;
}

#merchandising_tile.merchandising-tile-active {
  right: 0px;
}

.merchandising-open-btn {
  width: 40px;
  height: 220px;
  background-color: #26366A;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  float: right;
  transition: bottom 1s;
}
@media only screen and (max-width: 767px) {
  .merchandising-open-btn {
    bottom: 60px;
  }
}
@media only screen and (min-width: 980px) {
  .merchandising-open-btn.centered {
    bottom: 25%;
  }
}
.merchandising-open-btn .arrow-rotate {
  display: block;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  width: 25px;
  transform: rotate(0deg);
  transition: all 1s;
}
.merchandising-open-btn .arrow-rotate:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 8px;
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.merchandising-open-btn .active-rotate {
  transform: rotate(180deg);
  right: 10px;
}

#footer {
  position: relative;
  padding: 150px 0 110px;
  font: 400 22px/31px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: #F8F8F7;
  background-color: #201D1A;
  border-bottom: 20px solid #F8F8F7;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 84px 0 60px;
    border-bottom: none;
  }
}
#footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("../images/light-lines-pattern.svg") 0% 0% repeat-x;
}
@media only screen and (min-width: 1440px) {
  #footer .page-column {
    max-width: 1800px;
    padding: 0 100px;
  }
}
#footer a {
  color: inherit;
  text-decoration: none;
}
#footer .footer-top-cells, #footer .footer-bottom-cells {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  #footer .footer-top-cells {
    flex-direction: column;
    gap: 0;
  }
}
#footer .footer-bottom-cells {
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #footer .footer-bottom-cells {
    justify-content: center;
    gap: 40px 55px;
  }
}
#footer .footer-top-cells + .footer-bottom-cells {
  margin-top: 90px;
}
@media only screen and (max-width: 979px) {
  #footer .footer-top-cells + .footer-bottom-cells {
    margin-top: 65px;
  }
}
#footer .footer-contacts-cell, #footer .footer-menu-cell, #footer .footer-socials-cell, #footer .copyright-cell {
  flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
  #footer .hotel-logo-cell {
    padding-left: 41px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #footer .footer-contacts-cell {
    order: 3;
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-contacts-cell {
    margin-top: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #footer .footer-menu-cell {
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-menu-cell {
    margin-top: 51px;
    padding-left: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #footer .footer-socials-cell {
    order: 4;
    width: calc(50% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-socials-cell {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#footer .independent-collection-logo-cell {
  flex-basis: 195px;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  #footer .independent-collection-logo-cell {
    flex-basis: auto;
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  #footer .copyright-cell {
    order: 3;
    width: 100%;
    text-align: center;
  }
}
#footer .marriott-bonvoy-logo-cell {
  flex-basis: 223px;
}
@media only screen and (max-width: 979px) {
  #footer .marriott-bonvoy-logo-cell {
    flex-basis: auto;
  }
}
#footer .hotel-logo, #footer .independent-collection-logo, #footer .marriott-bonvoy-logo {
  display: inline-block;
}
#footer .hotel-logo img, #footer .independent-collection-logo img, #footer .marriott-bonvoy-logo img {
  display: block;
  width: 100%;
  height: auto;
}
#footer .hotel-logo {
  max-width: 195px;
  max-height: 277px;
}
@media only screen and (max-width: 767px) {
  #footer .hotel-logo {
    max-width: 170px;
    max-height: 242px;
  }
}
#footer .independent-collection-logo {
  max-width: 165px;
}
#footer .marriott-bonvoy-logo {
  max-width: 129px;
}

#footer-contacts {
  font: 400 22px/31px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: inherit;
}
@media only screen and (max-width: 979px) {
  #footer-contacts {
    font-size: 24px;
    line-height: 34px;
  }
}
#footer-contacts .address, #footer-contacts .phone {
  position: relative;
  padding-left: 44px;
}
@media only screen and (max-width: 979px) {
  #footer-contacts .address, #footer-contacts .phone {
    padding-left: 54px;
  }
}
#footer-contacts .contact-icon {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 21px;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 979px) {
  #footer-contacts .contact-icon {
    width: 44px;
  }
}
#footer-contacts .contact-icon svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
}
#footer-contacts .address svg {
  width: 18px;
  height: 27px;
}
@media only screen and (max-width: 979px) {
  #footer-contacts .address svg {
    width: 30px;
    height: 44px;
  }
}
#footer-contacts .phone svg {
  width: 21px;
  height: 22px;
}
@media only screen and (max-width: 979px) {
  #footer-contacts .phone svg {
    width: 44px;
    height: 46px;
  }
}
#footer-contacts .address + .phone {
  margin-top: 50px;
}
@media only screen and (max-width: 979px) {
  #footer-contacts .address + .phone {
    margin-top: 40px;
  }
}

#footer-menu {
  font-size: 0;
}
#footer-menu li {
  display: block;
}
#footer-menu a {
  display: block;
  font: 400 22px/31px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  color: inherit;
}
@media only screen and (max-width: 979px) {
  #footer-menu a {
    margin: 0;
    font-size: 24px;
    line-height: 42px;
  }
}
#footer-menu a:hover, #footer-menu a.active {
  opacity: 0.5;
}

#footer .copyright {
  font: 400 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: inherit;
}

#footer .socials {
  font-size: 0;
  line-height: 1;
}
#footer .socials li {
  display: inline-block;
  margin: 0 21px 0 0;
}
@media only screen and (max-width: 979px) {
  #footer .socials li {
    margin: 0 21px 0 0;
  }
}
#footer .socials li:last-child {
  margin-right: 0;
}
#footer .socials a {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #F8F8F7;
  border-radius: 50%;
  text-indent: -9999px;
  overflow: hidden;
}
@media only screen and (max-width: 979px) {
  #footer .socials a {
    width: 52px;
    height: 52px;
  }
}
#footer .socials a svg {
  position: absolute;
  left: 50%;
  top: 50%;
  max-width: 23px;
  max-height: 23px;
  transform: translate(-50%, -50%);
  fill: #201D1A;
  transition: fill 350ms ease-in-out;
}
@media only screen and (max-width: 979px) {
  #footer .socials a svg {
    max-width: 30px;
    max-height: 30px;
  }
}

#footer #teconsent {
  margin-top: 40px;
}

.booking {
  position: relative;
}
.booking form {
  text-align: left;
  font-size: 0;
}
.booking input[type=text],
.booking select,
.booking .code-control {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0 50px 0 18px;
  text-align: left;
  font: 500 14px/42px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #263664;
  background-color: #C6DEE7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 350ms ease-in-out;
}
.booking .date-control, .booking .adults-control, .booking .children-control, .booking .code-control {
  position: relative;
  width: 100%;
  height: 100%;
}
.booking .adults-control .select-icon, .booking .children-control .select-icon, .booking .code-control .select-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -5px;
  width: 18px;
  height: 10px;
  border: none;
  transform: none;
  stroke: #263664;
  transition: transform 350ms ease-in-out;
  pointer-events: none;
  z-index: 5;
}
.booking .adults-control:hover svg, .booking .children-control:hover svg, .booking .code-control:hover svg {
  transform: scale(1.1);
}
.booking input[type=submit].booking-submit-button {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
}
.booking .booking-columns {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr)) minmax(0, 165px);
  justify-self: center;
  width: 100%;
  max-width: 1072px;
}
.booking .booking-columns .column {
  position: relative;
  display: inline-block;
  vertical-align: top;
  height: 45px;
  border: 2px solid #263664;
  transition: opacity 350ms ease-in-out;
}
.booking .booking-columns .column + .column {
  border-left: 0;
}
.booking .booking-columns .column.dates-column .checkin-control,
.booking .booking-columns .column.dates-column .checkout-control {
  position: relative;
  display: inline-block;
  width: 50%;
  height: 100%;
}
.booking .booking-columns .column.dates-column .checkin-control .booking-calendar-icon,
.booking .booking-columns .column.dates-column .checkout-control .booking-calendar-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  width: 19px;
  height: 18px;
}
.booking .booking-columns .column.dates-column .checkin-control .input-overlay,
.booking .booking-columns .column.dates-column .checkout-control .input-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  z-index: 10;
}
.booking .booking-columns .column.dates-column .checkin-control .input-overlay:focus-visible,
.booking .booking-columns .column.dates-column .checkout-control .input-overlay:focus-visible {
  outline: 1px solid #4A78C7;
  outline-offset: 1px;
}
.booking .booking-columns .column.dates-column .checkin-control + .checkout-control {
  border-left: 2px solid #263664;
}
.booking .booking-columns .column.dates-column .calendar {
  color: #263664;
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  right: 12px;
}
.booking .booking-columns .column.code-column .code-control {
  padding-right: 18px;
  text-align: center;
}
.booking .booking-columns .column.code-column em {
  display: inline-block;
  position: relative;
  color: #4A78C7;
  font-size: 0.7em;
  line-height: 1;
}
.booking .booking-columns .column.code-column em:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(100% + 2px);
  bottom: 100%;
  margin-top: -6px;
  width: 8px;
  height: 5px;
  border-bottom: 1px solid #4A78C7;
  border-left: 1px solid #4A78C7;
  transform: rotate(-45deg) translateY(-50%);
  pointer-events: none;
  z-index: 5;
}
.booking .booking-columns .column.code-column .code-options {
  display: none;
  position: absolute;
  left: -20px;
  top: calc(100% + 15px);
  width: calc(100% + 40px);
  padding: 12px;
  background-color: #F8F8F7;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .booking .booking-columns .column.code-column .code-options {
    top: 100%;
    left: 0;
    width: 100%;
  }
}
.booking .booking-columns .column.code-column .code-options:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
  border-bottom: 12px solid #F8F8F7;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
@media only screen and (max-width: 767px) {
  .booking .booking-columns .column.code-column .code-options:before {
    display: none;
  }
}
.booking .booking-columns .column.code-column .code-options h3 {
  margin-bottom: 10px;
  text-align: center;
  font: 400 16px/1 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 1.07px;
  text-transform: uppercase;
  color: #263664;
}
.booking .booking-columns .column.code-column .code-options .code-label, .booking .booking-columns .column.code-column .code-options .code-value, .booking .booking-columns .column.code-column .code-options .code-input, .booking .booking-columns .column.code-column .code-options .code-select {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0 20px;
  color: #263664;
  font: 400 12px/34px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 1.07px;
  text-transform: uppercase;
  transition: border-color 350ms ease-in-out, background-color 350ms ease-in-out, color 350ms ease-in-out;
}
.booking .booking-columns .column.code-column .code-options .code-input + .select-wrapper {
  margin-top: 8px;
}
.booking .booking-columns .column.code-column .code-options .code-input::-webkit-input-placeholder {
  color: rgba(38, 54, 100, 0.8);
}
.booking .booking-columns .column.code-column .code-options .code-input:-moz-placeholder {
  color: rgba(38, 54, 100, 0.8);
}
.booking .booking-columns .column.code-column .code-options .code-input::-moz-placeholder {
  color: rgba(38, 54, 100, 0.8);
}
.booking .booking-columns .column.code-column .code-options .code-input:-ms-input-placeholder {
  color: rgba(38, 54, 100, 0.8);
}
.booking .booking-columns .column.code-column .code-options .code-input:focus {
  background-color: #F8F8F7;
  border: 2px solid #263664;
}
.booking .booking-columns .column.code-column .code-options .code-input:focus::-webkit-input-placeholder {
  color: rgba(38, 54, 100, 0.3);
}
.booking .booking-columns .column.code-column .code-options .code-input:focus:-moz-placeholder {
  color: rgba(38, 54, 100, 0.3);
}
.booking .booking-columns .column.code-column .code-options .code-input:focus::-moz-placeholder {
  color: rgba(38, 54, 100, 0.3);
}
.booking .booking-columns .column.code-column .code-options .code-input:focus:-ms-input-placeholder {
  color: rgba(38, 54, 100, 0.3);
}
.booking .booking-columns .column.code-column .code-options .code-select-wrapper {
  width: 100%;
}
.booking .booking-columns .column.code-column.code-options-visible .code-options {
  display: block;
}
.booking .booking-columns .column.submit-column {
  border: none;
}
@media (max-width: 1300px) {
  .booking .booking-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .booking .booking-columns .column.dates-column, .booking .booking-columns .column.adults-column, .booking .booking-columns .column.children-column, .booking .booking-columns .column.code-column {
    border-bottom: 0;
  }
  .booking .booking-columns .column.adults-column {
    border-left: 2px solid #263664;
  }
  .booking .booking-columns .column.dates-column, .booking .booking-columns .column.submit-column {
    grid-column: 1/-1;
  }
}
@media only screen and (max-width: 767px) {
  .booking .booking-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking .booking-columns .column.adults-column, .booking .booking-columns .column.children-column {
    grid-column: span 1;
  }
  .booking .booking-columns .column.code-column {
    grid-column: 1/-1;
  }
  .booking .booking-columns .column.adults-column, .booking .booking-columns .column.children-column, .booking .booking-columns .column.code-column {
    border-left: 2px solid #263664;
  }
  .booking .booking-columns .column.adults-column {
    border-right: none;
  }
}

.booking-datepicker {
  position: absolute;
  top: calc(100% + 14px);
  bottom: auto;
  right: auto;
  left: 25%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  z-index: 10;
  transition: all 400ms ease;
}
@media (prefers-reduced-motion) {
  .booking-datepicker {
    transition: none;
  }
}
.booking-datepicker.checkout-step {
  left: 75%;
}
@media only screen and (max-width: 767px) {
  .booking-datepicker.checkout-step {
    left: 50%;
  }
}
.booking-datepicker.visible {
  visibility: visible;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .booking-datepicker {
    top: 100%;
    left: 50%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) and (prefers-reduced-motion) {
  .booking-datepicker {
    transition: none;
  }
}
.booking-datepicker .ui-datepicker {
  position: relative;
  width: 100%;
  white-space: nowrap;
  padding: 12px 8px;
  background-color: #F8F8F7;
}
.booking-datepicker .ui-datepicker:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
  border-bottom: 12px solid #F8F8F7;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker:before {
    display: none;
  }
}
.booking-datepicker .ui-datepicker-group {
  display: inline-block;
  white-space: normal;
  width: calc(50% - 20px);
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker-group {
    width: 100%;
  }
}
.booking-datepicker .ui-datepicker-group.ui-datepicker-group-last {
  margin-left: 40px;
}
@media only screen and (max-width: 767px) {
  .booking-datepicker .ui-datepicker-group.ui-datepicker-group-last {
    display: none;
    margin-left: 0;
  }
}
.booking-datepicker .ui-datepicker-header {
  margin-bottom: 18px;
  font: 600 14px/1 "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 20%;
  text-transform: uppercase;
  color: #263664;
}
.booking-datepicker .ui-datepicker-calendar {
  width: 275px;
}
.booking-datepicker .ui-datepicker-calendar a {
  opacity: 1;
}
.booking-datepicker .ui-datepicker-calendar th {
  padding-bottom: 5px;
  font: 600 10px/14px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0.67px;
  text-transform: uppercase;
  color: #4A78C7;
}
.booking-datepicker .ui-datepicker-calendar td {
  font: 400 10px/30px "Brandon Grotesque WF", Arial, sans-serif;
  color: #263664;
}
.booking-datepicker .ui-datepicker-calendar td a {
  width: 30px;
}
.booking-datepicker .ui-datepicker-calendar td.ui-datepicker-other-month,
.booking-datepicker .ui-datepicker-calendar td.ui-state-disabled {
  color: transparent;
}
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight,
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-current-day,
.booking-datepicker .ui-datepicker-calendar .ui-state-default:hover {
  background-color: #C6DEE7;
  color: #263664;
}
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight a,
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-current-day a,
.booking-datepicker .ui-datepicker-calendar .ui-state-default:hover a {
  background-color: transparent;
  color: inherit;
}
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkin-date {
  border-radius: 50% 0 0 50%;
}
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date {
  border-radius: 0 50% 50% 0;
}
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a,
.booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a {
  background-color: #263664;
  color: #F8F8F7;
  border-radius: 50%;
}

.ui-corner-all:after {
  content: none !important;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  /* FULL SIZE IMAGE */
  /* FULL SIZE IMAGE -> Navigation */
  /* FULL SIZE IMAGE -> Loading */
  /* THUMBNAILS */
  /* THUMBNAILS -> Navigation */
  /* INFO */
}
#hebs-gallery .galleria {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#hebs-gallery .close-button {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .close-button:hover {
  background-position: -37px 0;
}
#hebs-gallery .close-button:active {
  background-position: -74px 0;
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  z-index: 2;
}
#hebs-gallery .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  border: thin solid #ECECEA;
  color: #211E1A;
  background: #fff;
  font-size: 16px;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 20px 72px;
  overflow: hidden;
}
@media only screen and (max-width: 979px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 979px) and (orientation: landscape) {
  #hebs-gallery .galleria-stage {
    bottom: 0;
  }
}
#hebs-gallery .galleria-stage .galleria-image img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#hebs-gallery .galleria-container.touch .galleria-stage {
  padding: 0;
}
#hebs-gallery.no-controls .galleria-stage {
  bottom: 0;
  padding: 20px;
}
#hebs-gallery.no-controls .galleria-image-nav {
  display: none;
}
@media only screen and (max-width: 979px) {
  #hebs-gallery .galleria-image-nav {
    display: none;
  }
}
#hebs-gallery .galleria-image-nav-left, #hebs-gallery .galleria-image-nav-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 31px;
  height: 61px;
  margin-top: -30px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  background-position: 0 -37px;
}
#hebs-gallery .galleria-image-nav-left:hover {
  background-position: -51px -37px;
}
#hebs-gallery .galleria-image-nav-left:active {
  background-position: -102px -37px;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  background-position: 0 -118px;
}
#hebs-gallery .galleria-image-nav-right:hover {
  background-position: -51px -118px;
}
#hebs-gallery .galleria-image-nav-right:active {
  background-position: -102px -118px;
}
#hebs-gallery .galleria-loader {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
}
#hebs-gallery .galleria-loader:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #ff6b09;
  border-bottom-color: #ff6b09;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 979px) and (orientation: landscape) {
  #hebs-gallery .galleria-thumbnails-container {
    display: none;
  }
}
#hebs-gallery .galleria-carousel .galleria-thumbnails-list {
  margin-left: 52px;
  margin-right: 52px;
}
#hebs-gallery .galleria-thumbnails {
  margin: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 21px;
  height: 21px;
  margin-top: -10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:hover {
  background-position: -26px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:active {
  background-position: -57px -199px;
}
#hebs-gallery .galleria-thumb-nav-left.disabled {
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  background-position: 5px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:hover {
  background-position: -26px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:active {
  background-position: -57px -240px;
}
#hebs-gallery .galleria-thumb-nav-right.disabled {
  background-position: 5px -240px;
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.specials:after {
  clear: both;
  content: "";
  display: table;
}
.specials .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item {
    height: auto;
  }
}
.specials .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: thin solid #BFBFBF;
  z-index: -1;
}
.specials .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .specials .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .background {
    width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0 0 10px 0;
  }
}
.specials .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.specials .image-list-item .description h3 {
  margin-bottom: 15px;
}
.specials .image-list-item .description h3 a {
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
.specials .image-list-item .description h3 a:hover {
  color: #211E1A;
  opacity: 1;
}
.specials .image-list-item .description nav {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .specials .image-list-item .description nav {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description nav {
    text-align: center;
    width: 100%;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
  }
  .specials .image-list-item .description nav a {
    margin-bottom: 10px;
  }
}

.single-special .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    height: 0;
    padding-top: 100%;
    float: none;
    margin-left: 0;
  }
}
.single-special nav a {
  margin-top: 10px;
}

.page-content .careers .narrow {
  width: 20%;
}

.hotel-location-map {
  position: relative;
  height: 812px;
  max-height: 80vh;
  background: #F9F9F7;
}
.hotel-location-map:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #ff6b09;
  border-bottom-color: #ff6b09;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hotel-location-map.loaded:before {
  content: none;
}
.hotel-location-map:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: url("../images/bg-white.png") 50% 0 repeat-x;
}

.map-content {
  background: #fff;
  font: 18px/22px "Old Standard TT", sans-serif !important;
  overflow: hidden;
  padding: 32px 32px 24px;
  position: relative;
  text-align: center;
  color: #fff;
  width: 416px;
}
@media only screen and (max-width: 767px) {
  .map-content {
    width: 300px;
  }
}
.map-content p {
  color: #211E1A;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  font-family: "Old Standard TT", sans-serif;
}
.map-content h3 {
  font: 24px/36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #211E1A;
  margin-bottom: 0;
  font-weight: 500;
}
.map-content h3 + p {
  margin: 16px 0;
}
.map-content p + p {
  margin-top: 20px;
}
.map-content a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}
.map-content .button {
  display: none;
}
.map-content .links-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.map-content .links-wrapper a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}
.map-content .links-wrapper a:hover {
  border-bottom: 2px solid #211E1A;
  color: #211E1A;
  opacity: 1;
}
.map-content .links-wrapper a:first-child {
  margin-bottom: 10px;
}

.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: none;
  color: #333;
  box-shadow: none;
}

.leaflet-container a.leaflet-popup-close-button {
  display: none;
}

.leaflet a {
  position: relative;
  color: #263664;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  font-size: 16px;
  line-height: 36px;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 2px solid #fff;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  width: calc((100% / 3) - 32px);
  height: 440px;
  margin: 0 16px 32px 16px;
  position: relative;
  overflow: hidden;
  background-color: #ECECEA;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1440px) {
  .pressroom .pressroom-item {
    width: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 16px 0;
  }
}
.pressroom .pressroom-item.no-img .description {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  background: transparent;
}
.pressroom .pressroom-item.no-img .description .copy a {
  color: #263664;
}
.pressroom .pressroom-item.no-img .description h4,
.pressroom .pressroom-item.no-img .description p {
  color: #211E1A;
}
.pressroom .pressroom-item.no-img .description time,
.pressroom .pressroom-item.no-img .description .pdf {
  color: #263664;
}
.pressroom .pressroom-item h3 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pressroom .pressroom-item time {
  font: bold 14px "Brandon Grotesque WF", Arial, sans-serif;
  color: #ECECEA;
  display: block;
  margin: 5px 0 10px 0;
}
.pressroom .pressroom-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
}
.pressroom .pressroom-item .description h3 {
  color: #fff;
  font-weight: 700;
}
.pressroom .pressroom-item .description p {
  color: #fff;
  line-height: 20px;
  font-size: 16px;
  margin-bottom: 0;
}
.pressroom .pressroom-item .description a {
  color: #fff;
}
.pressroom .pressroom-item .pdf {
  color: #ECECEA;
  font: bold 14px "Brandon Grotesque WF", Arial, sans-serif;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  padding-left: 0 !important;
}
.pressroom .pressroom-item .pdf:hover {
  color: #fff;
}
.pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
  border: 1px solid #263664;
}
.pressroom .pressroom-item .view-gallery:hover {
  background: #fff;
  color: #211E1A;
  border-color: #211E1A;
}

.galleries {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.galleries .gallery {
  width: calc((100% / 3) - 32px);
  padding-bottom: calc((100% / 3) - 16px);
  height: 0;
  margin: 0 16px 32px 16px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #263664;
  font-size: 14px;
}
@media screen and (max-width: 1440px) {
  .galleries .gallery {
    width: calc(50% - 32px);
    padding-bottom: calc(50% - 32px);
  }
}
@media only screen and (max-width: 767px) {
  .galleries .gallery {
    width: 100%;
    padding-bottom: 100%;
    margin: 16px 0;
  }
}
.galleries .gallery h2, .galleries .gallery h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 26px/30px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
  color: inherit;
  z-index: 1;
}
.galleries .gallery h3 {
  top: auto;
  bottom: 10px;
  font-size: 14px;
  opacity: 1;
  line-height: 1;
  text-align: center;
}
.galleries .gallery:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease-in-out;
  z-index: 0;
}
.galleries .gallery:hover h2, .galleries .gallery:hover h3 {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
.galleries .gallery:hover .description {
  right: 0;
}
.galleries .gallery:hover:after {
  background: rgba(0, 0, 0, 0.5);
}
.galleries .gallery .description {
  position: absolute;
  right: -100%;
  top: 0;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
@media only screen and (max-width: 979px) {
  .galleries .gallery .description {
    font-size: 16px;
    line-height: 20px;
  }
}
.galleries .gallery .description .centered {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
  display: inline-block;
  width: calc(100% - 4px);
  box-sizing: border-box;
}

.tiles-gallery .category-selector-modern {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery .category-selector-modern {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .tiles-gallery .tiles-wrapper {
    overflow-x: auto;
  }
}
.tiles-gallery .tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery .tiles {
    flex-direction: column;
    gap: 25px;
    height: calc(250px*2 + 25px);
  }
}
.tiles-gallery .tiles .gallery-tile {
  display: flex;
  position: relative;
  width: calc((100% - 90px)/4);
  flex-shrink: 0;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery .tiles .gallery-tile {
    width: 250px;
  }
}
.tiles-gallery .tiles .gallery-tile .view-gallery {
  position: relative;
  display: inline-block;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: top;
  z-index: 5;
  transition: background-color 350ms ease-in-out;
}
.tiles-gallery .tiles .gallery-tile:hover img {
  transform: scale(1.1);
}
.tiles-gallery .tiles .gallery-tile:hover .view-gallery {
  background-color: rgba(32, 29, 26, 0.2);
}

.tiles-gallery-acm {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery-acm {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tiles-gallery-acm .h3-script {
  gap: 13px;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery-acm .h3-script {
    margin-bottom: 30px;
    gap: 7px;
  }
}
.tiles-gallery-acm .h3-script span:not(:first-child) {
  margin-top: 9px;
}
.tiles-gallery-acm .h3-script .h4-header {
  color: inherit;
}
.tiles-gallery-acm .h2-serif-headlines {
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery-acm .h2-serif-headlines {
    margin-bottom: 30px;
  }
}
.tiles-gallery-acm .h3-script:last-child, .tiles-gallery-acm .h2-serif-headlines:last-child {
  margin-bottom: 0;
}
.tiles-gallery-acm .section-content + .section-widget {
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .tiles-gallery-acm .section-content + .section-widget {
    margin-top: 30px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.form {
  display: block;
  margin-bottom: 20px;
  text-align: left;
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: thin solid #ECECEA;
  letter-spacing: 3px;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 10px;
    text-align: left;
    width: auto;
  }
}
.form label.checkbox-label {
  margin: 0 auto;
  float: none;
  display: block;
  width: 60%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .form label.checkbox-label {
    width: 100%;
    text-align: left;
  }
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 20px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p.terms-privacy {
  margin-top: 25px;
}
.form p span {
  float: left;
  margin: 0 10px 0 0;
}
.form p span.checkbox-group {
  margin-bottom: 10px;
}
.form p span input {
  display: inline;
  float: none;
  margin: 0;
}
.form p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
.form p span.group label {
  display: block;
  margin-bottom: 10px;
}
.form p span.group label input {
  margin-right: 0.4em;
}
.form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
  background: #fff;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: thin solid #ECECEA;
  font-size: 16px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
    width: 100%;
    font-size: 14px;
    text-align: left;
  }
}
.form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .g-recaptcha > div {
  margin-left: 40%;
}
@media only screen and (max-width: 767px) {
  .form .g-recaptcha > div {
    margin: 0 auto;
  }
}
.form .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick,
.form .input-overlay {
  width: 120px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form input.date-pick,
.form .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
.form .input-overlay {
  clear: both;
}
.form .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 13px 0 0 6px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls p {
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: center;
  }
}
.form .controls .button {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}

.poi {
  position: relative;
  z-index: 1;
}

.poi-overlay {
  position: absolute;
  top: 35px;
  right: 20px;
  bottom: 35px;
  width: 460px;
  padding: 50px 70px 90px 35px;
  background-color: #263664;
  color: #F8F8F7;
  text-align: left;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 500;
}
@media only screen and (max-width: 979px) {
  .poi-overlay {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: auto;
    padding: 30px 22px 90px;
  }
}
.poi-overlay .h4-header {
  margin-bottom: 18px;
  font-size: 16px;
  color: inherit;
}
.poi-overlay .h3-feature-title {
  margin-bottom: 25px;
  color: inherit;
}
.poi-overlay .poi-content {
  max-width: 320px;
}
.poi-overlay .category-selector-modern {
  margin: auto 0;
  text-align: left;
}
.poi-overlay .category-selector-modern .button {
  display: none;
}
.poi-overlay .category-selector-modern .select-wrapper {
  display: inline-block;
  width: 300px;
}
@media only screen and (max-width: 767px) {
  .poi-overlay .category-selector-modern .select-wrapper {
    width: 100%;
  }
}
.poi-overlay .category-selector-modern .select-wrapper select {
  padding: 0 57px 0 20px;
  font: 400 16px/50px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #263664;
  background: #F8F8F7;
}
.poi-overlay .category-selector-modern .select-wrapper .select-icon {
  right: 20px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #263664;
  border-left: 2px solid #263664;
  margin-top: -5px;
}
.poi-overlay:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("../images/light-lines-pattern.svg") 0% 0% repeat-x;
}
.poi-map {
  position: relative;
  height: 725px;
  max-height: 80vh;
  background: #C6DEE7;
}
@media only screen and (max-width: 767px) {
  .poi-map {
    height: 385px;
  }
}

.poi-acm {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .poi-acm {
    margin-top: 80px;
  }
}

#calendar-header {
  margin-bottom: 20px;
}
#calendar-header:after {
  clear: both;
  content: "";
  display: table;
}

#calendar-links {
  float: left;
}
#calendar-links:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-links {
    margin-top: 0;
    float: none;
    width: 100%;
    text-align: center;
  }
}
#calendar-links li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-links li {
    display: inline-block;
    float: none;
  }
  #calendar-links li:first-child a {
    margin-left: 0;
  }
}
#calendar-links a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#calendar-links a.ical {
  background-position: -200px -76px;
}
#calendar-links a.ical:hover {
  background-position: -240px -76px;
}
#calendar-links a.ical:active {
  background-position: -280px -76px;
}
#calendar-links a.print {
  background-position: -200px -116px;
}
#calendar-links a.print:hover {
  background-position: -240px -116px;
}
#calendar-links a.print:active {
  background-position: -280px -116px;
}
#calendar-links a.rss {
  background-position: -200px -156px;
}
#calendar-links a.rss:hover {
  background-position: -240px -156px;
}
#calendar-links a.rss:active {
  background-position: -280px -156px;
}
@media only screen and (max-width: 767px) {
  #calendar-links a {
    display: inline-block;
    margin: 0 0 0 20px;
  }
}

#calendar-filter {
  float: right;
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    float: none;
    margin-top: 10px;
    text-align: center;
  }
}

#calendar-views {
  float: left;
}
#calendar-views:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-views {
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
}
#calendar-views li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-views li {
    display: inline-block;
    float: none;
  }
}
#calendar-views a {
  position: relative;
  display: block;
  margin-right: 20px;
  padding-left: 30px;
  font: bold 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #calendar-views a {
    margin-right: 0;
    margin-left: 20px;
  }
  #calendar-views a.grid {
    margin-left: 0;
  }
}
#calendar-views a:hover, #calendar-views a.active {
  color: #211E1A;
}
#calendar-views a:before {
  background: url("../images/common.svg") 0 0 no-repeat;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#calendar-views a.grid:before {
  background-position: -200px 0;
}
#calendar-views a.grid:hover:before, #calendar-views a.grid.active:before {
  background-position: -240px 0;
}
#calendar-views a.list:before {
  background-position: -200px -38px;
}
#calendar-views a.list:hover:before, #calendar-views a.list.active:before {
  background-position: -240px -38px;
}

#calendar-breadcrumb {
  margin-top: 10px;
  margin-bottom: 40px;
  font: 12px/18px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  color: #211E1A;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb dt, #calendar-breadcrumb dd {
    float: none;
    display: inline-block;
  }
}
#calendar-breadcrumb dt a, #calendar-breadcrumb dd a {
  color: inherit;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
#calendar-breadcrumb dt a:hover, #calendar-breadcrumb dd a:hover {
  color: #263664;
  opacity: 1;
}
#calendar-breadcrumb dt a:last-child, #calendar-breadcrumb dd a:last-child {
  color: #263664;
  text-decoration: underline;
}

#calendar-year {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-year {
    display: none;
  }
}
#calendar-year:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-year li {
  float: left;
}
#calendar-year a {
  display: block;
  padding: 5px 0;
  margin-right: 1px;
  font: 12px/18px "Brandon Grotesque WF", Arial, sans-serif;
  text-decoration: none;
  border-bottom: thin solid #BFBFBF;
  color: #BFBFBF;
  transition: 350ms ease-in-out;
}
#calendar-year a:hover {
  border-color: #211E1A;
  color: #211E1A;
}
#calendar-year .active a {
  border-color: #263664;
  color: #263664;
}
#calendar-year .active a:hover {
  border-color: #211E1A;
  color: #211E1A;
}

#calendar-month {
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: newspaper;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
#calendar-month:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-month:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0;
}
#calendar-month li {
  display: inline;
}
#calendar-month a {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font: 12px/40px "Brandon Grotesque WF", Arial, sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #calendar-month a {
    padding: 0 5px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-month a {
    padding: 0 7px;
    font-size: 11px;
    text-align: center;
  }
}
#calendar-month a:hover {
  background: #211E1A;
  color: #fff;
}
#calendar-month a.active {
  background: #263664;
  color: #fff;
}
#calendar-month a.active:hover {
  background: #211E1A;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  #calendar-month li {
    display: none;
  }
  #calendar-month li.current, #calendar-month li.prev, #calendar-month li.next {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 30%;
  }
  #calendar-month li.current a {
    font-size: 12px;
    padding: 0 10px;
    display: block;
  }
  #calendar-month li.prev a, #calendar-month li.next a {
    display: block;
    font-size: 12px;
    padding-right: 0;
    padding-left: 30px;
  }
  #calendar-month li.prev a:after, #calendar-month li.next a:after {
    background: url("../images/common.svg") -200px -196px no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 11px;
    height: 18px;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: #263664;
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    background-position: -231px -196px;
  }
  #calendar-month li.prev a:active, #calendar-month li.next a:active {
    top: auto;
  }
  #calendar-month li.next a {
    padding-left: 0;
    padding-right: 30px;
  }
  #calendar-month li.next a:after {
    background-position: -200px -234px;
    left: auto;
    right: 5px;
  }
  #calendar-month li.next a:hover:after {
    background-position: -231px -234px;
  }
}

#calendar-navigation {
  display: block;
  height: 40px;
  font: 16px/40px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 3px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}
#calendar-navigation .current-event {
  padding: 0 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-transform: uppercase;
  background-color: #ECECEA;
}
#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  top: 11px;
  width: 11px;
  height: 18px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0 10px 0 10px;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#calendar-navigation a.next {
  right: 0;
  background-position: -200px -234px;
}
#calendar-navigation a.next:hover {
  background-position: -231px -234px;
}
#calendar-navigation a.next:active {
  background-position: -262px -234px;
}
#calendar-navigation a.prev {
  left: 0;
  background-position: -200px -196px;
}
#calendar-navigation a.prev:hover {
  background-position: -231px -196px;
}
#calendar-navigation a.prev:active {
  background-position: -262px -196px;
}

#calendar-week, #calendar-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#calendar-week li, #calendar-days li {
  display: inline-block;
  width: 13%;
}

#calendar-week {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  text-align: center;
  font-weight: bold;
}
#calendar-week li .short {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-week li .full {
    display: none;
  }
  #calendar-week li .short {
    display: inline;
  }
}

#calendar-days {
  position: relative;
}
#calendar-days li {
  margin: 0 0 1em;
  min-height: 8em;
  text-align: left;
  -moz-text-align-last: left;
       text-align-last: left;
  vertical-align: top;
  position: static;
  background: #ECECEA;
}
@media only screen and (max-width: 767px) {
  #calendar-days li {
    display: block;
    float: none;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
  }
  #calendar-days li dl {
    margin-top: auto !important;
    height: auto;
  }
  #calendar-days li dl dt {
    width: 100% !important;
    padding-bottom: 10px;
  }
}
#calendar-days li time a {
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(236, 236, 234, 0.3);
}
@media only screen and (max-width: 767px) {
  #calendar-days li.prev_month, #calendar-days li.next_month {
    display: none;
  }
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: rgba(33, 30, 26, 0.3);
}
#calendar-days li.day_items3 {
  height: 9em;
}
#calendar-days li.day_items4 {
  height: 11em;
}
#calendar-days li.day_items5 {
  height: 13em;
}
#calendar-days li.day_items6 {
  height: 15em;
}
#calendar-days li.day_items7 {
  height: 17em;
}
#calendar-days li.day_items8 {
  height: 19em;
}
#calendar-days li.day_items9 {
  height: 21em;
}
#calendar-days li.day_items10 {
  height: 23em;
}
#calendar-days li.day_items11 {
  height: 25em;
}
#calendar-days li.day_items12 {
  height: 27em;
}
#calendar-days li.day_items13 {
  height: 29em;
}
#calendar-days li.day_items14 {
  height: 31em;
}
#calendar-days li.day_items15 {
  height: 33em;
}
#calendar-days li.day_items16 {
  height: 35em;
}
#calendar-days li.day_items17 {
  height: 37em;
}
#calendar-days li.day_items18 {
  height: 39em;
}
#calendar-days li.day_items19 {
  height: 41em;
}
#calendar-days li.day_items20 {
  height: 43em;
}
#calendar-days dl {
  display: block;
  height: 2em;
}
#calendar-days dl:hover {
  position: relative;
}
#calendar-days dl.hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  #calendar-days dl.hide {
    display: block;
  }
}
#calendar-days dt {
  position: relative;
}
#calendar-days dt a {
  display: block;
  height: 1.8em;
  width: auto;
  line-height: 1.8em;
  padding: 0 0.5em 0 1em;
  text-decoration: none;
  text-transform: uppercase;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.6em;
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  background: #327d7d;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #calendar-days dt a {
    height: 2.8em;
    line-height: 2.8em;
  }
}
#calendar-days dl.w1 dt {
  width: 100%;
}
#calendar-days dl.w2 dt {
  width: 211.538%;
}
#calendar-days dl.w3 dt {
  width: 323.076%;
}
#calendar-days dl.w4 dt {
  width: 434.614%;
}
#calendar-days dl.w5 dt {
  width: 546.152%;
}
#calendar-days dl.w6 dt {
  width: 657.69%;
}
#calendar-days dl.w7 dt {
  width: 769.228%;
}
#calendar-days dl.c1 dt a {
  background-color: #8db294;
}
#calendar-days dl.c2 dt a {
  background-color: #ada39a;
}
#calendar-days dl.c3 dt a {
  background-color: #85a9b7;
}
#calendar-days dl.c4 dt a {
  background-color: #bc8e8f;
}
#calendar-days dl.c5 dt a {
  background-color: #ac9bc1;
}
#calendar-days dl.c6 dt a {
  background-color: #87b6c7;
}
#calendar-days dl.c7 dt a {
  background-color: #bb85aa;
}
#calendar-days dl.c8 dt a {
  background-color: #a4a4a4;
}
#calendar-days dl dd {
  position: absolute;
  left: 0;
  bottom: 28px;
  background: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  visibility: hidden;
  width: 200px;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  #calendar-days dl dd {
    display: none !important;
  }
}
#calendar-days dl dd .triangle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
#calendar-days dl dd .triangle span {
  display: block;
  width: 0;
  margin: 0 auto;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #fff;
}
#calendar-days dl dd h3 {
  color: #263664;
  margin-bottom: 10px;
  font: bold 14px/1.5 "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}
#calendar-days dl dd p {
  font-size: 12px;
  line-height: 18px;
  padding: 0 0 10px 0;
  width: 100%;
}
#calendar-days dl:hover dd {
  visibility: visible;
}
#calendar-days dl.t1 {
  margin-top: 2em;
}
#calendar-days dl.t2 {
  margin-top: 4em;
}
#calendar-days dl.t3 {
  margin-top: 6em;
}
#calendar-days dl.t4 {
  margin-top: 8em;
}
#calendar-days dl.t5 {
  margin-top: 10em;
}
#calendar-days dl.t6 {
  margin-top: 12em;
}
#calendar-days dl.t7 {
  margin-top: 14em;
}
#calendar-days dl.t8 {
  margin-top: 16em;
}
#calendar-days dl.t9 {
  margin-top: 18em;
}
#calendar-days dl.t10 {
  margin-top: 20em;
}
#calendar-days dl.t11 {
  margin-top: 22em;
}
#calendar-days dl.t12 {
  margin-top: 24em;
}
#calendar-days dl.t13 {
  margin-top: 26em;
}
#calendar-days dl.t14 {
  margin-top: 28em;
}
#calendar-days dl.t15 {
  margin-top: 30em;
}
#calendar-days dl.t16 {
  margin-top: 32em;
}
#calendar-days dl.t17 {
  margin-top: 34em;
}
#calendar-days dl.t18 {
  margin-top: 36em;
}
#calendar-days dl.t19 {
  margin-top: 38em;
}
#calendar-days dl.t20 {
  margin-top: 40em;
}

#calendar.list-view h2 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
#calendar.list-view .image-list h2 a {
  text-decoration: none;
}
#calendar.list-view .image-list h3 a {
  font: 18px/30px "Brandon Grotesque WF", Arial, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
#calendar.list-view .image-list h3 a:hover {
  color: inherit;
}

#calendar .no-events {
  margin: 40px 0;
  padding: 40px 0;
  height: auto;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 120%;
}

#calendar .single-event .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #calendar .single-event .background {
    width: 100%;
    height: 0;
    padding-top: 100%;
    float: none;
    margin-left: 0;
  }
}
#calendar .single-event h2 {
  margin-bottom: 10px;
}

#calendar .dates,
#calendar .attachment {
  display: block;
  margin: 0 0 20px;
}
#calendar .dates strong,
#calendar .attachment strong {
  color: #263664;
}

#calendar .dates > small {
  display: block;
}

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: auto;
  }
}
.calendar .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  border: thin solid #BFBFBF;
  z-index: -1;
}
.calendar .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .calendar .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
    height: 0;
    padding-top: 100%;
    margin: 0 0 10px 0;
  }
}
.calendar .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.calendar .image-list-item .description h3 {
  font: 18px/30px "Old Standard TT", sans-serif;
  color: #263664;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
.calendar .image-list-item .description h3 a:hover {
  color: #211E1A;
  opacity: 1;
}
.calendar .image-list-item .description .button {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .calendar .image-list-item .description .button {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .button {
    text-align: center;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
    margin-bottom: 10px;
  }
}

.instagram-acm {
  position: relative;
  padding: 84px 0 100px;
  background: #F8F8F7;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .instagram-acm {
    padding: 80px 0;
  }
}
.instagram-acm .section-content {
  color: #263664;
}
.instagram-acm .section-content h2:not(:last-child) {
  margin-bottom: 16px;
}
.instagram-acm .section-content .instagram-link {
  font: 400 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: #201D1A;
}
@media only screen and (max-width: 767px) {
  .instagram-acm .section-widget {
    padding: 0 22px;
  }
}
.instagram-acm .section-content + .section-widget {
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .instagram-acm .section-content + .section-widget {
    margin-top: 30px;
  }
}

.newsletter-acm {
  position: relative;
  padding: 60px 0;
  background: #263664;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .newsletter-acm {
    padding: 38px 0 52px;
  }
}
.newsletter-acm a {
  color: inherit;
}
.newsletter-acm a:hover {
  text-decoration: none;
}
.newsletter-acm .newslettercrmsignup-message {
  font-size: 20px;
  margin-bottom: 40px;
}
.newsletter-acm .section-content {
  color: #F8F8F7;
}
.newsletter-acm .section-content .h3-script {
  color: inherit;
  gap: 14px;
}
.newsletter-acm .section-content .h3-script .h4-header {
  color: inherit;
}
.newsletter-acm .section-widget {
  text-align: center;
  color: #F8F8F7;
}
.newsletter-acm .section-content + .section-widget {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .newsletter-acm .section-content + .section-widget {
    margin-top: 62px;
  }
}

#newslettercrmsignup-form {
  width: 100%;
  max-width: 954px;
  margin: 0 auto;
  color: #F8F8F7;
}
#newslettercrmsignup-form .fields-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: min-content;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  #newslettercrmsignup-form .fields-wrap {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 20px;
  }
}
#newslettercrmsignup-form .fields-wrap .input-wrapper {
  position: relative;
}
#newslettercrmsignup-form .fields-wrap .input-wrapper label {
  width: 100%;
}
#newslettercrmsignup-form .fields-wrap .input-wrapper .newsletter-input {
  width: 100%;
  height: 50px;
  padding: 0 18px;
  font: 400 16px/50px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: #F8F8F7;
  background-color: #263664;
  border: 1px solid #F8F8F7;
}
#newslettercrmsignup-form .fields-wrap .input-wrapper .newsletter-input::-moz-placeholder {
  color: #F8F8F7;
}
#newslettercrmsignup-form .fields-wrap .input-wrapper .newsletter-input::placeholder {
  color: #F8F8F7;
}
#newslettercrmsignup-form .agree-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  #newslettercrmsignup-form .agree-wrap {
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }
}
#newslettercrmsignup-form .agree-wrap .privacy-policy {
  height: auto;
  display: inline-flex;
  align-items: flex-start;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #newslettercrmsignup-form .agree-wrap .privacy-policy {
    order: 1;
  }
}
#newslettercrmsignup-form .agree-wrap .privacy-policy .fake-checkbox {
  margin-right: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #263664;
  border: 1px solid #F8F8F7;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #newslettercrmsignup-form .agree-wrap .privacy-policy .fake-checkbox {
    width: 30px;
    height: 30px;
    margin-right: 14px;
  }
}
#newslettercrmsignup-form .agree-wrap .privacy-policy .fake-checkbox::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-color: #263664;
  transition: background-color 350ms ease-in-out;
}
#newslettercrmsignup-form .agree-wrap .privacy-policy input[type=checkbox]:checked + .fake-checkbox::before {
  background-color: #F8F8F7;
}
.keyboard-navigation #newslettercrmsignup-form .agree-wrap .privacy-policy input[type=checkbox]:focus + .fake-checkbox {
  box-shadow: 0 0 1px 2px red;
}
#newslettercrmsignup-form .agree-wrap .privacy-policy .privacy-policy-text {
  font: 400 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
  color: #F8F8F7;
}
#newslettercrmsignup-form .agree-wrap .newsletter-button {
  flex-shrink: 0;
  margin-left: auto;
}
@media only screen and (min-width: 980px) {
  #newslettercrmsignup-form .agree-wrap .newsletter-button {
    min-width: 221px;
  }
}
@media only screen and (max-width: 767px) {
  #newslettercrmsignup-form .agree-wrap .newsletter-button {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-left: 0;
  }
}
#newslettercrmsignup-form .recaptcha-notice {
  margin-top: 20px;
  font: 400 16px/20px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 0;
}

.menu-tabs-block-acm h2 {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  color: #211E1A;
  text-transform: uppercase;
  position: relative;
  font-size: 24px;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-block-acm .tabs {
  position: relative;
  z-index: 100;
}
.menu-tabs-block-acm .tabs-titles {
  display: flex;
  justify-content: center;
  margin: 0 0 50px;
}
.menu-tabs-block-acm .tabs-titles li.tab-title {
  order: 2;
  display: block;
  margin: 0 5px 10px;
  transition: all 1s;
}
.menu-tabs-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.3s;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.menu-tabs-block-acm .tabs-content p.tabs-content-item-descr {
  margin-bottom: 30px;
  max-width: 70%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-content p.tabs-content-item-descr {
    max-width: auto;
    width: 100%;
  }
}
.menu-tabs-block-acm .menu-block {
  width: 46%;
  min-width: 400px;
  margin-right: auto;
  padding: 0 2% 40px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block {
    width: 100%;
    min-width: auto;
  }
}
.menu-tabs-block-acm .menu-block h3 {
  margin-bottom: 0;
  text-transform: uppercase;
}
.menu-tabs-block-acm .menu-block .dish {
  margin-bottom: 20px;
}
.menu-tabs-block-acm .menu-block .dish p {
  margin-bottom: 0;
}
.menu-tabs-block-acm .menu-block .dish .dish-ingredients {
  margin: 6px 0;
  font-size: 0.8em;
}
.menu-tabs-block-acm .menu-link {
  width: 100%;
  margin-bottom: 40px;
  text-align: center;
}
.menu-tabs-block-acm .menu-link .button {
  display: inline-block;
}

.acm-block-layout.audio-block {
  display: block;
  width: 100%;
  min-height: 60px;
  margin: 20px 0 40px;
  text-align: center;
}
.acm-block-layout.audio-block img {
  max-width: 300px;
  width: 100%;
}
.acm-block-layout.audio-block figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
.acm-block-layout.audio-block .play-audio {
  position: relative;
  display: block;
  padding: 0 20px 0 62px;
  color: #fff;
  line-height: 54px;
  border: 2px solid #263664;
  background-color: #263664;
  text-transform: uppercase;
  z-index: 10;
  height: auto;
}
.acm-block-layout.audio-block .play-audio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 12px 0;
  font-size: 0;
  border-radius: 50%;
  background: #263664 url(../images/audio-icon.svg) 50% 50% no-repeat;
  background-size: 26px 26px;
  border: none;
}
.acm-block-layout.audio-block .play-audio:hover {
  color: #263664;
  background-color: #fff;
}
.acm-block-layout.audio-block .play-audio:hover::before {
  opacity: 1;
}
.acm-block-layout.audio-block audio {
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 20;
}
.acm-block-layout.audio-block.audio-show .play-audio {
  font-size: 0;
  padding: 0 20px 0 40px;
  background-color: #fff;
  border-color: #fff;
}
.acm-block-layout.audio-block.audio-show .play-audio::before {
  background: #263664 url(../images/close-light.svg) 50% 50% no-repeat;
}
.acm-block-layout.audio-block.audio-show audio {
  display: block;
  opacity: 1;
}

.view-360 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  margin-top: 20px;
}
.view-360 .block {
  position: relative;
  display: inline-block;
  width: calc((100% - 90px) / 3);
  height: 0;
  padding-top: calc((100% - 30px) / 3);
  margin: 0 15px 30px 15px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .view-360 .block {
    width: calc(50% - 40px);
    padding-top: calc(50% - 40px);
    margin: 0 10px 20px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .view-360 .block {
    width: 100%;
    padding-top: 70%;
    margin: 0 0 10px 0;
  }
}
.view-360 .block:before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.4);
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: background 350ms ease-in-out;
}
.view-360 .block:hover:before {
  background: rgba(0, 0, 0, 0.5);
}
.view-360 .block .view-tour {
  font: 24px/27px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 2.4px;
  text-shadow: 2px 0 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .view-360 .block .view-tour {
    font-size: 18px;
  }
}
.keyboard-navigation .view-360 .block .view-tour:focus {
  background: rgba(0, 0, 0, 0.9);
}
.view-360 .block .view-tour span {
  position: relative;
  padding: 0 20px;
  text-align: center;
}
.view-360 .block .view-tour span:before {
  content: "";
  position: relative;
  display: block;
  background: url(../images/360-icon.svg);
  width: 20px;
  height: 13px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.promos-slider {
  margin: 60px 0;
  width: 100%;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 3;
  background: #F9F9F7;
}
@media only screen and (max-width: 767px) {
  .promos-slider {
    margin-bottom: 40px;
  }
}
.promos-slider .center-column {
  overflow: hidden;
  max-width: 900px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .promos-slider .center-column {
    padding: 0 7px;
  }
}
.promos-slider .page-content {
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .promos-slider .page-content {
    padding-bottom: 6px;
  }
}
.promos-slider .page-content .h1-like {
  display: block;
  margin-bottom: 28px;
}
@media only screen and (max-width: 767px) {
  .promos-slider .page-content .h1-like {
    font-size: 25px;
    letter-spacing: 3.5px;
    margin-bottom: 10px;
  }
}
.promos-slider .page-content p {
  margin-bottom: 20px;
}
.promos-slider .slideshow {
  height: 100%;
  width: calc(100% + 30px);
  overflow: hidden;
  margin: 0 -15px;
}
.promos-slider .slideshow-wrapper {
  text-align: center;
}
.promos-slider .slide {
  display: inline-block;
  margin: 0 15px;
  max-height: 480px;
  min-height: 460px;
  min-width: 320px;
  overflow: hidden;
  position: relative;
  width: calc(33.3% - 30px);
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .promos-slider .slide {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .promos-slider .slide {
    width: calc(100% - 30px);
    padding-bottom: 96%;
    height: 0;
    min-height: auto;
  }
}
.promos-slider .slide h4 {
  color: #fff;
  font: 500 30px/36px "Brandon Grotesque WF", Arial, sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
  max-width: 436px;
  margin: 0 auto;
}
.promos-slider .slide h4 a {
  color: inherit;
  text-decoration: none;
}
.promos-slider .slide:hover .description {
  opacity: 1;
}
.promos-slider .slide:hover .overlay {
  background: rgba(0, 0, 0, 0.5);
}
.promos-slider .slide:hover .button {
  opacity: 1;
}
.promos-slider .slide:hover .thumbnail {
  transform: scale(1.1);
}
.promos-slider .thumbnail {
  background-position: 50% 50%;
  background-size: cover;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 350ms ease-in;
  z-index: 0;
}
.promos-slider .overlay {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  display: flex;
  flex-direction: column;
  color: #fff;
  left: 0;
  padding: 37px 30px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 2;
  transition: background-color 350ms ease-in-out;
}
@media only screen and (min-width: 768px) and (max-width: 979px) {
  .promos-slider .overlay {
    padding: 40px 50px;
  }
}
@media only screen and (max-width: 767px) {
  .promos-slider .overlay {
    padding: 26px 10px;
  }
}
.promos-slider .description {
  align-items: center;
  display: flex;
  flex: 1;
  flex-flow: column;
  margin: 20px auto;
  padding: 0 30px;
  max-height: 200px;
  overflow: auto;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.promos-slider .description p {
  display: inline-block;
  font-size: 14px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .promos-slider .description p {
    font-size: 12px;
    opacity: 1;
  }
}
.promos-slider .button {
  opacity: 0;
  position: absolute;
  bottom: 20px;
  width: auto;
  left: 50%;
  transform: translate(-50%, 0);
  transition: opacity 350ms ease-in-out;
}
.promos-slider .slideshow-pagination {
  display: block;
  width: 100%;
  padding: 25px 0;
  font-size: 0;
  line-height: 0;
  text-align: center;
}
.promos-slider .slideshow-pagination .swiper-pagination-bullet {
  display: inline-block;
  height: 11px;
  width: 11px;
  margin: 5px;
  border-radius: 50%;
  border: 1px solid #263664;
  transition: background-color 350ms ease-in-out;
  cursor: pointer;
}
.promos-slider .slideshow-pagination .swiper-pagination-bullet:hover, .promos-slider .slideshow-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #263664;
}
.promos-slider .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -45px;
  width: 20px;
  height: 20px;
  border: thin solid #fff;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
  display: none;
}
@media only screen and (max-width: 767px) {
  .promos-slider .slideshow-button {
    display: block;
  }
}
.promos-slider .slideshow-button.next {
  right: 30px;
  transform: rotate(45deg);
}
.promos-slider .slideshow-button.previous {
  left: 30px;
  transform: rotate(-135deg);
}

@media print {
  html {
    -webkit-print-color-adjust: exact;
  }

  .fade-on-scroll {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
  }

  body > *:not(#content) {
    display: none;
  }

  #content-submenu {
    display: none;
  }

  #calendar-header, #calendar-year, #calendar-month {
    display: none;
  }

  @page {
    size: 960px 1358px;
  }
}
.booking-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.booking-popup .booking-popup-inner {
  width: 90%;
  max-height: 90%;
  max-width: 500px;
  background: #fff;
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 20px;
  line-height: 1.3;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.2);
}
.booking-popup .booking-popup-inner button {
  margin: 30px 10px 0;
}

#main-content + .additional-content {
  margin-top: 50px;
}
.additional-content > .center-column > h1,
.additional-content > .center-column > .h1-like,
.additional-content > .center-column > h2,
.additional-content > .center-column > h3,
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6 {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  color: #211E1A;
  text-transform: uppercase;
}
.additional-content > .center-column > h2 {
  position: relative;
  font-size: 24px;
  line-height: 1.3;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 40px;
}
.additional-content > .center-column > h3 {
  font-size: 18px;
  line-height: 1.3;
}
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6 {
  font-weight: bold;
}
.additional-content > .center-column > h3,
.additional-content > .center-column > h4,
.additional-content > .center-column > h5,
.additional-content > .center-column > h6,
.additional-content > .center-column > p,
.additional-content > .center-column > ul,
.additional-content > .center-column > ol,
.additional-content > .center-column > table {
  margin-bottom: 20px;
}
.additional-content > .center-column > ul > li {
  font-family: "Brandon Grotesque WF", Arial, sans-serif;
  padding: 2px 0;
}
.additional-content > .center-column > ul > li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  margin-right: 8px;
  margin-top: -4px;
  background: #211E1A;
}
.additional-content > .center-column strong {
  font-weight: bold;
}
.additional-content > .center-column em {
  font-style: italic;
}
.additional-content > .center-column u {
  text-decoration: underline;
}
.additional-content > .center-column sup, .additional-content > .center-column sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.additional-content > .center-column sup {
  top: -0.5em;
}
.additional-content > .center-column sub {
  bottom: -0.25em;
}
