@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-size: 12px;
  font-weight: normal;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: left;
  letter-spacing: 0;
}

.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: 20px;
  background: #fff;
  border: 1px solid #CBCBCB;
  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;
  display: block;
  color: #000;
  font: normal 400 15px/26px "Baskerville", sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 1rem 0 2rem 0;
}

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

.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-prev:after {
  left: 10px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #a3afc3;
  border-bottom: 2px solid #a3afc3;
}

.ui-datepicker-next {
  right: 0;
}

.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 {
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  color: #000;
  font: normal 400 1.6rem "Baskerville", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  color: #000;
  font: 15px "Baskerville", sans-serif;
  text-align: center;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  opacity: 0.5;
}
.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 td.ui-datepicker-current-day, .ui-datepicker-calendar td.ui-datepicker-today {
  color: #fff;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ui-datepicker-calendar a.ui-state-active {
  color: #fff;
}
.ui-datepicker-calendar .ui-datepicker-today a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #a3afc3;
  z-index: -1;
}
.ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a:before,
.ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #000;
  z-index: -1;
}
.ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a:after,
.ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:after {
  width: 50%;
  left: 50%;
}
.ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:after {
  left: auto;
  right: 50%;
}
.ui-datepicker-calendar .ui-datepicker-highlight a:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #333c67;
  width: 100%;
  height: 3.6rem;
  margin-top: -1.8rem;
  margin-left: 0;
  top: 50%;
  left: 0;
  z-index: -2;
}

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

.hasDatepicker .ui-datepicker {
  display: none;
  padding: 20px;
  background: #000;
  z-index: 10;
}
body > .hasDatepicker .ui-datepicker {
  z-index: 30;
}
.hasDatepicker .ui-datepicker:after {
  display: block;
  content: "";
  height: 0;
  overflow: hidden;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .hasDatepicker .ui-datepicker {
    width: calc(100% - 20px);
  }
}
.hasDatepicker .ui-datepicker-header {
  position: relative;
  display: block;
  color: #fff;
  font: normal 700 2rem "Baskerville", sans-serif;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  padding: 1rem 0 3.2rem 0;
}
.hasDatepicker .ui-datepicker-prev,
.hasDatepicker .ui-datepicker-next {
  position: absolute;
  top: 10px;
  width: 26px;
  height: 26px;
  color: #fff;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 20;
}
.hasDatepicker .ui-datepicker-prev:hover:after,
.hasDatepicker .ui-datepicker-next:hover:after {
  border-color: #fff;
}
@media only screen and (max-width: 767px) {
  .hasDatepicker .ui-datepicker-prev,
.hasDatepicker .ui-datepicker-next {
    top: 10px;
  }
}
.hasDatepicker .ui-datepicker-prev:after,
.hasDatepicker .ui-datepicker-next:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid #847558;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg);
  transition: border-color 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  .hasDatepicker .ui-datepicker-prev:after,
.hasDatepicker .ui-datepicker-next:after {
    transform: none;
  }
}
.hasDatepicker .ui-datepicker-prev.ui-state-disabled,
.hasDatepicker .ui-datepicker-next.ui-state-disabled {
  opacity: 0.5;
}
.hasDatepicker .ui-datepicker-prev {
  left: 0;
}
.hasDatepicker .ui-datepicker-prev:after {
  left: 10px;
  border-right: 0;
  border-top: 0;
  border-left: 2px solid #847558;
  border-bottom: 2px solid #847558;
}
.hasDatepicker .ui-datepicker-next {
  right: 0;
}
.hasDatepicker .ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .hasDatepicker .ui-datepicker-calendar {
    width: 100%;
  }
}
.hasDatepicker .ui-datepicker-calendar th, .hasDatepicker .ui-datepicker-calendar td {
  text-align: center;
  vertical-align: middle;
}
.hasDatepicker .ui-datepicker-calendar th {
  color: #a3afc3;
  font: normal 700 1.6rem "AauxPro", sans-serif;
  text-align: center;
  text-transform: uppercase;
}
.hasDatepicker .ui-datepicker-calendar td {
  color: #fff;
  font: 15px "AauxPro", sans-serif;
  text-align: center;
  padding: 10px 0;
  position: relative;
  cursor: pointer;
}
.hasDatepicker .ui-datepicker-calendar td.ui-datepicker-other-month, .hasDatepicker .ui-datepicker-calendar td.ui-state-disabled {
  opacity: 0.5;
}
.hasDatepicker .ui-datepicker-calendar td.ui-datepicker-other-month span:hover, .hasDatepicker .ui-datepicker-calendar td.ui-state-disabled span:hover {
  color: inherit;
  background: none;
}
.hasDatepicker .ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-today a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #333c67;
  z-index: -1;
}
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a:before,
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #a3afc3;
  z-index: -1;
}
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkin-date a:after,
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:after {
  width: 50%;
  left: 50%;
}
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight.checkout-date a:after {
  left: auto;
  right: 50%;
}
.hasDatepicker .ui-datepicker-calendar .ui-datepicker-highlight a:after {
  content: "";
  position: absolute;
  display: block;
  background-color: #333c67;
  width: 100%;
  height: 3.6rem;
  margin-top: -1.8rem;
  margin-left: 0;
  top: 50%;
  left: 0;
  z-index: -2;
}
.hasDatepicker .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 -123px no-repeat;
}
.hasDatepicker .ui-datepicker-trigger:hover {
  background-position: -37px -123px;
}

.ui-selectmenu-button {
  position: relative;
  display: block;
  width: auto !important;
  height: 67px;
  line-height: 67px;
  border: thin solid #d1d1d1;
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  background: #fff;
  transition: all 0.2s;
}
@media (prefers-reduced-motion) {
  .ui-selectmenu-button {
    transform: none;
  }
}
.ui-selectmenu-button::-moz-placeholder {
  color: #292C2D;
}
.ui-selectmenu-button::placeholder {
  color: #292C2D;
}
.ui-selectmenu-button .ui-selectmenu-text {
  display: block;
  height: 100%;
  text-align: center;
  padding: 0 10px;
  white-space: nowrap;
  text-transform: uppercase;
  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: 18px;
  font-weight: 300;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  text-transform: uppercase;
  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: "";
}

#hamburger-navigation {
  display: block;
  position: fixed;
  right: -401px;
  top: 0;
  height: 100%;
  width: 400px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border-left: thin solid #cfcfcf;
  transition: right 400ms, visibility 400ms;
  text-align: center;
  z-index: 201;
  visibility: hidden;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation {
    width: 100%;
    right: -101%;
    text-align: left;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  right: 0;
  visibility: visible;
}
#hamburger-navigation .logo {
  display: none;
  position: absolute;
  left: 25px;
  top: 24px;
  width: 190px;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .logo {
    display: block;
  }
}
#hamburger-navigation .logo span {
  display: none;
}
#hamburger-navigation .logo .sprite-icon {
  width: 100%;
  height: 100%;
  fill: #000;
}
#hamburger-navigation .close {
  position: absolute;
  right: 40px;
  top: 18px;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .close {
    right: 25px;
  }
}
#hamburger-navigation .close strong {
  position: relative;
  display: inline-block;
  font: 14px "Baskerville", sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 1px;
  color: #000;
  margin-right: 15px;
}
@media screen and (max-width: 350px) {
  #hamburger-navigation .close strong {
    display: none;
  }
}
#hamburger-navigation .close .cross {
  background-color: #000;
  vertical-align: middle;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  height: 45px;
  width: 45px;
}
#hamburger-navigation .close .cross:before, #hamburger-navigation .close .cross:after {
  background-color: #fff;
  position: absolute;
  width: 20px;
  content: "";
  height: 1px;
  left: 13px;
  top: 22px;
}
#hamburger-navigation .close .cross:before {
  transform: rotate(45deg);
}
#hamburger-navigation .close .cross:after {
  transform: rotate(-45deg);
}
#hamburger-navigation .main-menu {
  display: block;
  margin: 170px 0 65px 0;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu {
    margin-left: 30px;
  }
}
#hamburger-navigation .main-menu ul.level-1 {
  margin-bottom: 0;
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
  margin-bottom: 20px;
}
#hamburger-navigation .main-menu .menu a {
  display: block;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a {
  font: 36px "Baskerville", sans-serif;
  text-decoration: none;
  color: #000;
  padding: 0 30px;
  transition: color 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation .main-menu .menu.level-1 > li > a {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu .menu.level-1 > li > a {
    padding-left: 0;
  }
}
#hamburger-navigation .main-menu .menu.level-1 > li > a:hover, #hamburger-navigation .main-menu .menu.level-1 > li > a.active {
  color: #51617c;
}
#hamburger-navigation .main-menu .menu.level-1 > li > .plus {
  top: 4px;
}
#hamburger-navigation .main-menu .menu.submenu {
  position: relative;
  overflow: hidden;
  max-height: 0;
  padding: 0;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1), padding 333ms, visibility 300ms;
  visibility: hidden;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation .main-menu .menu.submenu {
    transform: none;
  }
}
#hamburger-navigation .main-menu .menu.submenu a {
  font: 16px "Baskerville", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
  transition: color 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation .main-menu .menu.submenu a {
    transform: none;
  }
}
#hamburger-navigation .main-menu .menu.submenu a:hover, #hamburger-navigation .main-menu .menu.submenu a.active {
  color: #51617c;
}
#hamburger-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 10px 0;
  margin-top: 30px;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms, margin 333ms;
  visibility: visible;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation .main-menu .parent.expanded > .submenu {
    transform: none;
  }
}
#hamburger-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 12px;
  cursor: pointer;
}
#hamburger-navigation .main-menu .plus .horizontal,
#hamburger-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: translateY(-50%) rotate(-90deg);
  background-color: #a3afc3;
  top: 50%;
}
@media (prefers-reduced-motion) {
  #hamburger-navigation .main-menu .plus .horizontal,
#hamburger-navigation .main-menu .plus .vertical {
    transform: none;
  }
}
#hamburger-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
}
#hamburger-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical,
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: translateY(-50%) rotate(90deg);
  background: #a3afc3 !important;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
  height: 16px;
}
#hamburger-navigation .footer-menu {
  display: block;
  margin: 0 30px 70px 30px;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .footer-menu {
    margin-bottom: 110px;
  }
}
#hamburger-navigation .footer-menu ul {
  margin-bottom: 0;
}
#hamburger-navigation .footer-menu ul li {
  margin-bottom: 20px;
}
#hamburger-navigation .footer-menu ul li a {
  font: 16px "Baskerville", sans-serif;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
#hamburger-navigation .footer-menu ul li a:hover {
  color: inherit;
}
#hamburger-navigation .extra-top-menu .parent {
  position: relative;
}
#hamburger-navigation .extra-top-menu .parent > a {
  margin-right: 25px;
  pointer-events: none;
}
#hamburger-navigation .extra-top-menu .parent:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #000;
  right: 20px;
  top: 15px;
}

.additional-content.acm-block {
  position: relative;
}
.additional-content.acm-block + .additional-content.acm-block {
  margin-top: 60px;
}
@media only screen and (max-width: 1023px) {
  .additional-content.acm-block + .additional-content.acm-block {
    margin-top: 30px;
  }
}
.hide-main-content .additional-content.acm-block {
  max-width: 1508px;
  margin: 0 auto;
  padding: 0 20px;
}
.hide-main-content .additional-content.acm-block:after {
  clear: both;
  content: "";
  display: table;
}
.additional-content.acm-block em {
  max-width: 900px;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-weight: 500;
  font-family: "AauxPro", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #0e111b;
  letter-spacing: -0.8px;
}

.checkers-blocks.acm-block .checkers-item {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item {
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .checkers-blocks.acm-block .checkers-item {
    margin-bottom: 10px;
  }
}
.checkers-blocks.acm-block .checkers-item.left .content-wrapper {
  order: 2;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.left .content-wrapper {
    margin-bottom: 0;
    margin-top: 40px;
  }
}
.checkers-blocks.acm-block .checkers-item.left .thumbnails {
  order: 1;
}
.checkers-blocks.acm-block .checkers-item.left .thumbnails .slideshow-pagination {
  left: auto;
  right: 35px;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.left .thumbnails .slideshow-pagination {
    right: auto;
    left: 20px;
  }
}
.checkers-blocks.acm-block .checkers-item.left .thumbnails .slideshow-pagination + button {
  margin-right: 0;
  margin-left: 3px;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.left .thumbnails .slideshow-pagination + button {
    margin-left: 0;
    margin-right: 3px;
  }
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.left .content-wrapper, .checkers-blocks.acm-block .checkers-item.right .content-wrapper {
    order: 2;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .checkers-blocks.acm-block .checkers-item.left .thumbnails, .checkers-blocks.acm-block .checkers-item.right .thumbnails {
    order: 1;
  }
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.odd .content-wrapper {
    order: 1;
  }
  .checkers-blocks.acm-block .checkers-item.odd .thumbnails {
    order: 2;
  }
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item.even + .odd .content-wrapper {
    order: 2;
    margin-top: 40px;
  }
  .checkers-blocks.acm-block .checkers-item.even + .odd .thumbnails {
    order: 1;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper {
  flex: 0 1 auto;
  text-align: left;
  padding: 60px 10% 55px;
  width: 45%;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10%;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper strong {
  display: block;
  font: normal 15px "Baskerville", sans-serif;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper h2 {
  font: 41px/1 "Baskerville", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: left;
  text-transform: none;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper h2 {
    text-align: center;
    font-size: 30px;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper p + p {
  margin-top: 8px;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper .content ol, .checkers-blocks.acm-block .checkers-item .content-wrapper .content ul {
  margin-top: 10px;
  margin-bottom: 30px;
  margin-left: 30px;
  text-align: left;
  font-weight: 300;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper .content ol ol, .checkers-blocks.acm-block .checkers-item .content-wrapper .content ol ul, .checkers-blocks.acm-block .checkers-item .content-wrapper .content ul ul, .checkers-blocks.acm-block .checkers-item .content-wrapper .content ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper .content ul > li {
  margin-bottom: 4px;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper .content ul > li::before {
  content: "•";
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper .content {
    font-size: 12px;
    line-height: 1.5;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav {
  margin-top: 80px;
}
@media screen and (max-width: 1600px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper nav {
    width: 100%;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav .text-link {
  position: relative;
  display: inline-block;
  padding: 23px 20px;
  font: 15px/1 "Baskerville", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper nav .text-link {
    display: block;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav .text-link:hover:before {
  opacity: 1;
  bottom: 10px;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav .text-link:before {
  content: "";
  position: absolute;
  display: block;
  background-color: #a3afc3;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  margin-left: -3px;
  opacity: 0;
  left: 50%;
  bottom: -5px;
  transition: opacity 0.4s ease 0s, bottom 0.4s ease 0s;
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav .button {
  display: block;
  max-width: 100%;
  width: 100%;
  padding: 33px 20px;
  min-width: 0;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper nav .button {
    max-width: 100%;
    min-width: 260px;
    display: block;
  }
}
@media screen and (min-width: 1300px) {
  .checkers-blocks.acm-block .checkers-item .content-wrapper nav .button {
    display: inline-block;
  }
}
.checkers-blocks.acm-block .checkers-item .content-wrapper nav .button + .button {
  margin-top: 1rem;
}
.checkers-blocks.acm-block .checkers-item .thumbnails {
  position: relative;
  width: 55%;
  flex: 0 1 auto;
  font-size: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .checkers-blocks.acm-block .checkers-item .thumbnails {
    width: 100%;
    height: 45vh;
  }
}
.checkers-blocks.acm-block .checkers-item .thumbnails.slideshow {
  display: block;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail {
  position: relative;
  display: inline-block;
  flex-basis: 50%;
  flex-grow: 1;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid #a3afc3;
  top: 24px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  pointer-events: none;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail + .thumbnail {
  margin-left: 10px;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail a,
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail button.gallery-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail a span.thumb,
.checkers-blocks.acm-block .checkers-item .thumbnails .thumbnail button.gallery-trigger span.thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-wrapper .thumbnail {
  width: 100%;
  height: 100%;
  flex-basis: 100%;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-wrapper .thumbnail + .thumbnail {
  margin-left: 0;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-pagination {
  position: absolute;
  left: 35px;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-pagination {
    left: 20px;
  }
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-pagination button {
  display: inline-block;
  background: #bbb5b7;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  overflow: hidden;
  text-indent: -10000px;
  font-size: 0;
  line-height: 0;
  margin: 0;
  pointer-events: all;
  opacity: 0.2;
  transition: 350ms ease-in-out;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-pagination button + button {
  margin-left: 3px;
  margin-right: 0;
}
.checkers-blocks.acm-block .checkers-item .thumbnails .slideshow-pagination button.active {
  background: #fff;
  opacity: 1;
}

.tiles.acm-block {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}
.tiles.acm-block .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  width: 30px;
  height: 30px;
  border: 2px solid #a3afc3;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out, opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
  transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .slideshow-button {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}
.tiles.acm-block .slideshow-button:hover {
  border-color: #a3afc3;
}
.tiles.acm-block .slideshow-button.swiper-button-disabled {
  opacity: 0.2;
}
.tiles.acm-block .slideshow-button.previous {
  left: 54px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .tiles.acm-block .slideshow-button.previous {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .slideshow-button.previous {
    left: 10px;
  }
}
.tiles.acm-block .slideshow-button.next {
  right: 54px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .tiles.acm-block .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .slideshow-button.next {
    right: 10px;
  }
}
.tiles.acm-block .slideshow {
  position: relative;
  width: calc(80% + 30px);
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .slideshow {
    width: 80%;
  }
}
.tiles.acm-block .slideshow-wrapper {
  position: relative;
  font-size: 0;
  width: 100%;
}
.tiles.acm-block .tile {
  width: calc(100% / 3);
  padding: 30px 15px;
  display: block;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .tiles.acm-block .tile {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .tile {
    width: 100%;
    padding: 0 2px 20px;
  }
}
.tiles.acm-block .tile:hover .heading:before {
  opacity: 1;
}
.tiles.acm-block .tile:hover .heading h2 {
  transform: translateY(-120%);
  color: #fff;
}
.tiles.acm-block .tile:hover .heading h2:after {
  opacity: 1;
}
.tiles.acm-block .tile:hover .heading h2 a {
  color: #fff;
}
.tiles.acm-block .tile:hover .text-content {
  opacity: 1;
}
.tiles.acm-block .tile:hover .text-content p {
  transform: translateY(0);
}
.tiles.acm-block .tile .image {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 615px;
  background-color: #cfcfcf;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.tiles.acm-block .tile .image::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid #a3afc3;
  top: 24px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .tiles.acm-block .tile .image {
    min-height: 0;
  }
}
.tiles.acm-block .tile .image .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.tiles.acm-block .tile .text-content {
  transition: opacity 0.5s ease;
  pointer-events: none;
  position: absolute;
  left: 26px;
  top: 26px;
  bottom: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) or (-webkit-backdrop-filter: blur(1px)) {
  .tiles.acm-block .tile .text-content {
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
  }
}
.tiles.acm-block .tile .text-content p {
  transition: transform 0.5s ease;
  transform: translateY(-30px);
  font-family: "AauxPro", sans-serif;
  display: block;
  width: 100%;
  white-space: normal;
  color: #fff;
}
.tiles.acm-block .tile .heading {
  position: relative;
  cursor: pointer;
}
.tiles.acm-block .tile .heading:before {
  content: "";
  background: linear-gradient(to top, #000 0, transparent 100%);
  height: 160%;
  width: 100%;
  position: absolute;
  transform: translateY(-100%);
  transition: all 0.5s ease;
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 1;
}
.tiles.acm-block .tile .heading h2 {
  position: relative;
  font: 30px "AauxPro", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 0;
  color: #000;
  text-align: center;
  padding: 20px 10px 25px 10px;
  transform: translateY(0);
  transition: 350ms ease-in-out;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  .tiles.acm-block .tile .heading h2 {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.tiles.acm-block .tile .heading h2:after {
  content: "";
  background-color: #a3afc3;
  height: 5px;
  width: 5px;
  position: absolute;
  bottom: 5px;
  border-radius: 5px;
  left: calc(50% - 5px);
  transition: all 0.8s ease;
  opacity: 0;
}
.tiles.acm-block .tile .heading h2 a {
  text-decoration: none;
  color: inherit;
  transition: 350ms ease-in-out;
}
.tiles.acm-block .tile .booking-button {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tiles.acm-block .tile .booking-button .button {
  min-width: 100%;
}

.times.acm-block {
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
}
.times.acm-block .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  width: 30px;
  height: 30px;
  border: 2px solid #a3afc3;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out, opacity 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
  transform-origin: center;
}
@media only screen and (max-width: 767px) {
  .times.acm-block .slideshow-button {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}
.times.acm-block .slideshow-button:hover {
  border-color: #000;
}
.times.acm-block .slideshow-button.swiper-button-disabled {
  opacity: 0.2;
}
.times.acm-block .slideshow-button.previous {
  left: 46px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .times.acm-block .slideshow-button.previous {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .times.acm-block .slideshow-button.previous {
    left: 10px;
  }
}
.times.acm-block .slideshow-button.next {
  right: 46px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .times.acm-block .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .times.acm-block .slideshow-button.next {
    right: 10px;
  }
}
.times.acm-block .slideshow {
  position: relative;
  width: calc(80% + 30px);
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .times.acm-block .slideshow {
    width: 80%;
  }
}
.times.acm-block .slideshow-wrapper {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  width: 100%;
}
.times.acm-block .time {
  width: calc(100% / 3);
  padding: 30px 15px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
}
@media screen and (max-width: 1200px) {
  .times.acm-block .time {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .times.acm-block .time {
    width: 100%;
    padding: 0 0 20px;
  }
}
.times.acm-block .time .image {
  position: relative;
  width: 100%;
  height: 57vh;
  min-height: 615px;
  background-color: #cfcfcf;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}
.times.acm-block .time .image::before {
  content: "";
  display: block;
  position: absolute;
  border: 3px solid #a3afc3;
  top: 24px;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .times.acm-block .time .image {
    min-height: initial;
  }
}
.times.acm-block .time .heading {
  position: relative;
}
.times.acm-block .time .heading h3 {
  font: 300 30px/37px "AauxPro", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #000;
  text-align: center;
  padding: 20px 10px 5px 10px;
  white-space: initial;
}
@media only screen and (max-width: 1023px) {
  .times.acm-block .time .heading h3 {
    font-size: 18px;
  }
}
.times.acm-block .time .heading h3 a {
  text-decoration: none;
  color: inherit;
  transition: 350ms ease-in-out;
}
.times.acm-block .time .heading p {
  font-size: 25px;
  line-height: 32px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: #000;
  text-align: center;
  white-space: initial;
}
@media only screen and (max-width: 1023px) {
  .times.acm-block .time .heading p {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.content-blocks-slideshow.acm-block {
  position: relative;
  height: 100vh;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1023px) {
  .content-blocks-slideshow.acm-block {
    height: 45vh;
  }
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block {
    height: auto;
    margin-bottom: 10px;
  }
}
.content-blocks-slideshow.acm-block .slideshow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block .slideshow {
    position: relative;
    height: auto;
  }
}
.content-blocks-slideshow.acm-block .slideshow-wrapper {
  width: 100%;
  height: 100%;
}
.content-blocks-slideshow.acm-block .content-item {
  flex-flow: row wrap;
  display: flex;
  position: relative;
  align-items: center;
}
.content-blocks-slideshow.acm-block .content-item .content {
  flex: 0 1 auto;
  text-align: left;
  padding: 5rem 5%;
  width: 45%;
}
@media only screen and (max-width: 1023px) {
  .content-blocks-slideshow.acm-block .content-item .content {
    width: 50%;
    padding: 8rem 5%;
  }
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block .content-item .content {
    order: 1;
    width: 100%;
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.8px;
  }
}
.content-blocks-slideshow.acm-block .content-item .content h2 {
  font: 400 60px/1 "Baskerville", sans-serif;
  margin-bottom: 15px;
  letter-spacing: 0;
  margin-left: -2px;
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block .content-item .content h2 {
    font-size: 45px;
  }
}
.content-blocks-slideshow.acm-block .content-item .thumbnail {
  flex: 0 1 auto;
  font-size: 0;
  width: 55%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 92vh;
}
@media only screen and (max-width: 1023px) {
  .content-blocks-slideshow.acm-block .content-item .thumbnail {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .content-blocks-slideshow.acm-block .content-item .thumbnail {
    height: auto;
    padding-top: 45vh;
  }
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block .content-item .thumbnail {
    order: 2;
    width: 100%;
    height: 60vh;
  }
}
.content-blocks-slideshow.acm-block nav {
  position: absolute;
  bottom: 2rem;
  width: auto;
  right: 5%;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block nav {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    right: auto;
  }
}
.content-blocks-slideshow.acm-block nav button {
  position: relative;
  display: inline-block;
  top: auto;
  left: auto;
  right: auto;
  width: 36px;
  height: 36px;
  border: 2px solid #a3afc3;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.25;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .content-blocks-slideshow.acm-block nav button {
    opacity: 0.5;
  }
}
.content-blocks-slideshow.acm-block nav button.previous {
  transform: rotate(-135deg);
}
.content-blocks-slideshow.acm-block nav button.next {
  transform: rotate(45deg);
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail {
  position: relative;
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail .swiper-slide {
  background-size: cover;
  background-position: 50% 50%;
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail .arrows button {
  position: absolute;
  display: block;
  top: 50%;
  left: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  text-indent: -1000px;
  overflow: hidden;
  transform: translate(0, -50%);
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail .arrows button.next {
  left: auto;
  right: 30px;
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail .arrows button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 7px solid #AB7D22;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-3px, 0);
}
.content-blocks-slideshow.acm-block.content-blocks-gallery .thumbnail .arrows button.next:after {
  border-right: 0;
  border-left: 7px solid #AB7D22;
  transform: translate(-50%, -50%) translate(2px, 0);
}

.left-right-content.acm-block {
  margin: 80px 0;
}
@media only screen and (max-width: 1023px) {
  .left-right-content.acm-block {
    margin: 40px 0;
  }
}
.left-right-content.acm-block .checkers-item {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  max-width: 75%;
  margin: 0 auto 50px auto;
}
@media only screen and (max-width: 767px) {
  .left-right-content.acm-block .checkers-item {
    margin-bottom: 10px;
    display: block;
  }
}
.left-right-content.acm-block .checkers-item .content-wrapper {
  flex: 0 1 auto;
  text-align: left;
  padding: 0 20% 0 0;
  width: 64%;
  overflow: hidden;
  order: 1;
}
@media only screen and (max-width: 1023px) {
  .left-right-content.acm-block .checkers-item .content-wrapper {
    width: 100%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .left-right-content.acm-block .checkers-item .content-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    margin-bottom: 0;
    margin-top: 40px;
  }
}
.left-right-content.acm-block .checkers-item .content-wrapper h2 {
  font: 41px/1 "Baskerville", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: left;
  text-transform: none;
}
@media only screen and (max-width: 1023px) {
  .left-right-content.acm-block .checkers-item .content-wrapper h2 {
    text-align: center;
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cafe-layout .left-right-content.acm-block .checkers-item .content-wrapper h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .left-right-content.acm-block .checkers-item .content-wrapper .content {
    font-size: 12px;
    line-height: 1.5;
  }
}
.left-right-content.acm-block .checkers-item .content-wrapper .content p {
  margin-bottom: 3rem;
}
.left-right-content.acm-block .checkers-item .content-wrapper nav {
  margin-top: 3rem;
}
@media screen and (max-width: 1600px) {
  .left-right-content.acm-block .checkers-item .content-wrapper nav {
    width: 100%;
  }
}
.left-right-content.acm-block .checkers-item .content-wrapper nav .button {
  display: inline-block;
  max-width: 49%;
  width: 49%;
  min-width: 0;
}
.left-right-content.acm-block .checkers-item .content-wrapper nav .button:hover {
  background-color: #000;
  color: #fff !important;
}
@media only screen and (max-width: 1023px) {
  .left-right-content.acm-block .checkers-item .content-wrapper nav .button {
    max-width: 100%;
    width: 100%;
    min-width: 260px;
    display: block;
  }
}
.left-right-content.acm-block .checkers-item .content-wrapper nav .button + .button {
  margin-top: 1rem;
}
.left-right-content.acm-block .checkers-item .side-content-wrapper {
  flex: 0 1 auto;
  text-align: left;
  padding: 0;
  width: 36%;
  overflow: hidden;
  order: 2;
}
@media only screen and (max-width: 1023px) {
  .left-right-content.acm-block .checkers-item .side-content-wrapper {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .left-right-content.acm-block .checkers-item .side-content-wrapper {
    width: 100%;
    margin-top: 40px;
  }
}
.left-right-content.acm-block .checkers-item .side-content-wrapper h3 {
  color: #000;
  font-family: "Baskerville", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 1.49px;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.left-right-content.acm-block .checkers-item .side-content-wrapper .alt-content {
  color: #000;
  font-size: 1.6rem;
  line-height: 1.825;
  letter-spacing: -0.21px;
  list-style: none;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 15px;
}
.left-right-content.acm-block .checkers-item .side-content-wrapper .alt-content:before {
  content: "•";
  display: block;
  position: absolute;
  left: 0;
  top: 2px;
}
.left-right-content.acm-block .checkers-item .side-content-wrapper .alt-content:empty {
  display: none;
}
.left-right-content.acm-block .checkers-item .side-content-wrapper .alt-content strong {
  font-weight: bold;
}

.weddings-rfp-acm .center-column .rfp-wrapper {
  margin: 0 auto;
  max-width: 1250px;
  background: #ECECEC;
  border: 1.5px solid #E0E0E1;
}
.weddings-rfp-acm .center-column .page-content {
  padding: 63px 66px 0 66px;
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
}
.weddings-rfp-acm .center-column .page-content h2 {
  font: 400 41px/41px "Baskerville", sans-serif;
  color: #19213C;
}
.weddings-rfp-acm .center-column .page-content p:first-of-type:last-of-type {
  margin-bottom: 0;
}
.weddings-rfp-acm form.form {
  margin: 0;
  background: #19213C;
}
.weddings-rfp-acm form.form input[type=text],
.weddings-rfp-acm form.form input[type=date],
.weddings-rfp-acm form.form textarea,
.weddings-rfp-acm form.form select,
.weddings-rfp-acm form.form .input-overlay {
  color: #ADADAD;
  font-family: "AauxPro", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
}
.weddings-rfp-acm form.form input[type=text]::-webkit-input-placeholder,
.weddings-rfp-acm form.form input[type=date]::-webkit-input-placeholder,
.weddings-rfp-acm form.form textarea::-webkit-input-placeholder,
.weddings-rfp-acm form.form select::-webkit-input-placeholder,
.weddings-rfp-acm form.form .input-overlay::-webkit-input-placeholder {
  color: transparent;
  opacity: 0;
}
.weddings-rfp-acm form.form input[type=text]:-moz-placeholder,
.weddings-rfp-acm form.form input[type=date]:-moz-placeholder,
.weddings-rfp-acm form.form textarea:-moz-placeholder,
.weddings-rfp-acm form.form select:-moz-placeholder,
.weddings-rfp-acm form.form .input-overlay:-moz-placeholder {
  color: transparent;
  opacity: 0;
}
.weddings-rfp-acm form.form input[type=text]::-moz-placeholder,
.weddings-rfp-acm form.form input[type=date]::-moz-placeholder,
.weddings-rfp-acm form.form textarea::-moz-placeholder,
.weddings-rfp-acm form.form select::-moz-placeholder,
.weddings-rfp-acm form.form .input-overlay::-moz-placeholder {
  color: transparent;
  opacity: 0;
}
.weddings-rfp-acm form.form input[type=text]:-ms-input-placeholder,
.weddings-rfp-acm form.form input[type=date]:-ms-input-placeholder,
.weddings-rfp-acm form.form textarea:-ms-input-placeholder,
.weddings-rfp-acm form.form select:-ms-input-placeholder,
.weddings-rfp-acm form.form .input-overlay:-ms-input-placeholder {
  color: transparent;
  opacity: 0;
}
.weddings-rfp-acm form.form select option[value=""] {
  display: none;
}
.weddings-rfp-acm form.form fieldset:not(.controls) {
  padding: 45px 66px 0 46px;
  background: #ECECEC;
}
.weddings-rfp-acm form.form fieldset:not(.controls):after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form fieldset:not(.controls) {
    padding: 30px 30px 0 30px;
  }
}
.weddings-rfp-acm form.form fieldset:not(.controls)#weddings-events_of_consideration {
  padding-top: 25px;
}
.weddings-rfp-acm form.form fieldset:not(.controls) p {
  float: left;
}
.weddings-rfp-acm form.form .terms-privacy, .weddings-rfp-acm form.form fieldset.controls {
  color: #fff;
  margin: 0;
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form .terms-privacy, .weddings-rfp-acm form.form fieldset.controls {
    display: block;
  }
}
.weddings-rfp-acm form.form fieldset.controls {
  width: 380px;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form fieldset.controls {
    width: 100%;
  }
}
.weddings-rfp-acm form.form fieldset.controls p {
  margin-top: 25px;
}
.weddings-rfp-acm form.form fieldset.controls input[type=submit].button {
  border: none;
}
.weddings-rfp-acm form.form .terms-privacy {
  margin-left: 66px;
  box-sizing: border-box;
  width: calc(100% - 450px);
  line-height: 28px;
  position: relative;
  text-align: left !important;
  vertical-align: bottom;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form .terms-privacy {
    width: auto;
    margin-bottom: 0;
    margin-top: 25px;
    margin-right: 66px;
  }
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form .terms-privacy {
    margin: 20px 30px 0 30px;
    text-align: center !important;
  }
}
.weddings-rfp-acm form.form .terms-privacy .custom-checkbox {
  padding-left: 45px;
}
.weddings-rfp-acm form.form .terms-privacy label {
  text-transform: initial;
  font-size: 16px;
}
.weddings-rfp-acm form.form .terms-privacy em {
  position: absolute;
  left: 34px;
  color: #fff !important;
}
.weddings-rfp-acm form.form h3 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 20px;
  font: 500 18px/27px "Baskerville", sans-serif;
  color: #000;
}
.weddings-rfp-acm form.form h3 em {
  color: #b31919;
  padding-right: 5px;
  vertical-align: middle;
}
.weddings-rfp-acm form.form #weddings-row_events_of_considertion {
  margin-bottom: 0;
}
.weddings-rfp-acm form.form p {
  padding: 0;
}
.weddings-rfp-acm form.form p label {
  display: block;
  text-transform: uppercase;
  font: 400 12px/17px "AauxPro", sans-serif;
}
.weddings-rfp-acm form.form p label em {
  vertical-align: middle;
}
.weddings-rfp-acm form.form p.col-25 {
  width: calc((100% - 80px) / 4);
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form p.col-25 {
    width: calc((100% - 40px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form p.col-25 {
    width: 100%;
    margin-left: 0;
  }
}
.weddings-rfp-acm form.form p.col-50 {
  width: calc((100% - 80px) / 2 + 20px);
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form p.col-50 {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form p.col-50 {
    width: 100%;
    margin-left: 0;
  }
}
.weddings-rfp-acm form.form p.type_datepicker {
  position: relative;
}
.weddings-rfp-acm form.form p.type_datepicker .datepicker-input-wrapper {
  width: 100%;
}
.weddings-rfp-acm form.form p.type_datepicker .datepicker-input-wrapper .input-overlay {
  width: 100%;
  bottom: 0;
  position: absolute;
}
.weddings-rfp-acm form.form p.type_datepicker .datepicker-input-wrapper .date-pick {
  width: 100%;
}
.weddings-rfp-acm form.form p.type_datepicker .ui-datepicker-trigger {
  position: absolute;
  bottom: 15px;
  left: 10px;
  margin: 0;
  width: 24px;
  height: 22px;
  background-position: 0px -1px;
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form p.type_datepicker .ui-datepicker-trigger {
    display: block;
  }
}
.weddings-rfp-acm form.form p .group {
  margin: 0;
  float: none;
  display: block;
  height: 50px;
  box-sizing: border-box;
  padding-top: 8px;
}
.weddings-rfp-acm form.form p .group label {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 30px;
  text-transform: capitalize;
  font-size: 16px;
}
.weddings-rfp-acm form.form p .group label:last-of-type {
  margin-right: 0;
}
.weddings-rfp-acm form.form #weddings-arrival_date, .weddings-rfp-acm form.form #weddings-time {
  padding-left: 45px;
}
.weddings-rfp-acm form.form #weddings-row_time .select-wrapper:before {
  content: "";
  background: url("../images/sprite.svg") 0 -27px no-repeat;
  position: absolute;
  bottom: 15px;
  left: 10px;
  margin: 0;
  width: 24px;
  height: 22px;
  z-index: 1;
  pointer-events: none;
}
.weddings-rfp-acm form.form #weddings-row_events_of_considertion:after {
  clear: both;
  content: "";
  display: table;
}
.weddings-rfp-acm form.form #weddings-row_events_of_considertion > label {
  display: none;
}
.weddings-rfp-acm form.form #weddings-row_events_of_considertion label {
  width: calc((100% - 80px) / 4);
  margin: 0 0 20px 20px;
  vertical-align: top;
  min-height: 56px;
}
@media only screen and (max-width: 1023px) {
  .weddings-rfp-acm form.form #weddings-row_events_of_considertion label {
    width: calc((100% - 60px) / 3);
  }
}
@media only screen and (max-width: 767px) {
  .weddings-rfp-acm form.form #weddings-row_events_of_considertion label {
    width: 100%;
    margin: 0 0 10px 0;
    min-height: 0;
  }
}
.weddings-rfp-acm form.form #weddings-row_events_of_considertion .group {
  height: auto;
  padding-top: 0;
}
.weddings-rfp-acm form.form .custom-checkbox, .weddings-rfp-acm form.form .custom-radio {
  position: relative;
  display: inline-block !important;
  cursor: pointer;
  padding-left: 35px;
  line-height: 28px;
}
.weddings-rfp-acm form.form .custom-checkbox:before, .weddings-rfp-acm form.form .custom-radio:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 0.125em;
  transition: transform 350ms ease-in-out/2;
}
@media only screen and (min-width: 1024px) {
  .weddings-rfp-acm form.form .custom-checkbox:hover:before, .weddings-rfp-acm form.form .custom-radio:hover:before {
    transform: scale(1.1);
    background: #a3afc3;
  }
  .weddings-rfp-acm form.form .custom-checkbox:active:before, .weddings-rfp-acm form.form .custom-radio:active:before {
    transform: scale(1);
  }
}
.weddings-rfp-acm form.form .custom-checkbox:after, .weddings-rfp-acm form.form .custom-radio:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 10px;
  height: 6px;
  border-bottom: 0.125em solid #fff;
  border-left: 0.125em solid #fff;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 350ms ease-in-out/2 350ms ease-in-out/3, opacity 350ms ease-in-out/2, visibility 350ms ease-in-out/2;
  pointer-events: none;
}
.weddings-rfp-acm form.form .custom-checkbox.checked:before, .weddings-rfp-acm form.form .custom-radio.checked:before {
  background: #19213C;
}
.weddings-rfp-acm form.form .custom-checkbox.checked:after, .weddings-rfp-acm form.form .custom-radio.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 350ms ease-in-out/3, opacity 350ms ease-in-out/3, visibility 350ms ease-in-out/3;
}
.weddings-rfp-acm form.form .custom-checkbox input, .weddings-rfp-acm form.form .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.weddings-rfp-acm form.form .custom-radio:before {
  border-radius: 50%;
}

.popup {
  position: fixed;
  left: -101%;
  top: 0;
  bottom: 0;
  min-height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0 20px;
  z-index: 60;
  transition: left 0.2s;
}
.keyboard-navigation .popup {
  display: none;
}
.popup.visible {
  left: 0;
}
.keyboard-navigation .popup.visible {
  display: block;
}
.expanded .popup {
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .popup {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .popup {
    padding: 0 0 60px;
  }
}

#booking-wrapper {
  height: auto;
  padding: 0;
  background: #1A2D3E;
}
#booking-wrapper.fixed {
  position: fixed;
}
#booking-wrapper.visible {
  display: block;
}
#booking-wrapper .right-side {
  background: url("../images/main-pattern.svg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  #booking-wrapper .right-side {
    align-items: flex-start;
  }
}
#booking-wrapper .right-side:before {
  content: "";
  background: rgba(0, 0, 0, 0.9);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#booking {
  text-align: center;
  padding: 90px 0 90px;
}
@media only screen and (max-width: 767px) {
  #booking {
    padding: 60px 0 80px;
  }
}
#booking form {
  width: 320px;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #booking form {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
#booking .info {
  display: block;
  vertical-align: top;
  font: 700 14px/16px "AauxPro", sans-serif;
  color: #E8EAEA;
  text-transform: uppercase;
  margin-bottom: 32px;
  padding: 0 10px;
  position: relative;
}
#booking .info a {
  text-decoration: none;
  color: #E8EAEA;
}
#booking .info a:hover {
  color: #EE5F4A;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking .info {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  #booking .info {
    margin-bottom: 20px;
    font-size: 10px;
    line-height: 10px;
  }
}
#booking .info:after {
  content: "";
  display: block;
  margin: 19px auto 0;
  position: relative;
  width: 30px;
  height: 6px;
  background: #EDEEEF;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking .info:after {
    margin-top: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #booking .info:after {
    margin-top: 10px;
  }
}
#booking h4, #booking .h4 {
  font: 400 46px/56px "Baskerville", sans-serif;
  color: white;
  text-transform: uppercase;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking h4, #booking .h4 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  #booking h4, #booking .h4 {
    font-size: 26px;
    line-height: 26px;
  }
}
#booking .booking-phone-number {
  position: relative;
  color: #fff;
  font-size: 16px;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  #booking .booking-phone-number {
    font-size: 14px;
  }
}
#booking .booking-phone-number a {
  color: inherit;
  text-decoration: none;
  transition: color 350ms ease-in-out;
}
#booking .booking-phone-number a:hover {
  color: #a3afc3;
}
#booking h4 + .booking-phone-number {
  margin-top: -10px;
}
@media only screen and (max-width: 1023px) {
  #booking h4 + .booking-phone-number {
    margin-top: -4px;
  }
}
#booking input[type=text],
#booking .fakeinput,
#booking select {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 320px;
  height: 40px;
  background: #fff;
  font: normal 17px/40px "AauxPro", sans-serif;
  color: #000;
  position: relative;
  border: 0;
}
@media only screen and (max-width: 767px) {
  #booking input[type=text],
#booking .fakeinput,
#booking select {
    width: 100%;
    box-sizing: border-box;
  }
}
#booking .select-wrapper {
  width: 100%;
}
#booking .select-wrapper .select-icon {
  right: 12px;
  height: 8px;
  width: 8px;
  display: inline-block;
  border-bottom: thin solid #fff;
  border-right: thin solid #fff;
}
#booking .select-field {
  width: 320px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #booking .select-field {
    width: 100%;
    box-sizing: border-box;
  }
}
#booking .decrement, #booking .increment {
  position: absolute;
  color: black;
  width: 30px;
  height: 40px;
  top: 0;
}
#booking .decrement {
  left: 0;
}
#booking .increment {
  right: 0;
}
#booking .column {
  margin-bottom: 13px;
}
#booking .column label {
  display: block;
  font: normal 15px/24px "AauxPro", sans-serif;
  color: #E8EAEA;
  text-transform: uppercase;
  margin-bottom: 13px;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #booking .column label {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
#booking .booking-columns-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
#booking .booking-columns-wrapper .column {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  #booking .booking-columns-wrapper .column {
    width: calc(50% - 5px);
  }
}
#booking .booking-columns-wrapper .column input[type=text],
#booking .booking-columns-wrapper .column .fakeinput,
#booking .booking-columns-wrapper .column .select-field,
#booking .booking-columns-wrapper .column select {
  width: 100%;
}
#booking input[type=submit] {
  width: 100%;
  box-sizing: border-box;
  background-color: #a3afc3;
  margin-top: 27px;
}
#booking .disclaimer {
  margin: 50px 60px 0 60px;
  font: 300 11px/1.2 "Baskerville", sans-serif;
  color: white;
  font-style: italic;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking .disclaimer {
    margin: 50px 25px 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  #booking .disclaimer {
    margin: 50px 20px 0 20px;
  }
}
#booking .disclaimer p {
  text-align: justify;
  -moz-text-align-last: center;
       text-align-last: center;
  margin-bottom: 5px;
  font: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking .disclaimer p {
    line-height: 1.1;
  }
}
@media only screen and (max-width: 767px) {
  #booking .disclaimer p {
    line-height: 1.1;
  }
}

/* BOOKING DATEPICKER */
#booking-datepicker {
  display: none;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: 90px;
  width: 516px;
  height: auto;
  z-index: 20;
  background: #091B2A;
}
@media only screen and (min-width: 1366px) {
  #booking-datepicker {
    transform: none;
    right: 320px;
    top: 37px;
  }
}
@media only screen and (max-width: 767px) {
  #booking-datepicker {
    position: relative;
    transform: none;
    right: auto;
    top: auto;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
  }
}
#booking-datepicker.visible {
  display: block;
}
#booking-datepicker #start-end {
  text-align: center;
  height: 35px;
  text-transform: uppercase;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  background: #091B2A;
  font: 20px/35px "AauxPro", sans-serif;
  color: #EDEEEF;
  padding: 3px 0 2px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker #start-end {
    white-space: normal;
  }
}
#booking-datepicker #start-end span {
  display: inline-block;
  width: 100%;
  transition: all 200ms;
}
#booking-datepicker #start-end .start {
  margin-left: -100%;
  opacity: 0;
}
#booking-datepicker #start-end .start.show {
  margin-left: 0;
  opacity: 1;
}
#booking-datepicker #start-end .end {
  margin-right: -100%;
  opacity: 0;
}
#booking-datepicker #start-end .end.show {
  margin-right: 0;
  opacity: 1;
}
#booking-datepicker .ui-datepicker {
  width: 100% !important;
  padding: 0 12px;
  box-shadow: none;
  border: 1px solid #091B2A;
  box-sizing: border-box;
  background: #091B2A;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker .ui-datepicker-calendar {
    width: 100%;
  }
}
#booking-datepicker .ui-datepicker .ui-datepicker-calendar td, #booking-datepicker .ui-datepicker .ui-datepicker-calendar th {
  font: 500 12px/28px "AauxPro", sans-serif;
  padding: 0;
}
#booking-datepicker .ui-datepicker-group {
  width: 50%;
  box-sizing: border-box;
  float: left;
  padding: 24px 12px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-group {
    width: 100%;
    float: none;
  }
}
#booking-datepicker .ui-datepicker-calendar {
  width: 100%;
}
#booking-datepicker .ui-datepicker-calendar .ui-datepicker-today {
  background-color: black;
}
#booking-datepicker .ui-datepicker-calendar .ui-datepicker-highlight {
  background-color: #a3afc3;
  color: black;
}
#booking-datepicker .ui-datepicker-header {
  font: 500 14px/1.1 "AauxPro", sans-serif;
  padding: 0;
  margin-bottom: 15px;
}
#booking-datepicker .ui-datepicker-header .ui-datepicker-prev,
#booking-datepicker .ui-datepicker-header .ui-datepicker-next {
  top: -5px;
}
#booking-datepicker .ui-datepicker-header .ui-datepicker-prev {
  left: 9px;
}
#booking-datepicker .ui-datepicker-header .ui-datepicker-next {
  right: 1px;
}
#booking-datepicker .ui-datepicker-prev {
  float: left;
}
#booking-datepicker .ui-datepicker-next {
  float: right;
}

#booking-rooms {
  width: 100%;
  height: 100%;
  text-align: center;
}
#booking-rooms .booking-rooms-slide {
  float: left;
  width: 100%;
  height: 100%;
  position: relative;
}
#booking-rooms .booking-rooms-slide .thumbnail {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
.mobiledevice #booking-rooms .booking-rooms-slide .thumbnail {
  filter: none !important;
}
#booking-rooms .booking-rooms-slide .thumbnail:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
}
#booking-rooms .booking-rooms-slide:hover .thumbnail {
  filter: grayscale(0);
}
.mobiledevice #booking-rooms .booking-rooms-slide:hover .thumbnail {
  filter: none;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper {
  width: 280px;
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  flex-direction: column;
  height: 100%;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3 {
  position: relative;
  box-sizing: border-box;
  padding: 0 20px;
  font: 400 46px/56px "Baskerville", sans-serif;
  text-transform: uppercase;
  color: #EE5F4A;
  z-index: 1;
  margin: 0 0 31px 0;
  width: inherit;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3 a {
  text-decoration: none;
  color: #EE5F4A;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3 a:hover {
  color: #E8EAEA;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3:after {
  content: "";
  display: block;
  margin: 39px auto 0;
  width: 30px;
  height: 6px;
  background: #E8EAEA;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3:after {
    margin-top: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking-rooms .booking-rooms-slide .booking-rooms-wrapper h3 {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper h4 {
  font: 400 36px/40px "AauxPro", sans-serif;
  color: #fff;
  margin-bottom: 29px;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper .descr {
  font: normal 17px/20px "AauxPro", sans-serif;
  color: #E8EAEA;
  margin-bottom: 34px;
  width: inherit;
}
#booking-rooms .booking-rooms-slide .booking-rooms-wrapper .button {
  width: 100%;
  box-sizing: border-box;
}

.booking-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}
.booking-modal .modal-content {
  background-color: #fff;
  padding: 20px;
  width: 700px;
  color: #000;
  text-align: left;
  font: 14px/1.3 "AauxPro", sans-serif;
}
@media only screen and (max-width: 767px) {
  .booking-modal .modal-content {
    width: 300px;
    max-width: 100%;
  }
}
.booking-modal .button-container {
  width: 100%;
  height: auto;
  text-align: center;
}
.booking-modal .booking-continue {
  position: relative;
  display: inline-block;
  margin: 20px 0 0;
}
.booking-modal .modal-close {
  position: relative;
  display: inline-block;
  color: #000;
  border-color: transparent;
  margin: 20px 0 0;
  opacity: 0.4;
  transition: 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  .booking-modal .modal-close {
    transition: none;
  }
}
.booking-modal .modal-close:hover, .booking-modal .modal-close:focus {
  background: transparent;
  opacity: 1;
}
.booking-modal .modal-close:after {
  width: 0;
  height: 0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
  border-left: 5px solid #000;
  font-size: 0;
  line-height: 0;
  content: "";
  position: relative;
  top: -4px;
  right: -10px;
}
@media only screen and (max-width: 767px) {
  .booking-modal .modal-close:after {
    top: -5px;
  }
}
.booking-modal-active .booking-modal {
  display: flex;
}

.homepage-additional-content {
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 10;
}
.homepage-additional-content .subpage {
  position: relative;
  overflow: hidden;
  margin: 10px;
  color: #fff;
  background-position: 25% 50%;
  background-repeat: no-repeat;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage {
    min-height: 500px;
  }
}
.homepage-additional-content .subpage > .button {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: none;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage > .button {
    display: block;
  }
}
.homepage-additional-content .subpage .thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-size: cover;
  background-position: 50% 50%;
  opacity: 0.75;
}
.homepage-additional-content .subpage .headings {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 3;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings {
    max-width: none;
    right: 40px;
  }
}
.homepage-additional-content .subpage .headings h2 {
  font: 36px/47px "AauxPro", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.homepage-additional-content .subpage .headings h3 {
  font-size: 24px;
  line-height: 33px;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .headings h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.homepage-additional-content .subpage .content-wrapper {
  float: right;
  width: 280px;
  padding: 75px 30px 70px;
  min-height: 470px;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .content-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 0;
    padding: 20px 20px 20px;
  }
}
.homepage-additional-content .subpage .content-wrapper .copy {
  position: relative;
  font-size: 14px;
  line-height: 1.7;
  min-height: 240px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage .content-wrapper .copy {
    font-size: 12px;
    margin-bottom: 20px;
    min-height: 0;
  }
}
.homepage-additional-content .subpage.even {
  background-position: 75% 50%;
}
.homepage-additional-content .subpage.even > .button {
  right: 40px;
  left: auto;
}
.homepage-additional-content .subpage.even .headings {
  left: auto;
  right: 40px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .homepage-additional-content .subpage.even .headings {
    left: 40px;
  }
}
.homepage-additional-content .subpage.even .content-wrapper {
  float: left;
}

.admin .preview-item {
  overflow: hidden;
  margin: 0;
  padding: 20px;
  height: auto;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
.admin .preview-item .promo {
  width: 350px;
}
.admin .preview-item .promo .promo-thumbnail img {
  display: block;
  width: 100%;
}

.promos-position-a {
  position: relative;
  z-index: 30;
}
.promos-position-a .slideshow {
  overflow: hidden;
}
.promos-position-a .promo {
  position: relative;
  width: 33.33%;
  overflow: hidden;
  white-space: normal;
  background: #266060;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .promos-position-a .promo {
    width: 70%;
  }
}
.promos-position-a .promo .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
.promos-position-a .promo .promo-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
}
.promos-position-a .promo .promo-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}
.promos-position-a .promo .promo-thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #a3afc3;
  border-bottom-color: #a3afc3;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.promos-position-a .promo .promo-thumbnail .loading:before {
  top: 8%;
  right: 8%;
  left: auto;
  margin: auto;
}
.promos-position-a .promo:hover .promo-thumbnail {
  transform: scale(1);
}
.promos-position-a .promo .content {
  position: absolute;
  bottom: 25px;
  left: 30px;
  right: 30px;
}
.promos-position-a .promo .content ol, .promos-position-a .promo .content ul {
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 30px;
  text-align: left;
}
.promos-position-a .promo .content ol ol, .promos-position-a .promo .content ol ul, .promos-position-a .promo .content ul ul, .promos-position-a .promo .content ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.promos-position-a .promo .content ul > li {
  margin-bottom: 4px;
}
.promos-position-a .promo .content ul > li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  margin-right: 15px;
  background: #000;
}
.promos-position-a .promo h3 {
  font-family: "Baskerville", sans-serif;
  font-weight: normal;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.promos-position-a .promo h3 a {
  color: inherit;
  text-decoration: none;
}
.promos-position-a .promo p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 20px;
}
.promos-position-a .promo .price {
  font: 15px/32px "Baskerville", sans-serif;
  margin-bottom: 20px;
}
.promos-position-a .promo .price strong {
  font-weight: bold;
  font-size: 20px;
}
.promos-position-a .promo .promo-button {
  display: block;
  font-size: 18px;
  margin-top: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.promos-position-a .promo .promo-button:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .promos-position-a .promo {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .promos-position-a .promo {
    width: 83%;
  }
}
.promos-position-a .slideshow-pagination {
  margin-top: 20px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .promos-position-a .slideshow-pagination {
    display: none;
  }
}
.promos-position-a .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #000;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.promos-position-a .slideshow-pagination > *:hover, .promos-position-a .slideshow-pagination > *.active {
  background: #a3afc3;
}

#merchandising-tile {
  position: fixed;
  bottom: 50%;
  transform: translateY(50%);
  right: -600px;
  width: 525px;
  z-index: 80;
  background: transparent;
  color: #fff;
  height: 250px;
  transition: 1s;
}
@media only screen and (max-width: 1023px) {
  #merchandising-tile {
    bottom: 0;
    transform: none;
  }
}
.admin .preview-item #merchandising-tile {
  padding: 20px;
  position: relative;
  right: 0;
}
#merchandising-tile .img-overlay {
  width: 525px;
  height: 220px;
  background-size: cover !important;
  background-position: center !important;
  background: no-repeat;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: -1;
}
@media only screen and (max-width: 1023px) {
  #merchandising-tile .img-overlay {
    bottom: 0;
    transform: none;
  }
}
#merchandising-tile .img-overlay .color-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#merchandising-tile .promo-name {
  font-size: 18px;
  text-align: center;
  margin-top: 38px;
  text-transform: uppercase;
  font-family: "AauxPro", sans-serif;
}
#merchandising-tile .promo-text {
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 20px;
  text-align: center;
  font-family: "AauxPro", sans-serif;
}
#merchandising-tile .promo-content {
  text-align: center;
  padding: 0 40px 0 0;
}
.admin .preview-item #merchandising-tile .promo-content {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  padding-top: 10px;
  padding-right: 0;
}
#merchandising-tile .promo-content .button {
  margin-top: 10px;
  width: 100%;
  max-width: 240px;
  border: 2px solid #a3afc3;
}
.admin .preview-item #merchandising-tile .promo-content .button {
  font-weight: normal;
  background: none;
  box-shadow: none;
  text-shadow: none;
  text-transform: uppercase;
}
#merchandising-tile.merchandising-tile-active {
  right: 0;
}
@media only screen and (max-width: 767px) {
  #merchandising-tile.merchandising-tile-active {
    width: 100%;
  }
  #merchandising-tile.merchandising-tile-active .img-overlay {
    width: 100%;
  }
}

.merchandising-open-btn {
  width: 40px;
  height: 220px;
  background-color: #a3afc3;
  position: fixed;
  bottom: 50%;
  transform: translateY(50%);
  right: 0;
  z-index: 9999;
  float: right;
}
@media only screen and (max-width: 1023px) {
  .merchandising-open-btn {
    bottom: 0;
    transform: none;
  }
}
.merchandising-open-btn .arrow-rotate {
  background: url("../images/right_arrow.svg") no-repeat 0 0;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 25px;
  transform: rotate(0deg) translateY(-50%);
  transition: transform 1s;
}
.merchandising-open-btn .active-rotate {
  transform: rotate(180deg) translateY(50%);
}

#events,
#events-static {
  position: relative;
  overflow: hidden;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}
#events h2,
#events-static h2 {
  font: 40px/1 "Baskerville", sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 30px;
  text-transform: none;
  text-align: center;
}
#events h2 a,
#events-static h2 a {
  text-decoration: none;
}
#events .slideshow,
#events-static .slideshow {
  margin: 0 auto;
  overflow: hidden;
}
#events .slideshow .event,
#events-static .slideshow .event {
  margin: 0;
}
#events .slideshow-wrapper,
#events-static .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .events-wrapper,
#events-static .events-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#events .events-wrapper + .button,
#events-static .events-wrapper + .button {
  margin-top: 30px;
}
#events .event,
#events-static .event {
  position: relative;
  display: inline-block;
  width: calc((100% / 3) - 10px);
  margin: 0 5px;
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
}
@media only screen and (max-width: 1023px) {
  #events .event,
#events-static .event {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  #events .event,
#events-static .event {
    width: 100vw;
    margin: 0;
  }
}
#events .event .thumbnail,
#events-static .event .thumbnail {
  position: relative;
  width: 100%;
  height: 350px;
  margin: 0;
  margin-bottom: 20px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #events .event .thumbnail,
#events-static .event .thumbnail {
    height: 266px;
  }
}
#events .event .thumbnail.no-thumbnail,
#events-static .event .thumbnail.no-thumbnail {
  background: #cfcfcf;
}
#events .event .thumbnail .loading:before,
#events-static .event .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #a3afc3;
  border-bottom-color: #a3afc3;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#events .event .date,
#events-static .event .date {
  display: block;
  position: relative;
  margin: 20px 0;
  color: #a3afc3;
  font: 18px/1 "Baskerville", sans-serif;
  text-transform: uppercase;
}
#events .event .date a,
#events-static .event .date a {
  color: inherit;
  text-decoration: none;
}
#events .event .date a:hover,
#events-static .event .date a:hover {
  text-decoration: none;
}
#events .event h3,
#events-static .event h3 {
  font: 400 24px/1 "Baskerville", sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-align: center;
}
#events .event p,
#events-static .event p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #events .event p,
#events-static .event p {
    font-size: 14px;
  }
}
#events .event .read-more-link,
#events-static .event .read-more-link {
  display: block;
  margin-top: 10px;
}
#events .event .copy,
#events-static .event .copy {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #events .event .copy,
#events-static .event .copy {
    padding: 0 10px;
  }
}
#events .slideshow-pagination,
#events-static .slideshow-pagination {
  margin: 30px 0 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-pagination,
#events-static .slideshow-pagination {
    display: none;
  }
}
#events .slideshow-pagination > *,
#events-static .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #000;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
#events .slideshow-pagination > *:hover, #events .slideshow-pagination > *.active,
#events-static .slideshow-pagination > *:hover,
#events-static .slideshow-pagination > *.active {
  background: #a3afc3;
}

.rooms-module {
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .rooms-module {
    display: block;
  }
}
.rooms-module #content-submenu {
  flex-shrink: 0;
}
@media only screen and (max-width: 1023px) {
  .rooms-module #content-submenu {
    top: 100px;
    padding: 1.5rem 0;
    background: #fff;
    border-bottom: thin solid #cfcfcf;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-module #content-submenu {
    top: 60px;
  }
}
.rooms-module h1,
.rooms-module h2 {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .rooms-module h1,
.rooms-module h2 {
    text-align: center;
  }
}
.rooms-module .page-copy {
  padding: 0 2rem;
  margin: 0 0 4rem;
}
@media only screen and (max-width: 1023px) {
  .rooms-module .page-copy {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-module .page-copy {
    padding: 0 2rem;
  }
}
.rooms-module .categories-list {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: -0.8px;
}
.rooms-module .categories-list h3,
.rooms-module .categories-list h4 {
  font: 24px/1 "Baskerville", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 2rem;
}
@media only screen and (max-width: 767px) {
  .rooms-module .categories-list h3,
.rooms-module .categories-list h4 {
    font-size: 20px;
  }
}
.rooms-module .categories-list h3 {
  font-size: 40px;
}
@media only screen and (max-width: 767px) {
  .rooms-module .categories-list h3 {
    font-size: 28px;
  }
}
.rooms-module .categories-list .category-info {
  display: block;
  padding: 0 2rem;
}
@media only screen and (max-width: 1023px) {
  .rooms-module .categories-list .category-info {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-module .categories-list .category-info {
    padding: 0 2rem;
  }
}
.rooms-module .categories-list .rooms-category {
  margin-bottom: 5rem;
}
.rooms-module .categories-list .rooms-category:last-child {
  margin-bottom: 0;
}

.room-gallery-slideshow {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
.room-gallery-slideshow .slideshow-wrapper {
  height: 100%;
  display: flex;
}
.room-gallery-slideshow .slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 10;
}
.room-gallery-slideshow .slideshow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 37px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 20;
  background: none;
}
.room-gallery-slideshow .slideshow-button.swiper-button-disabled {
  opacity: 0.2;
}
.room-gallery-slideshow .slideshow-button.swiper-button-lock {
  display: none;
}
.room-gallery-slideshow .slideshow-button svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  transition: stroke 350ms ease-in-out;
  pointer-events: none;
}
.room-gallery-slideshow .slideshow-button:hover svg {
  stroke: #fff;
}
.room-gallery-slideshow .slideshow-button:active svg {
  stroke: #e6e6e6;
  transition-duration: 50ms;
}
.room-gallery-slideshow .slideshow-button.previous {
  left: 30px;
}
@media only screen and (max-width: 767px) {
  .room-gallery-slideshow .slideshow-button.previous {
    left: 20px;
  }
}
.room-gallery-slideshow .slideshow-button.next {
  right: 30px;
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 1023px) {
  .room-gallery-slideshow .slideshow-button.next {
    right: 20px;
  }
}
.room-gallery-slideshow .slideshow-button.big {
  width: 39px;
  height: 65px;
}
@media only screen and (max-width: 1023px) {
  .room-gallery-slideshow .slideshow-button.big {
    top: auto;
    transform: none;
    bottom: 20px;
    width: 7px;
    height: 14px;
  }
  .room-gallery-slideshow .slideshow-button.big.next {
    transform: rotate(180deg);
  }
}
.room-gallery-slideshow .slideshow-button.big svg {
  stroke-width: 0.875;
}
@media only screen and (max-width: 1023px) {
  .room-gallery-slideshow .slideshow-button.big svg {
    stroke-width: 5.2;
  }
}

.rooms-module,
.rooms-module-category {
  width: 100%;
}
.rooms-module .rooms-list,
.rooms-module-category .rooms-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.rooms-module .rooms-list .rooms-entry,
.rooms-module-category .rooms-list .rooms-entry {
  width: calc(50% - 5px);
  margin-bottom: 2rem;
}
@media only screen and (max-width: 767px) {
  .rooms-module .rooms-list .rooms-entry,
.rooms-module-category .rooms-list .rooms-entry {
    width: 100%;
    margin-bottom: 3rem;
  }
}
.rooms-module .rooms-list .rooms-entry .image,
.rooms-module-category .rooms-list .rooms-entry .image {
  display: block;
  position: relative;
  height: 50rem;
  margin: 0 0 1.5rem;
  background-color: #cfcfcf;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {
  .rooms-module .rooms-list .rooms-entry .image,
.rooms-module-category .rooms-list .rooms-entry .image {
    height: 36rem;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-module .rooms-list .rooms-entry .image,
.rooms-module-category .rooms-list .rooms-entry .image {
    height: 30rem;
  }
}
.rooms-module .rooms-list .rooms-entry .description,
.rooms-module-category .rooms-list .rooms-entry .description {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1023px) {
  .rooms-module .rooms-list .rooms-entry .description,
.rooms-module-category .rooms-list .rooms-entry .description {
    padding: 0 1rem;
  }
}
.rooms-module .rooms-list .rooms-entry .description h3,
.rooms-module-category .rooms-list .rooms-entry .description h3 {
  width: auto;
  font: 3rem/3rem "Baskerville", sans-serif;
  letter-spacing: -0.5px;
  text-transform: none;
  margin: 0;
  text-align: left;
}
.rooms-module .rooms-list .rooms-entry .description .read-more,
.rooms-module-category .rooms-list .rooms-entry .description .read-more {
  flex-shrink: 0;
  width: auto;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .rooms-module .rooms-list .rooms-entry .description .read-more,
.rooms-module-category .rooms-list .rooms-entry .description .read-more {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper {
  text-align: left;
  margin-top: 20px;
}
@media only screen and (max-width: 1023px) {
  .rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper {
    padding: 0 1rem;
  }
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour {
  color: #000;
  letter-spacing: 0;
  transition: color 350ms ease-in-out;
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour:hover,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour:hover {
  color: #a3afc3;
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour:hover .rooms-360-icon svg,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour:hover .rooms-360-icon svg {
  fill: #a3afc3;
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour .rooms-360-icon,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour .rooms-360-icon {
  margin-left: 3px;
}
.rooms-module .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour .rooms-360-icon svg,
.rooms-module-category .rooms-list .rooms-entry .vitrual-tour-button-wrapper .view-tour .rooms-360-icon svg {
  fill: #000;
  transition: fill 350ms ease-in-out;
}

.rooms .categories-list {
  margin-bottom: 30px;
  padding: 0 20px;
  overflow: hidden;
}
.rooms .categories-list button:not(.slideshow-button) {
  position: relative;
  text-align: left;
  float: left;
  padding: 0 0 0 16px;
  margin: 0 40px 20px 0;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  border: 0;
  background: none;
}
@media (max-width: 550px) {
  .rooms .categories-list button:not(.slideshow-button) {
    width: 50%;
    margin-right: 0;
    padding: 0 10px 0 16px;
    font-size: 15px;
  }
}
.rooms .categories-list button:not(.slideshow-button):before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
  background: #000;
}
.rooms .categories-list button:not(.slideshow-button):after {
  content: "";
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 4px;
  background: #fff;
}
.rooms .categories-list button:not(.slideshow-button).active {
  color: #000;
  border: 0;
}
.rooms .categories-list button:not(.slideshow-button).active:before {
  background: #a3afc3;
}
.rooms .categories-list button:not(.slideshow-button).active:after {
  display: block;
}
.rooms .categories-descr {
  padding: 0 20px;
}
.rooms .categories-descr .category-descr {
  display: none;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}

.content-headings h1,
.content-headings h2 {
  text-align: left;
}

@media only screen and (max-width: 1023px) {
  .room {
    text-align: left;
  }
}
.room .inner-room-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  .room .inner-room-wrapper {
    justify-content: unset;
    flex-flow: column;
    text-align: left;
  }
}
.room .room-content-block {
  width: 100%;
}
.room .room-content-block .links .button {
  border-width: 1px;
}
.room .room-content-block .links .button:hover {
  color: #fff;
  background: #000;
}
@media only screen and (max-width: 1023px) {
  .room .room-content-block p {
    font-size: 14px;
  }
  .room .room-content-block .links .button {
    padding: 15px 25px;
    font-size: 16px;
    min-width: 0;
  }
}
.room .room-acm-block {
  width: 100%;
  padding-left: 20%;
}
@media only screen and (max-width: 1023px) {
  .room .room-acm-block {
    padding-left: 0;
    margin-top: 20px;
  }
}
.room .room-acm-block h4 {
  color: #000;
  font: 500 1.6rem/1 "AauxPro", sans-serif;
  letter-spacing: 1.49px;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 767px) {
  .room .room-acm-block h4 {
    margin-bottom: 20px;
  }
}
.room .room-acm-block ul {
  margin-left: 0;
}
.room .room-acm-block ul > li {
  margin-bottom: 20px;
  list-style: none;
}
.room .room-acm-block ul > li:before {
  content: "•";
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  .room .room-acm-block ul > li {
    font-size: 14px;
  }
}
.room .amenities {
  clear: both;
  margin: 30px 0;
}
.room .amenities .rooms-icon {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 20px;
  width: 49%;
}
.room .amenities .rooms-icon:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  margin-right: 20px;
}
.room .room-gallery-block {
  margin: 80px 0 100px;
  position: relative;
  vertical-align: top;
  display: block;
  overflow: hidden;
  height: 678px;
}
.room .room-gallery-block .rooms-item-gallery {
  width: 50%;
  padding: 7px;
  display: inline-block;
  vertical-align: top;
  text-indent: -9999px;
  font-size: 0;
  cursor: pointer;
}
.room .room-gallery-block .rooms-item-gallery .thumb {
  display: block;
  position: relative;
  margin: 0;
  height: 339px;
}
.room .room-gallery-block .rooms-item-gallery:nth-child(3) {
  display: inline-block;
  position: absolute;
  top: 0;
}
.room .room-gallery-block .rooms-item-gallery:nth-child(3) .thumb {
  height: 678px;
}
@media only screen and (max-width: 767px) {
  .room .room-gallery-block {
    margin: 30px 0 40px;
    height: auto;
  }
  .room .room-gallery-block .rooms-item-gallery {
    width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }
  .room .room-gallery-block .rooms-item-gallery:last-child {
    margin-bottom: 0;
  }
  .room .room-gallery-block .rooms-item-gallery .thumb {
    height: 300px;
  }
  .room .room-gallery-block .rooms-item-gallery:nth-child(3) {
    position: relative;
    display: block;
  }
  .room .room-gallery-block .rooms-item-gallery:nth-child(3) .thumb {
    height: 300px;
  }
}
.room .links {
  margin: 20px 0;
}

#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 "Baskerville", sans-serif;
  margin: 40px 0;
  color: #000;
  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: 1023px) {
  #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 "Baskerville", 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;
  }
}

#feeds {
  position: relative;
  padding: 50px 0;
  z-index: 10;
}
#feeds h2 {
  font: 200 36px/1.2 "Baskerville", sans-serif;
  margin-bottom: 30px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
#feeds.loading {
  min-height: 300px;
}
#feeds.loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #a3afc3;
  border-bottom-color: #a3afc3;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#feeds .feed-content {
  overflow: hidden;
  position: relative;
}
#feeds .feed-items {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#feeds .feed-item {
  position: relative;
  width: calc((100% - 60px) / 4);
  height: auto;
  float: left;
  font: italic 14px/18px "AauxPro", sans-serif;
  overflow: hidden;
  opacity: 1;
  text-align: left;
  background: #ebebeb;
  color: #6F6F6F;
  transition: opacity 350ms ease-in-out;
  margin-bottom: 20px;
}
#feeds .feed-item .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
#feeds .feed-item:hover {
  opacity: 0.86;
}
@media (max-width: 449px) {
  #feeds .feed-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (min-width: 450px) and (max-width: 767px) {
  #feeds .feed-item {
    width: calc((100% - 10px) / 2);
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  #feeds .feed-item {
    width: calc((100% - 30px) / 3);
    margin-bottom: 10px;
  }
}
@media (min-width: 1440px) and (max-width: 1799px) {
  #feeds .feed-item {
    width: calc((100% - 80px) / 5);
  }
}
@media (min-width: 1800px) {
  #feeds .feed-item {
    width: calc((100% - 50px) / 5);
  }
}
#feeds .feed-item:before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  right: 10px;
  top: 10px;
  z-index: 5;
}
#feeds .feed-item.invisible {
  opacity: 0;
}
#feeds .feed-item .feed-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
#feeds .feed-item .feed-thumb div {
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 0.6;
}
#feeds .feed-item.instagram .feed-thumb div {
  opacity: 1;
}
#feeds .feed-item .feed-descr {
  position: absolute;
  bottom: 0;
  top: 0;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  font: 14px/18px "AauxPro", sans-serif;
  text-align: left;
  color: #ffffff;
}
@media only screen and (min-width: 1800px) {
  #feeds .feed-item .feed-descr {
    padding: 20px;
  }
}
#feeds .feed-item .feed-title {
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 350ms ease-in-out;
  padding-right: 30px;
}
#feeds .feed-item .feed-date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
#feeds .feed-item .feed-text {
  display: inline-block;
  font-family: "AauxPro", sans-serif;
  font-weight: 200;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .feed-item.instagram {
  background: #833ab4;
}
#feeds .feed-item.instagram:before {
  background-position: 0 0;
}
#feeds .feed-item.instagram .feed-descr {
  display: none;
}
#feeds .feed-item.instagram a {
  color: inherit;
}
#feeds .feed-item.facebook {
  background: #3b5998;
}
#feeds .feed-item.facebook:before {
  background-position: -50px 0;
}
#feeds .feed-item.twitter {
  background: #657786;
}
#feeds .feed-item.twitter:before {
  background-position: -100px 0;
}
#feeds .feed-item.blog:before {
  background-position: -150px 0;
}
#feeds .feed-item.blog h3 {
  color: #ACA394;
  padding-right: 30px;
  margin-bottom: 7px;
  transition: all 350ms ease-in-out;
}
#feeds .feed-item.blog h3:hover {
  opacity: 0.7;
}
#feeds .feed-item.blog .feed-descr {
  color: #5c574f;
}
#feeds .button {
  color: #000;
  border: none;
  text-transform: uppercase;
  background-color: transparent;
  font-size: 27px;
  font-weight: 500;
  padding: 16px 4px;
  width: auto;
  height: auto;
}
#feeds .feed-controls {
  display: block;
  text-align: center;
}

/* COMMON */
.venues .categories-descr .category-descr {
  display: none;
}
.venues .categories-descr .category-descr.active {
  display: block;
}

.single-venue .venue-thumb img {
  display: block;
  width: 100%;
}
.single-venue .layouts {
  margin: 0 0 15px;
}
.single-venue .layouts span {
  display: inline-block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  position: relative;
  cursor: pointer;
  border-left: 1px solid #ebebeb;
}
.single-venue .layouts span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #898989;
}
.single-venue .layouts span:hover {
  background: #e57c00;
}
.single-venue .layouts span:hover:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover {
    background: none;
  }
  .single-venue .layouts span:hover:before {
    color: #898989;
  }
}
.single-venue .layouts span:after {
  content: attr(data-name);
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  white-space: nowrap;
  padding: 0 20px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0.2s;
  text-transform: uppercase;
}
.single-venue .layouts span:hover:after {
  opacity: 1;
  height: 60px;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .single-venue .layouts span:hover:after {
    display: none;
  }
}

/* Template 1 */
.venue.template1 {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
  border: 1px solid #ebebeb;
}
.venue.template1 .background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 390px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background {
    position: relative;
    height: 300px;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
  }
}
.venue.template1 .background .venue-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template1 .background .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  transition: top 0s linear 0.1s, opacity 0.1s linear 0s;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery.active {
  opacity: 1;
  top: 0;
  transition: top 0s linear 0s, opacity 0.1s linear 0s;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .caption {
  position: absolute;
  display: block;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 42px;
  overflow: hidden;
  text-transform: uppercase;
  max-width: 80%;
  z-index: 2;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container figure {
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container figure img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets {
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 10px;
  z-index: 4;
  white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets {
    right: auto;
    left: 20px;
  }
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets .swiper-pagination-bullet {
  display: inline-block;
  vertical-align: top;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  background: #fff;
  cursor: pointer;
}
.venue.template1 .background .amenities-sliders .room-layout-gallery .swiper-container .bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: red;
}
.venue.template1 .buttons {
  position: absolute;
  bottom: 0;
  left: calc(100% + 60px);
  z-index: 3;
  white-space: nowrap;
  font-size: 0;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons {
    position: static;
    margin-top: 10px;
  }
}
.venue.template1 .buttons a {
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a {
    width: auto;
  }
}
.venue.template1 .buttons a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a + a {
    margin-left: 0;
  }
}
.venue.template1 .buttons a + a:before {
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  left: -1px;
  bottom: 0px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a + a:before {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  .venue.template1 .buttons a + a {
    margin-left: 10px;
  }
}
.venue.template1 .content {
  width: 390px;
  padding: 40px 25px 15px 30px;
  color: #524a48;
  font-size: 16px;
  line-height: 22px;
  background: #fff;
  font-weight: 200;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content {
    width: auto;
    background: transparent;
    z-index: 5;
    position: relative;
    box-sizing: border-box;
    padding-top: 60px;
  }
}
.venue.template1 .content h3 {
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
.venue.template1 .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template1 .content h3 a:hover {
  color: #4B494C;
}
.venue.template1 .content h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 20px 0;
}
.venue.template1 .content .links {
  margin-top: 15px;
  height: 30px;
  width: 360px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content .links {
    position: static;
    width: 100%;
    height: auto;
  }
}
.venue.template1 .content .links a {
  display: block;
  float: left;
  height: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 17px;
}
.venue.template1 .content .links a:first-child {
  padding-left: 0;
}
.venue.template1 .content .links a:last-child {
  padding-right: 0;
}
.venue.template1 .content .links a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .content .links a {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    margin-top: 20px;
    font-size: 14px;
  }
}
.venue.template1 .layouts {
  position: absolute;
  top: 0;
  left: 0;
  text-align: right;
  font-size: 0;
  z-index: 4;
  height: 100%;
}
.venue.template1 .layouts.multiline {
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts {
    right: 0;
    left: auto;
  }
}
.venue.template1 .layouts .main-list {
  width: 60px;
  height: 100%;
  white-space: nowrap;
  overflow-y: hidden;
  float: left;
  background: #fff;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .main-list {
    float: right;
  }
}
.venue.template1 .layouts .additional-list {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 120px;
  opacity: 0;
  line-height: 0;
  padding: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.venue.template1 .layouts .additional-list span {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .additional-list {
    left: auto;
    right: 0;
  }
}
.venue.template1 .layouts .toggle {
  display: none;
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}
.venue.template1 .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template1 .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #4B494C;
  transform: rotate(90deg);
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts .toggle {
    right: 0;
  }
}
.venue.template1 .layouts.multiline .toggle {
  display: block;
}
.venue.template1 .layouts.multiline.expand .toggle div:before {
  background: #4B494C;
  transform: translate(-50%, -50%) rotate(0deg);
  height: 2px;
  margin-top: 1px;
  margin-left: 0;
  color: #898989;
}
.venue.template1 .layouts span {
  display: block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  cursor: pointer;
  text-align: center;
}
.venue.template1 .layouts span:before {
  line-height: 60px;
}
.venue.template1 .layouts span:hover:before, .venue.template1 .layouts span.active:before {
  color: #0033b4;
}
.venue.template1 .layouts span.rooms-icon {
  border-bottom: 1px solid #ebebeb;
  border-left: 1px solid #ebebeb;
}
.venue.template1 .layouts.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.venue.template1 .layouts.expand .toggle div {
  transform: rotate(45deg);
}
.venue.template1 .layouts.expand .toggle div:before, .venue.template1 .layouts.expand .toggle div:after {
  content: "";
  display: block;
  background: #4B494C;
  position: absolute;
}
.venue.template1 .layouts.expand .toggle div:before {
  width: 30px;
  height: 2px;
  top: 29px;
  right: 15px;
}
.venue.template1 .layouts.expand .toggle div:after {
  width: 2px;
  height: 30px;
  top: 15px;
  right: 29px;
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .layouts.expand span > .rooms-icon-text {
    right: 120px;
  }
}

/* Template 2 */
.venue.template2 {
  overflow: hidden;
  margin: 45px 0;
}
.venue.template2 .tab-buttons {
  overflow: hidden;
}
.venue.template2 .tab-buttons span {
  display: block;
  float: left;
  width: 120px;
  height: 45px;
  line-height: 45px;
  color: #aa9b7c;
  font-size: 16px;
  font-weight: 700;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
  background: #f6f6f3;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .tab-buttons span {
    width: 33.3%;
  }
}
.venue.template2 .tab-buttons span:hover, .venue.template2 .tab-buttons span.active {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .tab-buttons span .hide-on-mobile {
    display: none;
  }
}
.venue.template2 .content {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 10px 10px 10px 25px;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content {
    padding-left: 10px;
  }
}
.venue.template2 .content .tabs {
  float: left;
  min-height: 350px;
  width: 435px;
  padding-top: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venue.template2 .content .tabs {
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content .tabs {
    float: none;
    width: 100%;
    min-height: 0;
    margin-bottom: 20px;
    padding-left: 10px;
  }
}
.venue.template2 .content .tabs .tab {
  display: none;
}
.venue.template2 .content .tabs .tab.active {
  display: block;
}
.venue.template2 .content .tabs h3 {
  font-size: 24px;
  margin: 0 0 15px;
}
.venue.template2 .content .tabs h3 a {
  color: inherit;
  text-decoration: none;
}
.venue.template2 .content .tabs h3 a:hover {
  text-decoration: underline;
}
.venue.template2 .content .tabs h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 10px;
}
.venue.template2 .content .tabs p {
  font-size: 13px;
  line-height: 22px;
  color: #7d7d7d;
}
.venue.template2 .content .tabs .layouts {
  overflow: hidden;
}
.venue.template2 .content .tabs .layouts span {
  width: 50%;
  float: left;
  font-size: 13px;
  color: #7d7d7d;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
}
.venue.template2 .content .tabs .layouts span:before {
  vertical-align: middle;
  margin-right: 20px;
  font-size: 40px;
  color: #aa9b7c;
}
@media only screen and (max-width: 1023px) {
  .venue.template2 .content .tabs .layouts span:before {
    font-size: 30px;
  }
}
.venue.template2 .content .background {
  position: absolute;
  top: 10px;
  left: 465px;
  right: 10px;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .venue.template2 .content .background {
    left: 53%;
  }
}
@media only screen and (max-width: 767px) {
  .venue.template2 .content .background {
    position: static;
    height: 200px;
    width: 100%;
  }
}
.venue.template2 .content .background img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template2 .buttons {
  background: #013668;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons {
    padding: 8px 0;
  }
}
.venue.template2 .buttons .inner-wrapper {
  float: right;
  overflow: hidden;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons .inner-wrapper {
    float: none;
  }
}
.venue.template2 .buttons .inner-wrapper a {
  display: block;
  float: left;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 0 30px;
}
.venue.template2 .buttons .inner-wrapper a + a {
  border-left: 1px solid #26537b;
}
@media only screen and (max-width: 767px) {
  .venue.template2 .buttons .inner-wrapper a {
    padding: 0 10px;
    float: none;
    display: inline-block;
    height: 20px;
    line-height: 20px;
    margin: 10px 0;
  }
  .venue.template2 .buttons .inner-wrapper a:last-child {
    border-right: 1px solid #26537b;
  }
}
.venue.template2 .buttons .inner-wrapper a:hover {
  text-decoration: underline;
}

/* VENUES TEMPLATE 3 */
.venue.template3 {
  margin: 40px 0;
  overflow: hidden;
}
.venue.template3 .venue-phone {
  display: block;
  float: right;
  width: 290px;
  height: 50px;
  border-bottom: 1px solid #ebebeb;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  position: relative;
  background: #f8f8f8;
}
.venue.template3 .venue-phone:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 23px;
  width: 23px;
  background: url(images/phone.svg) no-repeat 0 0;
  margin-right: 13px;
}
.venue.template3 .inquiry {
  display: block;
  float: right;
  width: 290px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  position: relative;
  background: #e57c00;
  color: #fff;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .inquiry {
    float: none;
    margin: 0 auto;
  }
}
.venue.template3 .content-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.venue.template3 .content-wrapper .venue-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 290px;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .venue-thumb {
    position: static;
    height: 200px;
    width: 100%;
  }
}
.venue.template3 .content-wrapper .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template3 .content-wrapper .content {
  width: 290px;
  padding: 15px 40px 120px 20px;
  float: right;
  font-size: 14px;
  line-height: 22px;
  color: #a8a8a7;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content {
    width: 100%;
    padding-bottom: 20px;
  }
}
.venue.template3 .content-wrapper .content h3 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: normal;
}
.venue.template3 .content-wrapper .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template3 .content-wrapper .content h3 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content .amenities {
    text-align: center;
  }
}
.venue.template3 .content-wrapper .content .amenities span {
  display: inline-block;
  height: 36px;
  width: 36px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  font-size: 25px;
  position: relative;
  margin: 0 13px 13px 0;
}
.venue.template3 .content-wrapper .content .amenities span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.venue.template3 .content-wrapper .content .links {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .venue.template3 .content-wrapper .content .links {
    position: static;
  }
}
.venue.template3 .content-wrapper .content .links a {
  display: inline-block;
  vertical-align: middle;
  height: 14px;
  line-height: 14px;
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}
.venue.template3 .content-wrapper .content .links a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #979797;
}
.venue.template3:nth-child(even) .venue-phone {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template3:nth-child(even) .venue-phone {
    float: none;
    margin: 0 auto;
  }
}
.venue.template3:nth-child(even) .content-wrapper .venue-thumb {
  left: 290px;
  right: 0;
}
.venue.template3:nth-child(even) .content-wrapper .content {
  padding: 15px 20px 120px 20px;
  float: left;
}
.venue.template3:nth-child(even) .inquiry {
  float: left;
}
@media only screen and (max-width: 1023px) {
  .venue.template3:nth-child(even) .inquiry {
    float: none;
    margin: 0 auto;
  }
}

/* TEMPLATE 4 */
.venue.template4 {
  width: 100%;
  margin-bottom: 40px;
}
.venue.template4 .background {
  overflow: hidden;
  position: relative;
}
.venue.template4 .background .venue-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.venue.template4 .background .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template4 .background .content {
  float: left;
  width: 390px;
  padding: 30px 40px 40px;
  color: #fff;
  font-size: 15px;
  line-height: 22px;
  background: rgba(0, 0, 0, 0.6);
  font-weight: 200;
  z-index: 2;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .content {
    float: none;
    width: 100%;
    padding-bottom: 100px;
  }
}
.venue.template4 .background .content h3 {
  font-size: 24px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}
.venue.template4 .background .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template4 .background .content h4 {
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
  font-weight: 400;
  margin: 20px 0;
  color: #fff;
}
.venue.template4 .background .buttons {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .buttons {
    bottom: 10px;
    top: auto;
    left: 0;
    width: 100%;
  }
}
.venue.template4 .background .buttons a {
  float: left;
  border-radius: 0;
}
.venue.template4 .background .buttons a + a {
  margin-left: 1px;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .background .buttons a {
    display: inline-block;
    float: none;
  }
  .venue.template4 .background .buttons a + a {
    margin-left: 10px;
  }
}
.venue.template4 .bottom {
  position: relative;
  height: 62px;
  background: #fff;
  border: 1px solid #ebebeb;
  z-index: 3;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom {
    height: auto;
  }
}
.venue.template4 .bottom .links {
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 360px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom .links {
    position: static;
    width: 100%;
    border-bottom: 1px solid #ebebeb;
  }
}
.venue.template4 .bottom .links a {
  display: block;
  float: left;
  height: 60px;
  width: 33%;
  font-size: 15px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.venue.template4 .bottom .links a + a {
  border-left: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .bottom .links a {
    display: inline-block;
    width: auto;
    float: none;
    padding: 0 10px;
    height: 20px;
    line-height: 20px;
    margin-top: 20px;
  }
}
.venue.template4 .layouts {
  position: absolute;
  top: 0;
  right: 0;
  left: 390px;
  height: 60px;
  text-align: right;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }
}
.venue.template4 .layouts.multiline {
  right: 60px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts.multiline {
    margin-right: 60px;
  }
}
.venue.template4 .layouts .main-list {
  width: 100%;
  height: 100%;
  position: relative;
  white-space: nowrap;
}
.venue.template4 .layouts .additional-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  line-height: 0;
  padding: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.venue.template4 .layouts .toggle {
  display: none;
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 60px;
  height: 60px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #fff;
}
.venue.template4 .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template4 .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.venue.template4 .layouts.multiline .toggle {
  display: block;
}
.venue.template4 .layouts span {
  display: inline-block;
  width: 60px;
  height: 60px;
  font-size: 35px;
  position: relative;
  cursor: pointer;
}
.venue.template4 .layouts span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #898989;
}
.venue.template4 .layouts span:hover {
  background: #e57c00;
}
.venue.template4 .layouts span:hover:before {
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts span:hover {
    background: none;
  }
  .venue.template4 .layouts span:hover:before {
    color: #898989;
  }
}
.venue.template4 .layouts span + span {
  border-left: 1px solid #ebebeb;
}
.venue.template4 .layouts span:after {
  content: attr(data-name);
  display: block;
  position: absolute;
  bottom: 100%;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  font-size: 20px;
  font-weight: 700;
  font-family: "AauxPro", sans-serif;
  color: #fff;
  line-height: 60px;
  white-space: nowrap;
  padding: 0 20px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0.2s;
  text-transform: uppercase;
}
.venue.template4 .layouts span:hover:after {
  opacity: 1;
  height: 60px;
  transition: opacity 0.2s ease-in-out 0s, height 0s ease-in-out 0s;
}
@media only screen and (max-width: 767px) {
  .venue.template4 .layouts span:hover:after {
    display: none;
  }
}
.venue.template4 .layouts.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.venue.template4 .layouts.expand .toggle div {
  transform: rotate(45deg);
}
.venue.template4 .layouts.expand .toggle div:before, .venue.template4 .layouts.expand .toggle div:after {
  content: "";
  display: block;
  background: #ebebeb;
  position: absolute;
}
.venue.template4 .layouts.expand .toggle div:before {
  width: 30px;
  height: 2px;
  top: 29px;
  right: 15px;
}
.venue.template4 .layouts.expand .toggle div:after {
  width: 2px;
  height: 30px;
  top: 15px;
  right: 29px;
}

/* VENUES TEMPLATE 5 */
.venue.template5 {
  margin: 80px 0;
}
.venue.template5 .venue-thumb {
  width: 100%;
  height: 300px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .venue-thumb {
    height: 200px;
  }
}
.venue.template5 .venue-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}
.venue.template5 .inner-wrapper {
  height: 140px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper {
    height: auto;
  }
}
.venue.template5 .inner-wrapper .layouts {
  width: 280px;
  height: 140px;
  float: left;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts {
    width: 100%;
    height: auto;
    float: none;
  }
}
.venue.template5 .inner-wrapper .layouts .main-list {
  position: relative;
  z-index: 2;
  height: 140px;
  width: 280px;
  overflow: hidden;
  background: #ebebeb;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts .main-list {
    height: auto;
    width: 100%;
    background: #f6f6f6;
  }
}
.venue.template5 .inner-wrapper .layouts .additional-list {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.venue.template5 .inner-wrapper .layouts .additional-list span {
  border-right: 1px solid #ebebeb;
  border-left: 0;
}
.venue.template5 .inner-wrapper .layouts .toggle {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 70px;
  margin: 0;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  background: #ebebeb;
}
.venue.template5 .inner-wrapper .layouts .toggle div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.venue.template5 .inner-wrapper .layouts .toggle div:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ae9c58;
}
.venue.template5 .inner-wrapper .layouts .toggle div:hover:before {
  color: #000;
}
.venue.template5 .inner-wrapper .layouts.multiline .toggle {
  display: block;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts.multiline .toggle {
    display: none;
  }
}
.venue.template5 .inner-wrapper .layouts span {
  display: block;
  width: 56px;
  height: 70px;
  float: left;
  border-left: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
  line-height: 69px;
  text-align: center;
}
.venue.template5 .inner-wrapper .layouts span:last-child {
  border-right: 1px solid #f6f6f6;
  width: 57px;
}
.venue.template5 .inner-wrapper .layouts span:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 25px;
  color: #8b8b8b;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts span {
    height: 50px;
    line-height: 50px;
  }
}
.venue.template5 .inner-wrapper .layouts.multiline.expand .additional-list {
  display: block;
  background: #f6f6f6;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .layouts.multiline.expand .additional-list {
    display: none;
  }
}
.venue.template5 .inner-wrapper .layouts.multiline.expand .toggle {
  bottom: 1px;
  height: 69px;
}
.venue.template5 .inner-wrapper .content {
  position: absolute;
  left: 280px;
  bottom: 0;
  right: 0;
  background: #fff;
  padding: 15px 20px 20px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content {
    position: static;
  }
}
.venue.template5 .inner-wrapper .content h3 {
  color: #ae9c58;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 15px;
}
.venue.template5 .inner-wrapper .content h3 a {
  text-decoration: none;
  color: inherit;
}
.venue.template5 .inner-wrapper .content h3 a a:hover {
  text-decoration: underline;
}
.venue.template5 .inner-wrapper .content p {
  font-size: 14px;
  line-height: 22px;
  color: #a8a8a7;
  margin: 10px 0;
}
.venue.template5 .inner-wrapper .content .links {
  overflow: hidden;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .links {
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .links > a {
  float: left;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  color: #ae9c58;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .links > a {
    float: none;
    display: inline-block;
  }
}
.venue.template5 .inner-wrapper .content .links > a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #ae9c58;
}
.venue.template5 .inner-wrapper .content .amenities {
  margin-right: 180px;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .amenities {
    margin-right: 0;
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .amenities span {
  display: inline-block;
  height: 36px;
  width: 36px;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  font-size: 16px;
  position: relative;
  margin: 0 9px 9px 0;
  color: #151515;
}
.venue.template5 .inner-wrapper .content .amenities span:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.venue.template5 .inner-wrapper .content .buttons {
  float: right;
}
@media only screen and (max-width: 767px) {
  .venue.template5 .inner-wrapper .content .buttons {
    float: none;
    margin: 20px 0;
    text-align: center;
  }
}
.venue.template5 .inner-wrapper .content .buttons a {
  color: #ae9c58;
  font-size: 15px;
  text-transform: uppercase;
  padding: 0 25px;
  border-radius: 3px;
  border: 1px solid #ae9c58;
  background: none;
}
.venue.template5 .inner-wrapper .content .buttons a:hover {
  background: #ae9c58;
  color: #fff;
}

#footer {
  background-image: url("../images/footer-pattern.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  font: 13px "Baskerville", sans-serif;
  color: #fff;
  background-color: #000;
  text-align: center;
  z-index: 1;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer a:hover {
  color: #a3afc3;
}
#footer .newsletter-wrapper {
  max-width: 1680px;
  display: flex;
  padding: 44px;
  margin: 48px auto;
  border: 2px solid #a3afc3;
  flex-direction: column;
  align-items: center;
  font-family: "NiveauGrotesk", sans-serif;
}
@media only screen and (max-width: 1023px) {
  #footer .newsletter-wrapper {
    padding: 20px;
    margin: 48px 20px;
  }
}
.stayconnected #footer .newsletter-wrapper {
  display: none;
}
@media (max-width: 1740px) {
  #footer .newsletter-wrapper {
    margin: 48px 24px;
  }
}
#footer .newsletter-wrapper .footer-newsletter-header {
  text-transform: uppercase;
  font-family: "Baskerville", sans-serif;
  font-size: 35px;
  font-weight: 300;
  line-height: 1;
}
#footer .newsletter-wrapper #newsletter {
  font-family: "AauxPro", sans-serif;
  width: 100%;
}
#footer .newsletter-wrapper #newsletter .newsletter-row {
  display: flex;
  margin: 20px 0;
  justify-content: space-between;
}
@media only screen and (max-width: 1023px) {
  #footer .newsletter-wrapper #newsletter .newsletter-row {
    flex-direction: column;
  }
}
#footer .newsletter-wrapper #newsletter .newsletter-row em {
  color: #000;
  margin-right: 0px;
}
#footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper {
  position: relative;
  width: calc(25% - 18px);
}
#footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper.short {
  width: calc(12.5% - 18px);
}
@media only screen and (max-width: 1023px) {
  #footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper {
    width: 100%;
    margin-bottom: 10px;
  }
  #footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper.short {
    width: 100%;
  }
}
#footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper .footer-stay-connected-input {
  display: block;
  background-color: #fff;
  height: 85px;
  padding: 0 10px;
  width: 100%;
}
#footer .newsletter-wrapper #newsletter .newsletter-row .input-wrapper label {
  font-family: "Gotham WF", sans-serif;
  font-weight: 300;
  position: absolute;
  color: #000;
  left: 5%;
  top: 10px;
  font-size: 11px;
  line-height: 1.2;
}
#footer .newsletter-wrapper #newsletter .newsletter-row .footer-newsletter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
}
#footer .newsletter-wrapper #newsletter .newsletter-row .button {
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  width: calc(12.5% - 18px);
  background-color: #000;
  border-color: #a3afc3;
}
#footer .newsletter-wrapper #newsletter .newsletter-row .button:hover {
  background-color: #a3afc3;
}
@media screen and (max-width: 1280px) {
  #footer .newsletter-wrapper #newsletter .newsletter-row .button {
    width: auto;
  }
}
@media only screen and (max-width: 1023px) {
  #footer .newsletter-wrapper #newsletter .newsletter-row .button {
    width: 100%;
  }
}
#footer .newsletter-wrapper #newsletter .privacy-policy {
  position: relative;
  display: flex;
  font-size: 19px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  justify-content: center;
  align-items: center;
  font-weight: 300;
}
#footer .newsletter-wrapper #newsletter .privacy-policy #contact-compliance-footer {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text {
  position: relative;
  left: 0;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-family: "Gotham WF", sans-serif;
  margin-left: 22px;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox:before {
  transition: outline-color 350ms ease-in-out;
  content: "";
  position: absolute;
  top: 7px;
  left: -22px;
  width: 18px;
  height: 18px;
  background-color: white;
  outline: 1px solid transparent;
}
@media only screen and (min-width: 1024px) {
  #footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox:hover:before {
    outline: 1px solid #a3afc3;
  }
  #footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox:active:before {
    transform: scale(1);
  }
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox::after {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  content: "";
  position: absolute;
  top: 10px;
  left: -20px;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox.checked:after {
  opacity: 1;
  visibility: visible;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox.active {
  color: #000;
}
#footer .newsletter-wrapper #newsletter .privacy-policy .tos-text.custom-checkbox a {
  color: #fff;
  text-decoration: underline;
}
#footer .newsletter-wrapper .success-message {
  font-family: "Baskerville", sans-serif;
  color: #a3afc3;
  font-weight: 700;
  font-size: 30px;
}
#footer .logo-wrapper {
  position: relative;
  padding-bottom: 36px;
}
#footer .logo-wrapper:after {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: #a3afc3;
}
#footer .logo-wrapper .logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}
#footer .row:after {
  clear: both;
  content: "";
  display: table;
}
#footer .row.footer-top {
  background-image: url("../images/background-pattern.jpg");
  background-position: center;
  background-repeat: repeat;
  text-align: left;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block {
  padding: 65px 0 90px;
  text-align: center;
  color: #fff;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter {
  position: relative;
  max-width: 1210px;
  margin: 0 auto;
  font-size: 0;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter h2 {
  font: 34px/1 "Baskerville", sans-serif;
  letter-spacing: -0.5px;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter h2.wide {
  margin-bottom: 60px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter h2.wide {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter form {
  width: calc(100% - 191px);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter form {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter form {
    width: 100%;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs {
    flex-direction: column;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input {
  position: relative;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input {
    width: 100%;
    margin-bottom: 20px;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input input {
  font: 17px "Baskerville", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input input {
    font-size: 14px;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field {
  flex: 1 1 100%;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field svg {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input {
  padding: 30px 30px 30px 80px;
  border: thin solid #363e51;
  border-right: none;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input {
    border: thin solid #363e51;
  }
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
  -webkit-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  -moz-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  -moz-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:-ms-input-placeholder {
  color: #fff;
  opacity: 1;
  -ms-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:focus::-webkit-input-placeholder {
  opacity: 0;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:focus:-moz-placeholder {
  opacity: 0;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:focus::-moz-placeholder {
  opacity: 0;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.field input:focus:-ms-input-placeholder {
  opacity: 0;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.submit {
  flex: 1 1 30%;
}
#footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.submit input, #footer .row.footer-top .content-wrapper.newsletter.acm-block #newsletter .inputs .input.submit button {
  display: block;
  border: thin solid #373e5a;
  background: #000;
  padding: 30px 15px;
  font: 17px "Baskerville", sans-serif;
  color: #fff;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
}
#footer .row.footer-main {
  padding: 100px 0 35px;
}
#footer .row.footer-main .footer-logo {
  width: 300px;
  max-width: 90%;
  height: 65px;
  margin: 0 auto;
}
#footer .row.footer-main .footer-logo svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
#footer .row.footer-main #footer-contacts {
  border: 1px solid #a3afc3;
  background: #000;
  width: 740px;
  margin: 0 auto;
  margin-top: 88px;
  margin-bottom: 120px;
  height: 107px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  flex-direction: row;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-main #footer-contacts {
    width: 75%;
    margin-top: 100px;
    margin-bottom: 50px;
    flex-direction: column;
    height: auto;
  }
}
#footer .row.footer-main #footer-contacts p {
  position: relative;
  width: 50%;
  padding: 0 50px;
  font: 19px/27px "AauxPro", sans-serif;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-main #footer-contacts p {
    width: 100%;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 30px 45px;
  }
}
#footer .row.footer-main #footer-contacts p.address span svg {
  width: 14px;
  height: 18px;
}
#footer .row.footer-main #footer-contacts p span {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding-left: 40px;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-main #footer-contacts p span {
    padding-left: 35px;
    top: auto;
    transform: translateY(0);
  }
}
#footer .row.footer-main #footer-contacts p span svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  fill: #a3afc3;
}
#footer .row.footer-main #footer-contacts p a {
  text-decoration: none;
  display: flex;
}
#footer .row.footer-main #footer-contacts p a:hover {
  color: #fff;
  text-decoration: underline;
}
#footer .row.footer-main #footer-contacts p + p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #a3afc3;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-main #footer-contacts p + p:before {
    width: 100%;
    height: 1px;
  }
}
#footer .row.footer-bottom {
  padding: 15px 30px;
}
@media only screen and (max-width: 767px) {
  #footer .row.footer-bottom {
    padding: 20px 25px;
    padding-bottom: 80px;
  }
}

#footer .social-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .social-section {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .social-section {
    width: 100%;
    justify-content: center;
    margin-bottom: 40px;
  }
}
#footer .social-section .socials {
  text-align: center;
  font-size: 0;
  display: flex;
  flex-flow: row nowrap;
}
#footer .social-section .socials li {
  display: inline-block;
  margin: 3px 10px 3px 10px;
}
#footer .social-section .socials li:first-child {
  margin-left: 0;
}
#footer .social-section .socials li:last-child {
  margin-right: 0;
}
#footer .social-section .socials a {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/socials.svg") 0 400px no-repeat;
}
#footer .social-section .socials a.facebook {
  background-position: 0px 0px;
}
#footer .social-section .socials a.facebook:hover {
  background-position: -86px 0px;
}
#footer .social-section .socials a.twitter {
  background-position: 0px -66px;
}
#footer .social-section .socials a.twitter:hover {
  background-position: -86px -66px;
}
#footer .social-section .socials a.instagram {
  background-position: 0px -132px;
}
#footer .social-section .socials a.instagram:hover {
  background-position: -86px -132px;
}
#footer .social-section .socials a.google {
  background-position: 0px -198px;
}
#footer .social-section .socials a.google:hover {
  background-position: -86px -198px;
}
#footer .social-section .socials a.youtube {
  background-position: 0px -264px;
}
#footer .social-section .socials a.youtube:hover {
  background-position: -86px -264px;
}
#footer .social-section .socials a.linkedin {
  background-position: 0px -330px;
}
#footer .social-section .socials a.linkedin:hover {
  background-position: -86px -330px;
}
#footer .social-section .socials a.tripadvisor {
  background-position: 0px -396px;
}
#footer .social-section .socials a.tripadvisor:hover {
  background-position: -86px -396px;
}
#footer .social-section .socials a.pinterest {
  background-position: 0px -462px;
}
#footer .social-section .socials a.pinterest:hover {
  background-position: -86px -462px;
}
#footer .social-section .socials a.gift {
  background-position: 0px -528px;
}
#footer .social-section .socials a.gift:hover {
  background-position: -86px -528px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row {
    flex-direction: column;
  }
}
.footer-bottom-row #footer-menu {
  width: 30%;
  margin-left: 50px;
  max-width: 600px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-menu {
    margin: 0 auto;
    float: none;
    width: 90%;
    padding: 20px 0;
  }
}
.footer-bottom-row #footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-bottom-row #footer-menu ul li {
  display: inline-block;
  width: calc(100% / 2);
  padding-right: 25px;
  padding-bottom: 25px;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-menu ul li {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
    text-align: center;
  }
}
.footer-bottom-row #footer-menu ul li a {
  position: relative;
  display: inline-block;
  font: 19px/1 "AauxPro", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-bottom-row #footer-menu ul li a:before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  position: absolute;
  background: #000;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 350ms ease-in-out;
}
.footer-bottom-row #footer-menu ul li a:hover:before, .footer-bottom-row #footer-menu ul li a.active:before {
  visibility: visible;
  opacity: 1;
  left: -15px;
}
.footer-bottom-row #footer-logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 60%;
  margin-right: 50px;
}
@media only screen and (max-width: 1023px) {
  .footer-bottom-row #footer-logos {
    margin: 0 auto;
    float: none;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-logos {
    width: 100%;
  }
}
.footer-bottom-row #footer-logos li {
  position: relative;
  vertical-align: middle;
  display: table-cell;
  margin: 0 10px;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-logos li {
    padding: 25px 0;
  }
}
.footer-bottom-row #footer-logos li a {
  text-decoration: none;
  opacity: 1;
  transition: 350ms ease-in-out;
}
.footer-bottom-row #footer-logos li a:hover {
  opacity: 0.7;
}
.footer-bottom-row #footer-logos li img {
  width: 100%;
  max-width: 260px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-logos li img {
    width: 60%;
  }
}
.footer-bottom-row #footer-logos li.logo-one img {
  max-width: 200px;
}
@media only screen and (max-width: 767px) {
  .footer-bottom-row #footer-logos li.logo-one img {
    width: 60%;
  }
}

#footer .credits {
  float: right;
  position: relative;
  height: 24px;
  width: 100px;
}
#footer .credits span {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  line-height: 18px;
  white-space: nowrap;
  transition: 350ms ease-in-out;
}
#footer .credits:hover .intro {
  opacity: 0;
  visibility: hidden;
}
#footer .credits:hover .main {
  opacity: 1;
  visibility: visible;
}
#footer .credits .intro {
  opacity: 1;
  visibility: visible;
}
#footer .credits .main {
  opacity: 0;
  visibility: hidden;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  /* 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;
  top: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background-color: #fff;
  background-image: none;
  border-radius: 50%;
  margin: 0;
  opacity: 1;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
#hebs-gallery .close-button:before, #hebs-gallery .close-button:after {
  content: "";
  display: block;
  background-color: #000;
  width: 22px;
  height: 1px;
  margin-top: -1px;
  margin-left: -11px;
  position: absolute;
  top: 50%;
  left: 50%;
}
#hebs-gallery .close-button:before {
  transform: rotate(45deg);
}
#hebs-gallery .close-button:after {
  transform: rotate(-45deg);
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 28px 0 0 25px;
  z-index: 2;
}
#hebs-gallery .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #cfcfcf;
  font-size: 14px;
  color: #000;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 70px;
  bottom: 240px;
  left: 0;
  right: 0;
  padding: 20px 0;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) 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: 1023px) {
  #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: 44px;
  height: 32px;
  margin-top: -16px;
  margin-left: 6px;
  margin-right: 6px;
  text-indent: -9999px;
  overflow: hidden;
  z-index: 3;
}
#hebs-gallery .galleria-image-nav-left:before,
#hebs-gallery .galleria-image-nav-right:before {
  content: "";
  display: block;
  margin-top: -7px;
  margin-left: -4px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
#hebs-gallery .galleria-image-nav-left {
  left: 15px;
}
#hebs-gallery .galleria-image-nav-left:before {
  border-right: 7px solid #fff;
}
#hebs-gallery .galleria-image-nav-right {
  right: 15px;
}
#hebs-gallery .galleria-image-nav-right:before {
  border-left: 7px solid #fff;
}
#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: #a3afc3;
  border-bottom-color: #a3afc3;
  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: 130px;
  bottom: 10px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 1023px) 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: 0 auto;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  width: 205px !important;
  height: 130px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 2px 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;
  bottom: 180px;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font: 26px/40px "Baskerville", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #hebs-gallery .galleria-info .galleria-info-description {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1023px) {
  .blog-page.template-1 #photos .slideshow-button.previous {
    right: 20px;
  }
  .blog-page.template-1 #photos .slideshow-button.next {
    right: 20px;
  }
}
.blog-page.template-1 .single-post-back-button {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  width: 160px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  box-sizing: border-box;
  background: #fff;
}
.blog-page.template-1 .single-post-back-button .back-to {
  font-size: 20px;
  color: #000;
}
.blog-page.template-1 .single-post-back-button .back-to:hover {
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .single-post-back-button {
    width: 140px;
    height: 60px;
    line-height: 60px;
  }
  .blog-page.template-1 .single-post-back-button .back-to {
    font-size: 16px;
  }
}
.blog-page.template-1 .sidebar-wrap {
  width: 25%;
  background-color: #f7f7f7;
  padding: 100px 40px 80px;
  box-sizing: border-box;
  min-width: 350px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap {
    width: 100%;
    margin-top: 60px;
    padding: 60px 40px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .sidebar-wrap {
    min-width: auto;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-search-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 60px;
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form {
    height: 50px;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-search-form label {
  flex: 1;
  height: 100%;
}
.blog-page.template-1 .sidebar-wrap .blog-search-form label .search-field {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
  border-radius: 0;
  font-family: "AauxPro", sans-serif;
  letter-spacing: 0.03em;
  font-size: 18px;
  color: #9b9b9b;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form label .search-field {
    padding: 0 10px;
    font-size: 16px;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit {
  transition: all 400ms ease 0ms;
  width: 80px;
  height: 100%;
  border-radius: 0;
  background-color: #a3afc3;
  border: none;
  cursor: pointer;
  color: transparent;
}
.blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit:hover {
  transition: all 400ms ease 0ms;
  background-color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit {
    background-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit {
    width: 60px;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-search-form svg {
  position: absolute;
  right: 26px;
  top: 17px;
  display: block;
  pointer-events: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form svg {
    top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .sidebar-wrap .blog-search-form svg {
    right: 16px;
  }
}
.blog-page.template-1 .sidebar-wrap .widget-title {
  font: 400 28px/1.2em "Baskerville", sans-serif;
  color: #525252;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .widget-title {
    font-size: 24px;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-categories {
  margin-bottom: 20px;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul {
  margin: 0;
  list-style: none;
  display: inline-block;
  text-align: left;
  width: 100%;
  font-size: 0;
  vertical-align: top;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 10px);
  margin: 0 10px 20px 0;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a {
  font: 700 16px/1.7em "Baskerville", sans-serif;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-categories ul li a {
    font-size: 15px;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a:hover, .blog-page.template-1 .sidebar-wrap .blog-categories ul li a.active {
  color: #000;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul .menu.submenu {
  display: block;
  margin-top: 10px;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul .menu.submenu li {
  display: block;
  width: auto;
  margin: 0 15px 10px 0;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul .menu.submenu li a {
  font-size: 14px;
  line-height: 1.5;
  color: #525252;
}
@media only screen and (max-width: 1300px) {
  .blog-page.template-1 .sidebar-wrap .blog-categories ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap .blog-categories ul li {
    width: 100%;
    margin-right: 0;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul {
  margin: 0;
  list-style: none;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-year-link-wrap {
  width: 50%;
  position: relative;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-year-link {
  font: 700 18px/1em "Baskerville", sans-serif;
  color: #000;
  text-decoration: none;
  padding-right: 40px;
  position: relative;
  box-sizing: border-box;
  transition: all 400ms ease 0ms;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-year-link:after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  top: 50%;
  right: 0;
  margin: 2px 0 0 -11px;
  border: 1px solid #000;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border-color 0.35s ease-in-out;
  transition: all 400ms ease 0ms;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-year-link.active {
  color: #4a4a4a;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-year-link.active:after {
  transform: translateY(-50%) rotate(135deg);
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-months {
  width: 50%;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-months .archive-month-item {
  display: none;
  margin-bottom: 10px;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-months .archive-month-item:last-child {
  margin-bottom: 0;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-months .archive-month-item a {
  font: 700 16px/1 "Baskerville", sans-serif;
  color: #000;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: auto;
}
.blog-page.template-1 .sidebar-wrap .blog-archives ul .archive-year .archive-months .archive-month-item a:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
}
.blog-page.template-1 .recent-posts-content-wrap {
  display: flex;
  flex-wrap: wrap;
}
.blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper {
  width: 75%;
  flex: 1;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  position: relative;
}
.blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: auto;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #d5d5d5;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper {
    padding-left: 20px;
    padding-right: 20px;
    flex: 1;
  }
  .blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper:after {
    width: calc(100% - 40px);
    left: 20px;
  }
}
.blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper .posts-wrap-headline {
  font: normal 40px/1em "Baskerville", sans-serif;
  color: #000;
  box-sizing: border-box;
  text-transform: uppercase;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1366px) {
  .blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper .posts-wrap-headline {
    font-size: 48px;
  }
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper .posts-wrap-headline {
    font-size: 34px;
  }
}
.blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper .see-more {
  display: block;
  position: absolute;
  right: 80px;
  bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .recent-posts-content-wrap .blog-posts-wrapper .see-more {
    position: relative;
    margin: 0 auto;
    right: auto;
  }
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
}
.page-content .breadcrumbs {
  margin: 0 0 20px;
}
.breadcrumbs > li {
  display: inline-flex;
  text-transform: capitalize;
}
.page-content .breadcrumbs > li {
  text-transform: uppercase;
}
.breadcrumbs > li a {
  text-decoration: none;
}
.breadcrumbs > li a:hover {
  text-decoration: underline;
}
.page-content .breadcrumbs > li::before {
  display: none;
}

.specials:after {
  clear: both;
  content: "";
  display: table;
}
.specials .specials-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.specials .specials-wrapper p {
  text-align: center;
}
.specials .specials-item {
  width: calc(100% / 3);
  padding: 80px 15px;
  /*30px 15px;*/
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .specials .specials-item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .specials .specials-item {
    width: 100%;
  }
}
.specials .specials-item .thumbnail {
  position: relative;
  float: none;
  width: 100%;
  height: 50vh;
  margin: 0;
  background-color: #cfcfcf;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.specials .specials-item .thumbnail a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -10000px;
}
.specials .specials-item h3 {
  display: block;
  font: 22px "AauxPro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-align: center;
  padding: 20px 0 25px;
}
.specials .page-content .button:hover {
  color: #fff;
  background-color: #000;
}

.single-special {
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 1023px) {
  .single-special {
    flex-direction: column;
  }
}
.single-special .special-content {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .single-special .special-content {
    font-size: 12px;
  }
}
.single-special .special-content h1,
.single-special .special-content h2 {
  text-align: left;
}
.single-special .special-content h1 {
  font-size: 6rem;
  letter-spacing: -0.4px;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  .single-special .special-content h1 {
    font-size: 4.9rem;
    letter-spacing: -2px;
    line-height: 0.9;
    margin-bottom: 2rem;
  }
}
.single-special .special-content .text {
  margin-bottom: 3rem;
}
.single-special .special-content nav .button {
  transition: color 350ms ease-in-out, background-color 350ms ease-in-out;
}
.single-special .special-content nav .button:hover {
  color: #fff;
  background-color: #000;
}
.single-special .thumb {
  flex-shrink: 0;
  width: 50%;
  margin-left: 5%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  .single-special .thumb {
    width: 100%;
    margin: 0;
  }
}
.single-special .thumb img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 4rem;
}

.special-cta-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.special-cta-container .special-child-cta {
  width: 80%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
}
.special-cta-container .special-child-cta span.cta-pipeline {
  padding-left: 10px;
  padding-right: 10px;
}
.special-cta-container .special-child-cta a {
  text-decoration: none !important;
}

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

.google-map {
  position: relative;
}
.google-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: #a3afc3;
  border-bottom-color: #a3afc3;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.google-map.loaded:before {
  content: none;
}

.hotel-location-map,
.poi-map-canvas {
  height: 500px;
  background: #cfcfcf;
}
@media only screen and (max-width: 767px) {
  .hotel-location-map,
.poi-map-canvas {
    height: 70vh;
  }
}
@media screen and (max-height: 800px) {
  .hotel-location-map,
.poi-map-canvas {
    height: 70vh;
  }
}
.hotel-location-map h4,
.poi-map-canvas h4 {
  margin: 0;
  font: 18px/1.5 "Baskerville", sans-serif;
  text-transform: uppercase;
  color: #000;
}
.hotel-location-map p,
.poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.hotel-location-map .button,
.poi-map-canvas .button {
  display: block;
  width: 100%;
}
.hotel-location-map .map-content,
.poi-map-canvas .map-content {
  overflow: hidden;
}

.map-content {
  position: relative;
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  padding: 0;
  color: #000;
  background-color: #fff;
  border: 1px solid #F7F7F7;
  width: 300px;
}
.map-content .text-wrapper {
  padding: 10px;
  padding-bottom: 8px;
}
.map-content h3,
.map-content p {
  font-family: "AauxPro", sans-serif;
  font-size: 12px;
  text-transform: none;
  text-align: left;
}
.map-content h3 {
  margin-bottom: 8px;
  font-weight: 600;
}
.map-content p {
  margin-bottom: 14px;
}
.map-content a {
  font-family: "AauxPro", sans-serif;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  color: #000;
}

.press-acm {
  margin: 80px 0;
}
@media only screen and (max-width: 767px) {
  .press-acm {
    margin: 30px 0;
  }
}

.pressroom {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 20px;
}
.pressroom .pressroom-item {
  display: block;
  width: calc((100% - 60px) / 3);
  margin-bottom: 90px;
  text-align: center;
}
.pressroom .pressroom-item.hide {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .pressroom-item {
    width: calc((100% - 30px) / 2);
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin-bottom: 30px;
  }
}
.pressroom .pressroom-item .thumbnail {
  display: block;
  width: 100%;
  height: auto;
}
.pressroom .pressroom-item h3 {
  font-size: 17px;
  line-height: 22px;
  font-family: "AauxPro", sans-serif;
  text-transform: uppercase;
  margin: 30px 20px 15px;
  font-weight: 500;
}
.pressroom .pressroom-item .content {
  font-size: 12px;
  line-height: 17px;
  position: relative;
  min-height: 216px;
  padding-bottom: 65px;
}
.pressroom .pressroom-item .content p {
  margin: 0 30px 10px;
}
.pressroom .pressroom-item .pdf {
  font-size: 14px;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
}
.pressroom .pressroom-item .view-gallery {
  font-size: 14px;
  display: block;
  margin-top: 12px;
}
.pressroom .pressroom-item .button {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  font-weight: 500;
  min-width: 218px;
}
.pressroom .more-press {
  width: 100%;
  text-align: center;
  margin-top: 100px;
  border-top: 1px solid #000;
  padding-top: 60px;
}
@media only screen and (max-width: 767px) {
  .pressroom .more-press {
    margin-top: 30px;
    padding-top: 30px;
  }
}
.pressroom .more-press h4, .pressroom .more-press button {
  font-size: 18px;
  line-height: 24px;
  font-family: "Baskerville", sans-serif;
  text-transform: uppercase;
  margin-bottom: 27px;
  font-weight: 500;
}
.pressroom .more-press button {
  font-family: "Gotham WF", sans-serif;
}
.pressroom.all-loaded .more-press {
  display: none;
}
.pressroom.all-loaded .hide {
  display: block;
}

@media only screen and (max-width: 767px) {
  .gallery-module {
    margin: 0 10px;
  }
}
.gallery-module .category-selector {
  display: block;
  margin-bottom: 10rem;
  text-align: center;
}
.gallery-module .category-selector .buttons-wrapper {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .gallery-module .category-selector .buttons-wrapper {
    display: block;
  }
}
.gallery-module .category-selector .button {
  display: block !important;
  width: 370px;
  margin: 0;
  transition: color 350ms ease-in-out, background-color 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  .gallery-module .category-selector .button {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .gallery-module .category-selector .button {
    width: 100%;
  }
}
.gallery-module .category-selector .button:hover {
  color: #fff;
  background-color: #000;
}
.gallery-module .category-selector .button.show-categories {
  border-bottom: 2px solid #000;
  padding-left: 10px;
  padding-right: 70px;
}
.gallery-module .category-selector .button.show-categories:hover:after {
  border-top: 8px solid #fff;
}
.gallery-module .category-selector .button.show-categories.active {
  color: #fff;
  background-color: #000;
}
.gallery-module .category-selector .button.show-categories.active:after {
  border-top: 8px solid #fff;
  transform: rotate(180deg);
}
.gallery-module .category-selector .button.show-categories:after {
  content: "";
  position: absolute;
  display: block;
  border-top: 8px solid #000;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  top: 50%;
  right: 26px;
  margin-top: -4px;
  margin-left: -8px;
  transform: rotate(0);
  transition: transform 0.4s ease 0s, border-color 0.4s ease 0s;
}
@media (prefers-reduced-motion) {
  .gallery-module .category-selector .button.show-categories:after {
    transform: none;
  }
}
.gallery-module .category-selector .category-list {
  position: absolute;
  background-color: #fff;
  border: 2px solid #cfcfcf;
  width: 100%;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  left: 0;
  z-index: 10;
  transition: opacity 0.4s ease 0s, visibility 0.4s ease 0s, margin-top 0.4s ease 0s;
}
@media (prefers-reduced-motion) {
  .gallery-module .category-selector .category-list {
    transform: none;
  }
}
.gallery-module .category-selector .category-list.visible {
  opacity: 1;
  visibility: visible;
  margin-top: -2px;
}
.gallery-module .category-selector .category-list button {
  display: block;
  width: 100%;
  border-top: 0 none;
  border: 0;
}
.gallery-module .category-selector .category-list button + .button {
  border-top: 2px solid #cfcfcf;
}
.gallery-module .category-selector .select-wrapper {
  display: none;
}
.gallery-module .galleies-wrapper {
  margin-top: -10px;
  margin-left: -10px;
}
.gallery-module .gallery-tile {
  width: calc(50% - 10px);
  line-height: 0;
  font-size: 0;
  margin: 10px 0 0 10px;
  flex-grow: 1;
}
.gallery-module .gallery-tile button {
  width: 100%;
  height: 0;
  padding-bottom: 30%;
  position: relative;
  overflow: hidden;
}
.gallery-module .gallery-tile button .thumb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #cfcfcf;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: transform 350ms ease-in-out, opacity 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  .gallery-module .gallery-tile button .thumb {
    transform: none;
  }
}
.gallery-module .gallery-tile button .thumb:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -75px;
  width: 100%;
  height: 75px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
  z-index: 1;
  transition: bottom 350ms ease-in-out;
}
@media (prefers-reduced-motion) {
  .gallery-module .gallery-tile button .thumb:before {
    transform: none;
  }
}
.gallery-module .gallery-tile button .square {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  transition: 350ms ease-in-out;
}
.gallery-module .gallery-tile button .square span {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
}
.gallery-module .gallery-tile button .square span.top {
  border-top: 2px solid #fff;
}
.gallery-module .gallery-tile button .square span.bottom {
  border-bottom: 2px solid #fff;
  top: auto;
  bottom: 0;
}
.gallery-module .gallery-tile button .square span.left {
  border-left: 2px solid #fff;
}
.gallery-module .gallery-tile button .square span.right {
  border-right: 2px solid #fff;
  left: auto;
  right: 0;
}
.gallery-module .gallery-tile .img-caption {
  position: absolute;
  left: 0;
  max-height: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: #fff;
  opacity: 0;
  transition: opacity 350ms ease-in-out;
  padding: 20px;
  text-transform: uppercase;
  font-family: "Baskerville", sans-serif;
  font-size: 1.25vw;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .gallery-module .gallery-tile .img-caption {
    font-size: 11px;
  }
}
@media (min-width: 1120px) {
  .gallery-module .gallery-tile .img-caption {
    font-size: 14px;
  }
}
.gallery-module .gallery-tile button:hover .thumb:before {
  bottom: 0;
}
.gallery-module .gallery-tile button:hover .square {
  opacity: 1;
  visibility: visible;
}
.gallery-module .gallery-tile button:hover .img-caption {
  opacity: 1;
}
.gallery-module .four-different .group-of-3 {
  height: calc(40vw + 10px);
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.gallery-module .four-different .group-of-3:empty {
  height: 0;
}
.gallery-module .four-different .group-of-3 .gallery-tile {
  flex-basis: calc(50% - 10px);
}
.gallery-module .four-different .group-of-3 .gallery-tile button {
  padding: 0;
  height: 100%;
}
.gallery-module .four-different .group-of-3 .gallery-tile:nth-child(1) {
  flex-basis: 100%;
}
.gallery-module .four-different .group-of-3 .gallery-tile:nth-child(1):last-child {
  width: calc(100% - 10px);
}
.gallery-module .four-different > .gallery-tile {
  width: calc(100% - 10px);
}
.gallery-module .four-different > .gallery-tile button {
  padding-bottom: 40%;
}
.gallery-module .four-different:nth-child(4n+1) .group-of-3 .gallery-tile:nth-child(1) {
  order: 3;
}
.gallery-module .four-equal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery-module .category-selector::-webkit-scrollbar {
  -webkit-appearance: none;
}
.gallery-module .category-selector::-webkit-scrollbar:vertical {
  width: 12px;
}
.gallery-module .category-selector::-webkit-scrollbar:horizontal {
  height: 12px;
}
.gallery-module .category-selector::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  border: 2px solid #ffffff;
}
.gallery-module .category-selector::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #ffffff;
}

.form {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form {
    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 #cfcfcf;
}
.form label {
  display: none;
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  float: none;
  padding: 0 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 15px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p.col-50 {
  float: left;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .form p.col-50 {
    float: none;
    width: 100%;
  }
}
.form p.col-100 {
  clear: left;
  width: 100%;
}
.form p.type_recaptcha {
  margin: 0;
}
.form p.terms-privacy {
  margin-top: 30px;
  margin-bottom: 0;
  font-size: 14px;
}
.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 {
  border: 1px solid #cfcfcf;
  display: block;
  font: 15px/50px "AauxPro", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 100%;
  height: 50px;
  padding: 0 27px;
  background: #fff;
  resize: none;
}
.form input[type=text].hide,
.form input[type=date].hide,
.form textarea.hide,
.form select.hide,
.form .input-overlay.hide {
  display: none;
}
@media only screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
  }
}
.form input[type=text]::-webkit-input-placeholder,
.form input[type=date]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder,
.form select::-webkit-input-placeholder,
.form .input-overlay::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
  -webkit-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
.form input[type=text]:-moz-placeholder,
.form input[type=date]:-moz-placeholder,
.form textarea:-moz-placeholder,
.form select:-moz-placeholder,
.form .input-overlay:-moz-placeholder {
  color: #000;
  opacity: 1;
  -moz-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
.form input[type=text]::-moz-placeholder,
.form input[type=date]::-moz-placeholder,
.form textarea::-moz-placeholder,
.form select::-moz-placeholder,
.form .input-overlay::-moz-placeholder {
  color: #000;
  opacity: 1;
  -moz-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
.form input[type=text]:-ms-input-placeholder,
.form input[type=date]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder,
.form select:-ms-input-placeholder,
.form .input-overlay:-ms-input-placeholder {
  color: #000;
  opacity: 1;
  -ms-transition: opacity 350ms ease-in-out;
  transition: opacity 350ms ease-in-out;
}
.form input[type=text]:focus::-webkit-input-placeholder,
.form input[type=date]:focus::-webkit-input-placeholder,
.form textarea:focus::-webkit-input-placeholder,
.form select:focus::-webkit-input-placeholder,
.form .input-overlay:focus::-webkit-input-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-moz-placeholder,
.form input[type=date]:focus:-moz-placeholder,
.form textarea:focus:-moz-placeholder,
.form select:focus:-moz-placeholder,
.form .input-overlay:focus:-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus::-moz-placeholder,
.form input[type=date]:focus::-moz-placeholder,
.form textarea:focus::-moz-placeholder,
.form select:focus::-moz-placeholder,
.form .input-overlay:focus::-moz-placeholder {
  opacity: 0;
}
.form input[type=text]:focus:-ms-input-placeholder,
.form input[type=date]:focus:-ms-input-placeholder,
.form textarea:focus:-ms-input-placeholder,
.form select:focus:-ms-input-placeholder,
.form .input-overlay:focus:-ms-input-placeholder {
  opacity: 0;
}
.form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
.form .select-wrapper {
  width: 100%;
}
.form textarea {
  line-height: 18px;
  height: 410px;
  padding: 27px;
  resize: none;
}
.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 {
  margin-left: calc(40% + 20px);
}
@media only screen and (max-width: 767px) {
  .form .group {
    margin-left: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  float: left;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick,
.form .input-overlay {
  width: 180px;
  height: 50px;
  line-height: 50px;
  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: 18px 0 0 6px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .g-recaptcha {
  padding: 0 20px;
}
.form .controls {
  margin-top: 50px;
}
.form .controls p {
  padding: 0 20px;
  text-align: center;
  width: auto;
  background: none;
}
.form .controls .submit-button {
  float: none;
  position: relative;
  display: inline-block;
  margin: 0 auto;
  background-color: #fff;
  transition: 350ms ease-in-out;
}
.form .controls .submit-button:hover {
  background-color: #000;
}
.form .controls .submit-button:hover .button {
  color: #fff;
}
.form .controls .button {
  background: transparent;
}
.form .privacy-policy-section label.compliance-section {
  display: block;
}
.form .privacy-policy-section label.compliance-section input[type=checkbox] {
  vertical-align: baseline;
}

[id*=form_form_] {
  padding: 0 100px;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] {
    padding: 0;
  }
}
[id*=form_form_] .form-builder-group .form-builder-field {
  position: relative;
  width: 100%;
  overflow: visible !important;
}
[id*=form_form_] .form-builder-group .form-builder-field[class*=inputcheckbox] {
  display: flex;
}
[id*=form_form_] .form-builder-group .form-builder-field[class*=inputcheckbox] p label {
  display: flex;
}
[id*=form_form_] .form-builder-group .form-builder-field p {
  margin: 0;
}
[id*=form_form_] .form-builder-group .form-builder-field input,
[id*=form_form_] .form-builder-group .form-builder-field textarea {
  padding-left: 10px;
  padding-right: 10px;
}
[id*=form_form_] .form-builder-group .form-builder-field input[type=text],
[id*=form_form_] .form-builder-group .form-builder-field input[type=email],
[id*=form_form_] .form-builder-group .form-builder-field input[type=phone],
[id*=form_form_] .form-builder-group .form-builder-field input[type=url],
[id*=form_form_] .form-builder-group .form-builder-field input[type=number],
[id*=form_form_] .form-builder-group .form-builder-field input[type=datepicker] {
  height: 40px;
  line-height: 40px;
}
[id*=form_form_] .form-builder-group .form-builder-field input:not([type=submit]),
[id*=form_form_] .form-builder-group .form-builder-field select,
[id*=form_form_] .form-builder-group .form-builder-field textarea {
  width: 100% !important;
}
[id*=form_form_] .form-builder-group .form-builder-field label em {
  display: inline-block;
  margin-right: 5px;
  color: red;
}
[id*=form_form_] .form-builder-group .form-builder-field .select-wrapper {
  border: solid thin rgba(0, 0, 0, 0.3);
  width: 100%;
}
[id*=form_form_] .form-builder-group .form-builder-field .select-wrapper select {
  border: 0;
}
[id*=form_form_] .form-builder-group .form-builder-field button.ui-datepicker-trigger {
  width: 17px;
  min-height: initial;
  border: none;
  position: absolute;
  right: 16px;
  bottom: 12px;
  margin: 0;
}
[id*=form_form_] input[type=submit],
[id*=form_form_] .button {
  display: block;
  padding: 23px 20px !important;
  border: 2px solid #000;
  margin-left: auto;
  margin-right: auto;
  width: auto !important;
}
[id*=form_form_] input[type=submit]:hover,
[id*=form_form_] .button:hover {
  border-color: #a3afc3 !important;
  background-color: #a3afc3 !important;
  color: #fff !important;
}

#form_module_container_success {
  margin-bottom: 20px;
}
.forms-module-wrapper #form_module_container_success {
  background-color: transparent;
}
#form_module_container_success h2 {
  text-transform: none;
}

h2.form-heading, .meetings-events h2.form-heading {
  font: 41px/1 "Baskerville", sans-serif;
  letter-spacing: 1px;
  margin-bottom: 30px;
  text-align: center;
  word-break: break-word;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  h2.form-heading, .meetings-events h2.form-heading {
    font-size: 30px;
  }
}

.forms-module-wrapper {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .forms-module-wrapper {
    margin-top: 50px;
  }
}

.poi {
  overflow: hidden;
}
.poi .page-content {
  margin-bottom: 40px;
}

.poi-controls-wrapper {
  text-align: center;
}

.poi-map {
  height: 800px;
  background: #cfcfcf;
}
@media only screen and (max-width: 1023px) {
  .poi-map {
    height: 500px;
  }
}
@media only screen and (max-width: 767px) {
  .poi-map {
    height: 70vh;
  }
}
@media screen and (max-height: 800px) {
  .poi-map {
    height: 70vh;
  }
}

.poi-overlay {
  text-align: center;
}
.poi-overlay .category-selector {
  margin: 0;
}

#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;
  font: 16px/20px "Baskerville", sans-serif;
  margin-right: 20px;
  padding-left: 30px;
  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: #a3afc3;
}
#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 {
  padding: 10px 0;
  margin-bottom: 30px;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb dt, #calendar-breadcrumb dd {
    float: none;
    display: inline-block;
  }
}

#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: 16px/1 "Baskerville", sans-serif;
  text-decoration: none;
  border-bottom: thin solid #cfcfcf;
  color: #cfcfcf;
}
#calendar-year a:hover {
  border-color: #a3afc3;
  color: #000;
}
#calendar-year .active a {
  border-color: #a3afc3;
  color: #000;
}
#calendar-year .active a:hover {
  border-color: #a3afc3;
  color: #000;
}

#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 "Baskerville", sans-serif;
  color: #000;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #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: #000;
  color: #fff;
}
#calendar-month a.active {
  background: #a3afc3;
  color: #fff;
}
#calendar-month a.active:hover {
  background: #000;
  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: #a3afc3;
  }
  #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: 14px/40px "Baskerville", sans-serif;
  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: #cfcfcf;
}
#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;
  font: italic 24px/40px "Baskerville", sans-serif;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  text-align: center;
}
#calendar-week li .short {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #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: rgba(0, 0, 0, 0.06);
}
@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;
  padding: 0.5em 1em;
  font: 16px "AauxPro", sans-serif;
  text-decoration: none;
}
#calendar-days li time a:hover {
  opacity: 0.6;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(0, 0, 0, 0.02);
}
@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 {
  opacity: 0.2;
}
#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.7em;
  background: #000;
  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: 12px;
  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 {
  margin-bottom: 10px;
  font: 14px/1.5 "Baskerville", 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;
}

@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 {
  font: 34px "Baskerville", sans-serif;
  text-transform: none;
  letter-spacing: -0.5px;
}
#calendar.list-view .image-list h2 a {
  text-decoration: none;
}
#calendar.list-view .image-list h3 a {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
}
#calendar.list-view .image-list h3 a:hover {
  color: #000;
}

#calendar .no-events {
  margin: 40px 0;
  padding: 40px 0;
  height: auto;
  text-align: center;
  font: 4rem "Baskerville", sans-serif;
  letter-spacing: -0.5px;
}

#calendar .single-event h2 {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  #calendar .single-event h2 {
    text-align: center;
  }
}
#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%;
    float: none;
    margin-left: 0;
  }
}

#calendar .dates,
#calendar .attachment {
  display: block;
  margin: 0 0 20px;
  font-size: 16px;
}
#calendar .dates strong,
#calendar .attachment strong {
  color: #000;
}

#calendar .dates > small {
  display: block;
  font-size: 16px;
}
#calendar .dates > small strong {
  color: #000;
}

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}
@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: 100%;
  width: 100%;
  border: thin solid #cfcfcf;
  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: 1023px) {
  .calendar .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 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: 24px/30px "Baskerville", sans-serif;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar .image-list-item .description h3 a:hover {
  color: #a3afc3;
}
.calendar .image-list-item .description .button {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .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;
  }
}

#calendar.events-widget-tiles .image-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px auto;
  max-width: 1400px;
}
#calendar.events-widget-tiles .image-list-item {
  position: relative;
  width: calc((100% / 3) - 30px);
  height: 360px;
  margin: 15px;
  background-color: #51555B;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar.events-widget-tiles .image-list-item {
    width: calc((100% / 2) - 30px);
  }
}
@media only screen and (max-width: 767px) {
  #calendar.events-widget-tiles .image-list-item {
    width: 100%;
    margin: 0 0 10px;
  }
}
#calendar.events-widget-tiles .image-list-item::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 70%, rgba(20, 14, 14, 0.8) 100%);
  border: none;
  transition: background 0.6s;
  z-index: 5;
}
@media (prefers-reduced-motion) {
  #calendar.events-widget-tiles .image-list-item::before {
    transform: none;
  }
}
#calendar.events-widget-tiles .image-list-item:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 70%, rgba(20, 14, 14, 0.9) 100%);
}
#calendar.events-widget-tiles .image-list-item:hover .hidden-descr {
  max-height: 500px;
}
#calendar.events-widget-tiles .description {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  z-index: 10;
}
#calendar.events-widget-tiles .description *:not(.button) {
  font-family: "AauxPro", sans-serif;
  color: #fff;
}
#calendar.events-widget-tiles .description span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 15px;
}
#calendar.events-widget-tiles .description h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 24px;
  text-transform: uppercase;
}
#calendar.events-widget-tiles .description .button {
  position: relative;
  left: auto;
  bottom: auto;
  margin: 10px 0 0;
}
#calendar.events-widget-tiles .hidden-descr {
  max-height: 0;
  transition: max-height 0.6s ease-in;
  overflow: hidden;
}
@media (prefers-reduced-motion) {
  #calendar.events-widget-tiles .hidden-descr {
    transform: none;
  }
}
#calendar.events-widget-tiles .empty-image-list {
  width: 100%;
  font: 400 24px/26px "AauxPro", sans-serif;
  text-align: center;
  color: #51555B;
}

.blog-page.template-1 .read-more-link {
  font: 400 16px/1.6em "AauxPro", sans-serif;
  color: #000;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.blog-page.template-1 .read-more-link:visited {
  color: #525252;
}
.blog-page.template-1 .read-more-link:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transition: all 400ms ease 0ms;
}
.blog-page.template-1 .read-more-link.white {
  color: #fff;
}
.blog-page.template-1 .read-more-link.white:after {
  background: #fff;
}
.blog-page.template-1 .read-more-link.white:hover {
  color: #a3afc3;
}
.blog-page.template-1 .read-more-link:hover {
  color: #000;
}
.blog-page.template-1 .read-more-link:hover:after {
  width: 0;
  left: auto;
  right: 0;
}
.blog-page.template-1 .posts-content-wrap {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  box-sizing: border-box;
}
.blog-page.template-1 .posts-content-wrap .one-post {
  width: 50%;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100%;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .posts-content-wrap .one-post {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .posts-content-wrap .one-post {
    padding: 0;
    margin-bottom: 30px;
  }
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-image {
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-image:after {
  content: "";
  display: block;
  padding-top: 66%;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-image .comments-number {
  position: absolute;
  right: 20px;
  bottom: 20px;
  margin-left: 0;
  top: auto;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-image .comments-number a {
  color: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper {
  position: relative;
  bottom: auto;
  left: auto;
  z-index: 2;
  width: 100%;
  padding: 0 80px 0 0;
  background: transparent;
  flex: 1;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper {
    padding-right: 0;
  }
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-content {
  margin-top: -80px;
  width: 100%;
  background: #fff;
  padding: 30px 40px 40px 40px;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-content {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-content {
    margin-top: 0;
    padding: 20px;
  }
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author {
  font-size: 12px;
  line-height: 1.6em;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author a {
  color: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author .date,
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author .author {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author .date {
  padding-right: 20px;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author .date a {
  color: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .date-author .author {
  padding-left: 20px;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-title {
  font: normal 22px/1.3em "Baskerville", sans-serif;
  text-transform: capitalize;
  margin-top: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-title {
    font-size: 24px;
  }
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-title a {
  color: #000;
  text-decoration: none;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-title:hover a {
  color: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-text,
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6em;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-text,
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .one-post-text p {
    font-size: 14px;
  }
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .read-more-link {
  margin-top: 20px;
  color: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .read-more-link:after {
  background: #000;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .read-more-link:hover {
  color: #000;
}

.single-blog-post .page-content-wrapper .content-col .main-content.single-post .blog-date {
  margin-bottom: 20px;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post .subtitle {
  display: block;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 15px;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post h1 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post h2 {
  text-transform: none;
  font-size: 20px;
  line-height: 1.5;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post iframe {
  width: 100%;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 15px;
}
.single-blog-post .tags {
  display: inline-block;
  vertical-align: top;
  font-family: "Baskerville", sans-serif;
}
.single-blog-post .tags h5 {
  font: 500 20px/1.2 "Baskerville", sans-serif;
  color: #000;
  display: inline-block;
  padding-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .single-blog-post .tags h5 {
    margin-bottom: 10px;
  }
}
.single-blog-post .tags ul {
  margin: 0 0 15px 0;
  list-style: none;
  display: inline-block;
}
.single-blog-post .tags ul li {
  display: inline-block;
  padding-left: 0;
  padding-right: 10px;
}
.single-blog-post .tags ul li:before {
  content: none;
}
.single-blog-post .tags ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #000;
}
.single-blog-post .tags ul li a:hover {
  color: #000;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-list-view #header-blog {
    height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-list-view #header-blog {
    height: 130px;
  }
}
.blog-list-view .blog-posts-wrapper {
  padding-top: 200px;
}
@media only screen and (max-width: 1023px) {
  .blog-list-view .blog-posts-wrapper {
    padding-top: 0;
  }
}

.amenities-acm {
  margin-top: 80px;
}
.amenities-acm article {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 60px;
}
@media only screen and (max-width: 1023px) {
  .amenities-acm article {
    display: block;
  }
}
.amenities-acm article:nth-child(even) {
  flex-direction: row-reverse;
}
.amenities-acm article .content {
  min-height: 670px;
  width: 570px;
  margin: 60px;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 1023px) {
  .amenities-acm article .content {
    width: calc(100% - 60px);
    min-height: 0;
    margin: 30px;
  }
}
.amenities-acm article .content h3 {
  font: 500 14px/14px "Baskerville", sans-serif;
  text-transform: uppercase;
}
.amenities-acm article .content h2 {
  font-size: 41px;
  line-height: 41px;
  font-family: "Baskerville", sans-serif;
  text-align: left;
  text-transform: none;
  letter-spacing: 1px;
}
@media only screen and (max-width: 1023px) {
  .amenities-acm article .content h2 {
    text-align: center;
    font-size: 30px;
  }
}
.amenities-acm article .gallery {
  margin: 0;
  flex: 0 1 50%;
}
@media only screen and (max-width: 1023px) {
  .amenities-acm article .gallery {
    width: 100%;
    height: 300px;
  }
}
.amenities-acm article .gallery .swiper-slide {
  background-position: 50% 50%;
  background-size: cover;
}
.amenities-acm article .gallery .arrows button {
  position: absolute;
  display: block;
  top: 50%;
  left: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  text-indent: -1000px;
  overflow: hidden;
  transform: translate(0, -50%);
}
.amenities-acm article .gallery .arrows button.previous:hover::after {
  border-right-color: #000;
}
.amenities-acm article .gallery .arrows button.next:hover::after {
  border-left-color: #000;
}
.amenities-acm article .gallery .arrows button.next {
  left: auto;
  right: 30px;
}
.amenities-acm article .gallery .arrows button:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 7px solid #AB7D22;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-3px, 0);
}
.amenities-acm article .gallery .arrows button.next:after {
  border-right: 0;
  border-left: 7px solid #AB7D22;
  transform: translate(-50%, -50%) translate(2px, 0);
}

.three-tile-slideshow {
  position: relative;
  margin-bottom: 80px;
}
.three-tile-slideshow .swiper-wrapper {
  height: 100% !important;
}
@media only screen and (max-width: 1023px) {
  .three-tile-slideshow .swiper-wrapper {
    height: 100% !important;
  }
}
.three-tile-slideshow .slideshow {
  position: relative;
  overflow: hidden;
}
.three-tile-slideshow .slide {
  position: relative;
  width: 50%;
}
.three-tile-slideshow .slide img {
  width: 100%;
  height: auto;
}
.three-tile-slideshow .slideshow-pagination {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .three-tile-slideshow .slideshow-pagination {
    left: 20px;
  }
}
.three-tile-slideshow .slideshow-pagination button {
  display: inline-block;
  background: #bbb5b7;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  overflow: hidden;
  text-indent: -10000px;
  font-size: 0;
  line-height: 0;
  margin: 0;
  pointer-events: all;
  opacity: 0.2;
  transition: 350ms ease-in-out;
}
.three-tile-slideshow .slideshow-pagination button + button {
  margin-left: 3px;
  margin-right: 0;
}
.three-tile-slideshow .slideshow-pagination button.active {
  background: #fff;
  opacity: 1;
}
.three-tile-slideshow .slideshow-button {
  position: absolute;
  top: 50%;
  margin-top: -21px;
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
  transform-origin: center;
}
@media (prefers-reduced-motion) {
  .three-tile-slideshow .slideshow-button {
    transform: none;
  }
}
.three-tile-slideshow .slideshow-button:hover {
  border-color: #a3afc3;
}
.three-tile-slideshow .slideshow-button.previous {
  left: 90px;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .three-tile-slideshow .slideshow-button.previous {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .three-tile-slideshow .slideshow-button.previous {
    left: 16px;
  }
}
.three-tile-slideshow .slideshow-button.next {
  right: 26px;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .three-tile-slideshow .slideshow-button.next {
    right: 23px;
  }
}
@media only screen and (max-width: 767px) {
  .three-tile-slideshow .slideshow-button.next {
    right: 16px;
  }
}

.section-with-categories-acm {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm {
    margin-bottom: 60px;
  }
}
.section-with-categories-acm .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm .categories {
    margin-bottom: 40px;
  }
}
.section-with-categories-acm .categories .category {
  padding: 10px 0;
  margin: 0 34px;
  font-family: "Baskerville", sans-serif;
  font-size: 30px;
  color: rgba(25, 33, 60, 0.5);
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm .categories .category {
    padding: 5px 0;
    margin: 0 15px;
  }
}
.section-with-categories-acm .categories .category.active {
  color: #000;
  border-bottom: 1px solid #000;
}
.section-with-categories-acm .sections {
  display: none;
}
.section-with-categories-acm .sections.active {
  display: block;
}
.section-with-categories-acm .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section {
    display: block;
  }
}
.section-with-categories-acm .section:last-child {
  margin-bottom: 0;
}
.section-with-categories-acm .section:nth-child(2n) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section:nth-child(2n) {
    display: block;
  }
}
.section-with-categories-acm .section .content-wrapper {
  width: 45%;
  padding: 0 10%;
}
.section-with-categories-acm .section .content-wrapper.fullwidth {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm .section .content-wrapper {
    width: 50%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-wrapper {
    width: 100%;
    padding: 0;
  }
}
.section-with-categories-acm .section .content-wrapper .page-content {
  margin: 30px auto;
  text-align: center;
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm .section .content-wrapper .page-content {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-wrapper .page-content {
    width: 90%;
  }
}
.section-with-categories-acm .section .content-wrapper h3 {
  margin-bottom: 20px;
  font: 500 14px/14px "AauxPro", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.section-with-categories-acm .section .content-wrapper h2 {
  margin-bottom: 16px;
  font-size: 41px;
  line-height: 41px;
  font-family: "Baskerville", sans-serif;
  text-align: center;
  text-transform: none;
  letter-spacing: 1px;
}
.section-with-categories-acm .section .content-wrapper p {
  margin-bottom: 14px;
  font-family: "Baskerville", sans-serif;
  text-transform: uppercase;
}
.section-with-categories-acm .section .content-wrapper p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-wrapper p {
    font-size: 12px;
    line-height: 1.5;
  }
}
.section-with-categories-acm .section .content-wrapper .button {
  max-width: 220px;
  min-width: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-wrapper .button {
    min-width: 220px;
  }
}
.section-with-categories-acm .section .image {
  position: relative;
  width: 55%;
  height: 100vh;
}
@media only screen and (max-width: 1023px) {
  .section-with-categories-acm .section .image {
    width: 50%;
    height: 45vh;
  }
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .image {
    width: 100%;
  }
}
.section-with-categories-acm .section .content-cells {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
}
.section-with-categories-acm .section .content-cells .content-cell {
  width: 100%;
  position: relative;
  min-height: 60px;
  margin-bottom: 15px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
}
.section-with-categories-acm .section .content-cells .content-cell_with-icon {
  padding-left: 75px;
}
.section-with-categories-acm .section .content-cells .content-cell .cell-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #cfcfcf;
  color: #84754E;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.section-with-categories-acm .section .content-cells .content-cell .cell-icon img {
  max-width: 60px;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-cells .content-cell .cell-icon {
    width: 36px;
    height: 36px;
  }
  .section-with-categories-acm .section .content-cells .content-cell .cell-icon img {
    max-width: 36px;
  }
}
.section-with-categories-acm .section .content-cells .content-cell h3 {
  font-family: "AauxPro", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-cells .content-cell h3 {
    font-size: 14px;
    margin-bottom: 0;
  }
}
.section-with-categories-acm .section .content-cells .content-cell p {
  font-size: 12px;
  font-family: "Gotham WF", sans-serif;
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-cells .content-cell p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .section-with-categories-acm .section .content-cells .content-cell {
    min-height: 36px;
  }
}

.content-column-center-acm {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1023px) {
  .content-column-center-acm {
    margin-bottom: 60px;
  }
}
.content-column-center-acm .section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
}
@media only screen and (max-width: 1023px) {
  .content-column-center-acm .section {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .content-column-center-acm .section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.content-column-center-acm .section:last-child {
  margin-bottom: 0;
}
.content-column-center-acm .section:nth-child(2n) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .content-column-center-acm .section:nth-child(2n) {
    flex-direction: column;
  }
}
.content-column-center-acm .section .content {
  width: 25%;
}
@media only screen and (max-width: 1023px) {
  .content-column-center-acm .section .content {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .content-column-center-acm .section .content {
    width: 100%;
  }
}
.content-column-center-acm .section .content h3 {
  margin-bottom: 20px;
  font: 500 14px/14px "Baskerville", sans-serif;
  text-transform: uppercase;
}
.content-column-center-acm .section .content h2 {
  margin-bottom: 16px;
  font-size: 41px;
  line-height: 41px;
  font-family: "Baskerville", sans-serif;
  text-align: left;
  text-transform: none;
  letter-spacing: 1px;
}
.content-column-center-acm .section .content p {
  margin-bottom: 14px;
}
.content-column-center-acm .section .content p:last-child {
  margin-bottom: 0;
}
.content-column-center-acm .section .content .button {
  max-width: 220px;
  min-width: 100%;
}
@media only screen and (max-width: 767px) {
  .content-column-center-acm .section .content .button {
    min-width: 220px;
  }
}
.content-column-center-acm .section .image {
  position: relative;
  width: 70%;
  min-height: 600px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1023px) {
  .content-column-center-acm .section .image {
    width: 60%;
  }
}
@media only screen and (max-width: 767px) {
  .content-column-center-acm .section .image {
    width: 100%;
  }
}

.faq-acm {
  margin-bottom: 75px;
}
@media only screen and (max-width: 1023px) {
  .faq-acm {
    margin-bottom: 50px;
  }
}
.faq-acm .heading {
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 30px;
  font-family: "Baskerville", sans-serif;
  text-align: center;
  letter-spacing: 1px;
}
.faq-acm .category {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1023px) {
  .faq-acm .category {
    margin-bottom: 30px;
  }
}
.faq-acm .category:last-child {
  margin-bottom: 0;
}
.faq-acm .category-name,
.faq-acm .question-title {
  margin-bottom: 20px;
  font: 500 18px/18px "Baskerville", sans-serif;
  text-transform: uppercase;
}
.faq-acm .category-name {
  margin-bottom: 20px;
  text-align: center;
}
.faq-acm .question {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border: 1px solid #cfcfcf;
}
.faq-acm .question:last-child {
  margin-bottom: 0;
}
.faq-acm .question-title {
  position: relative;
  width: 100%;
  text-align: left;
  padding: 20px;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq-acm .question-title:before, .faq-acm .question-title:after {
  content: "";
  position: absolute;
  right: 25px;
  top: 20px;
  display: block;
  background-color: #000;
  width: 2px;
  height: 10px;
}
.faq-acm .question-title:after {
  transform: rotate(90deg);
}
.faq-acm .content-read-more-wrapper {
  margin: 0 20px;
}

.content-for-lists-acm {
  margin-top: 60px;
}
@media only screen and (max-width: 1023px) {
  .content-for-lists-acm {
    margin-top: 30px;
  }
}
.content-for-lists-acm .center-column {
  max-width: 1150px;
}
.content-for-lists-acm h3 {
  margin-bottom: 50px;
  font: 500 14px/14px "Baskerville", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
.content-for-lists-acm .lists {
  display: flex;
  flex-wrap: wrap;
}
.content-for-lists-acm .list-wrapper {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .content-for-lists-acm .list-wrapper {
    margin-right: 0;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.content-for-lists-acm .list-wrapper:nth-child(2n) {
  margin-right: 0;
}
.content-for-lists-acm .list-wrapper h2 {
  margin-bottom: 20px;
  font-size: 41px;
  line-height: 41px;
  font-family: "Baskerville", sans-serif;
  text-align: left;
  text-transform: none;
  letter-spacing: 1px;
}
.content-for-lists-acm .list-wrapper ol {
  list-style: decimal;
}
.content-for-lists-acm .list-wrapper ol li {
  position: relative;
  padding-left: 35px;
}
.content-for-lists-acm .list-wrapper ul li {
  position: relative;
  padding-left: 35px;
}
.content-for-lists-acm .list-wrapper ul li:before {
  content: "";
  display: block;
  position: absolute;
  left: 13px;
  top: 14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #000;
}

.actions-acm {
  margin-top: 60px;
}
@media only screen and (max-width: 1023px) {
  .actions-acm {
    margin-top: 30px;
  }
}
.actions-acm .actions {
  display: flex;
  flex-wrap: wrap;
}
.actions-acm .action {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-bottom: 60px;
}
.actions-acm .action:nth-child(2n) {
  margin-right: 0;
}
@media only screen and (max-width: 1023px) {
  .actions-acm .action {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .actions-acm .action {
    width: 100%;
    margin-right: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.actions-acm .image-wrapper {
  position: relative;
  width: 100%;
  min-height: 582px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .actions-acm .image-wrapper {
    min-height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .actions-acm .image-wrapper {
    min-height: 200px;
  }
}
.actions-acm .content-wrapper {
  padding-top: 30px;
  padding-left: 60px;
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .actions-acm .content-wrapper {
    padding: 0 30px;
    margin-bottom: 30px;
  }
}
.actions-acm h2 {
  margin-bottom: 16px;
  font-size: 41px;
  line-height: 41px;
  font-family: "Baskerville", sans-serif;
  text-align: left;
  text-transform: none;
  letter-spacing: 1px;
}
.actions-acm p {
  margin-bottom: 20px;
}
.actions-acm .learn-more {
  font-family: "Gotham WF", sans-serif;
  text-decoration: none;
  font-size: 16px;
  line-height: 18px;
}

.poi-acm {
  margin-top: 80px;
}
@media only screen and (max-width: 1023px) {
  .poi-acm {
    margin-top: 40px;
  }
}
.poi-acm h2 {
  font: 400 60px/68px "Baskerville", sans-serif;
  text-align: center;
  text-transform: none;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media only screen and (max-width: 767px) {
  .poi-acm h2 {
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 20px;
  }
}
.poi-acm .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .categories {
    display: none;
    margin-bottom: 40px;
  }
}
.poi-acm .categories .category {
  padding: 10px 0;
  margin: 0 34px;
  font-family: "AauxPro", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #000;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .categories .category {
    padding: 5px 0;
    margin: 0 15px;
  }
}
.poi-acm .categories .category:hover, .poi-acm .categories .category.active {
  color: #a3afc3;
}
.poi-acm .select-wrapper {
  display: none;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .select-wrapper {
    display: block;
  }
}
.poi-acm .select-wrapper .select-icon {
  right: 20px;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #a3afc3;
  border-left: 2px solid #a3afc3;
  border-right: none;
  transform: rotate(-45deg) translateY(-50%);
}
.poi-acm .categories-selection {
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 40px;
  padding: 25px 20px;
  font: 500 20px/88px "AauxPro", sans-serif;
  text-transform: uppercase;
  color: #000;
  background-color: transparent;
}
.poi-acm .poi-map-wrapper {
  margin: 0 auto;
  max-width: 2000px;
  position: relative;
  display: flex;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-map-wrapper {
    flex-direction: column;
  }
}
.poi-acm .poi-map-wrapper .select-wrapper {
  display: block;
  width: 100%;
}
.poi-acm .poi-map-wrapper .select-wrapper .select-icon {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
}
.poi-acm .poi-map-wrapper .categories-selection {
  color: #fff;
  border: 1px solid #fff;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-map-wrapper .categories-selection {
    margin-bottom: 0;
  }
}
.poi-acm .poi-map-wrapper .categories-selection option {
  color: #000;
}
.poi-acm .poi-map-wrapper .categories-selection option:focus {
  color: #fff;
}
.poi-acm .poi-map-wrapper .poi-zoom {
  position: absolute;
  top: 25px;
  right: 22px;
  width: 110px;
  height: 110px;
  border: 2px solid #000;
  border-radius: 100%;
  color: #000;
  font-size: 24px;
  line-height: 1em;
  text-align: center;
  z-index: 20;
  padding: 25px 20px;
  box-sizing: border-box;
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .poi-acm .poi-map-wrapper .poi-zoom {
    display: none;
  }
}
.poi-acm .poi-map-wrapper .poi-zoom span {
  display: block;
  font-weight: 300;
  margin-bottom: 5px;
}
.poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  height: 26px;
  width: 26px;
  border-radius: 100%;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
  border: 2px solid #000;
}
.poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button:after {
  content: "";
  background: #000;
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button:hover {
  background: #000;
}
.poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button:hover:before, .poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button:hover:after {
  background: #fff !important;
}
.poi-acm .poi-map-wrapper .poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: #000;
  display: block;
  width: 1px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-acm .points {
  display: none;
  counter-reset: myCounter;
}
.poi-acm .points.active {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .points.active {
    display: none;
  }
}
.poi-acm .point {
  position: relative;
  margin: 15px 0;
  border-bottom: 1px solid #272E47;
}
.poi-acm .point:last-child {
  margin-bottom: 0;
  border-bottom-color: transparent;
}
.poi-acm .point:before {
  counter-increment: myCounter;
  content: counter(myCounter);
  display: block;
  position: absolute;
  left: 13px;
  top: 5px;
  color: white;
}
.poi-acm .point:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.poi-acm .point .point-button {
  display: block;
  width: 100%;
  padding-top: 15px;
  padding-left: 45px;
  padding-bottom: 30px;
  font: 500 17px/17px "Baskerville", sans-serif;
  color: #fff;
  text-align: left;
}
.poi-acm .poi-map {
  width: 100%;
  max-height: 793px;
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-map {
    width: 100%;
  }
}
.poi-acm .poi-map .map-content {
  padding: 0;
  display: flex;
  background-color: #fff;
  border: 1px solid #F7F7F7;
}
.poi-acm .poi-map .map-content .image-wrapper {
  position: relative;
  width: 100px;
}
.poi-acm .poi-map .map-content .image-wrapper img {
  max-width: 100%;
}
.poi-acm .poi-map .map-content .text-wrapper {
  padding: 10px;
  padding-bottom: 20px;
}
.poi-acm .poi-map .map-content h3,
.poi-acm .poi-map .map-content p {
  font-family: "AauxPro", sans-serif;
  font-size: 12px;
  text-transform: none;
  text-align: left;
}
.poi-acm .poi-map .map-content h3 {
  margin-bottom: 0;
  font-weight: 600;
}
.poi-acm .poi-map .map-content p {
  margin-bottom: 10px;
}
.poi-acm .poi-map .map-content .links-wrapper {
  display: flex;
}
.poi-acm .poi-map .map-content a {
  font-family: "AauxPro", sans-serif;
  font-size: 12px;
  line-height: 12px;
  text-align: left;
  border-right: 1px solid;
  margin-right: 5px;
  padding-right: 5px;
}
.poi-acm .poi-map .map-content a:last-child {
  border-right: 1px solid transparent;
  margin-right: 0;
  padding-right: 0;
}

.feeds-wrapper {
  margin-top: 100px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .feeds-wrapper {
    display: none;
  }
}
.feeds-wrapper .content-wrapper.acm-block {
  vertical-align: bottom;
  padding: 40px 5% 60px 5%;
  box-sizing: border-box;
}
@media only screen and (max-width: 1023px) {
  .feeds-wrapper .content-wrapper.acm-block {
    padding-bottom: 50px;
  }
}
.feeds-wrapper .content-wrapper.acm-block .copy {
  display: flex;
  width: 70%;
}
@media (max-width: 1400px) {
  .feeds-wrapper .content-wrapper.acm-block .copy {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .feeds-wrapper .content-wrapper.acm-block .copy {
    flex-direction: column;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .feeds-wrapper .content-wrapper.acm-block .copy {
    width: 100%;
  }
}
.feeds-wrapper .content-wrapper.acm-block h2 {
  margin-bottom: 0;
  position: relative;
  font-family: "Baskerville", sans-serif;
  font-size: 47px;
  line-height: 60px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-left: 80px;
  flex: 0 0 404px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .feeds-wrapper .content-wrapper.acm-block h2 {
    flex: none;
    text-align: center;
    padding-left: 0;
    padding-top: 70px;
  }
}
.feeds-wrapper .content-wrapper.acm-block h2:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 60px;
  height: 60px;
  background: url("../images/instagram-black-fixed.svg") 50% 50% no-repeat;
}
@media only screen and (max-width: 1023px) {
  .feeds-wrapper .content-wrapper.acm-block h2:before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
.feeds-wrapper .content-wrapper.acm-block .description {
  position: relative;
  font-size: 16px;
  line-height: 2;
  font-weight: 300;
  padding-left: 60px;
  letter-spacing: 3px;
  font-family: "Gotham WF", sans-serif;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .feeds-wrapper .content-wrapper.acm-block .description {
    text-align: center;
    padding-left: 0;
  }
}
.feeds-wrapper .content-wrapper.acm-block .images {
  font-size: 0;
}
.feeds-wrapper .content-wrapper.acm-block .images .image {
  display: inline-block;
  width: calc((100% / 3) - 20px);
  height: 265px;
  margin-right: 20px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.feeds-wrapper .content-wrapper.acm-block .images .image:last-child {
  margin-right: 0;
}
.feeds-wrapper .hashtag {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 35px;
  text-align: center;
}

.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: 1023px) {
  .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 20px 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 "AauxPro", 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;
}

@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;
  }
}
