@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: 11px;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

.ui-datepicker {
  display: none;
  padding: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.12);
  z-index: 10;
}
body > .ui-datepicker {
  z-index: 30;
}
.ui-datepicker:after {
  display: block;
  content: "";
  height: 0;
  overflow: hidden;
  clear: both;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker {
    width: calc(100% - 20px);
  }
}

.ui-datepicker-header {
  position: relative;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  color: var(--maven-blue);
}

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

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

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

.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 {
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 14px;
  font-weight: bold;
  color: var(--maven-blue);
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 12px;
  color: var(--maven-blue);
}
.ui-datepicker-calendar td.ui-datepicker-other-month, .ui-datepicker-calendar td.ui-state-disabled {
  color: #a9a9a9;
}
.ui-datepicker-calendar td.ui-datepicker-other-month span:hover, .ui-datepicker-calendar td.ui-state-disabled span:hover {
  color: inherit;
  background: none;
}
.ui-datepicker-calendar a {
  display: inline-block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.ui-datepicker-calendar .ui-datepicker-today a {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: var(--maven-tan);
  color: var(--maven-blue);
}

.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;
}
.ui-datepicker-trigger:hover {
  background-position: -37px -123px;
}

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

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

:root {
  --icon-padding-right:12px;
}

@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;
  font-size: 1.125rem;
  display: flex;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (width <= 800px) {
  [class^=rooms-icon-], [class*=" rooms-icon-"] {
    font-size: 1rem;
  }
}

.rooms-icon-theatre-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-classroom-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-cabaret-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-boardroom-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-u-shaped-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-banquet-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-dinner-dance-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-reception-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-ceremony-set-up:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-natural-daylight:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-outlets-sockets:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-direct-dial-point:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-video-conferencing:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-air-conditioning:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-wi-fi:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-blackout-shades:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-visual-equipment:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-audio-equipment:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-flipchart-presentation-equipment:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-tv-point:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-overhead-projector:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-data-projector:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-balcony:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-city-view:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-beds:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-flat-screen-tv:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-hair-dryer:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-iron:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-ac:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-king-bed:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-kitchen:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-minibar:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-smoke-free:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-occupancy:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-ocean-view:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-personal_items:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-pool-view:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-room-service:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-safe:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-single-room:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-smoking:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-size:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-pulloutsofa:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-twin-room:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-wifi:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-adaroom:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-airport-shuttle-paid:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-amusement-park:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-bar:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-beach:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-business-center:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-elevator:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-environmentally-friendly:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-fitness:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-golf:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-indoor-pool:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-landmark:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-outdoor-pool:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-pet-friendly:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-pool:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-restaurant:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-shuttle:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-spa:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-ticket-services:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-valet:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-water-park:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-coffeemaker:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-highfloor:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-airport-shuttle-free:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-view:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-tv:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-minifridge:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-pets:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-valet-only:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-accessibility-features:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.rooms-icon-parking:before {
  content: "";
  padding-right: var(--icon-padding-right);
}

.blog-post-author {
  position: relative;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .blog-post-author {
    margin-bottom: 20px;
  }
}
.blog-post-author .author-block {
  display: flex;
  align-items: center;
  flex-flow: row;
}
@media only screen and (max-width: 767px) {
  .blog-post-author .author-block {
    justify-content: center;
  }
}
.blog-post-author .author-block .thumbnail {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 25px 0 0;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 50%;
  overflow: hidden;
  background-color: #5990B4;
}
@media only screen and (max-width: 767px) {
  .blog-post-author .author-block .thumbnail {
    margin: 0 15px 0 0;
    width: 80px;
    height: 80px;
  }
}
.blog-post-author .author-block h4 {
  font: normal 12px/1.2 "Roboto Condensed", sans-serif;
  color: #003E66;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-post-author .author-block {
    font-size: 12px;
  }
}

.blog-post-banner {
  font-family: "Roboto Condensed", sans-serif;
  position: absolute;
  right: 0;
  top: 100px;
  width: 160px;
  min-height: 600px;
  overflow: hidden;
}
.blog-post-banner:after {
  content: "";
  background-color: rgba(0, 62, 102, 0.45);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .blog-post-banner {
    display: none;
  }
}
.blog-post-banner .banner-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  background-color: #5990B4;
}
.blog-post-banner .post-banner-content {
  position: absolute;
  top: 80px;
  width: 100%;
  text-align: center;
  padding: 10px;
  z-index: 2;
}
.blog-post-banner .post-banner-content .banner-title {
  font-weight: normal;
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.blog-post-banner .post-banner-content .banner-title.banner-title-one {
  font-size: 16px;
  margin-bottom: 10px;
}
.blog-post-banner .post-banner-content .banner-title.banner-title-two {
  font-size: 30px;
}
.blog-post-banner .controls {
  position: absolute;
  bottom: 35px;
  left: 10px;
  right: 10px;
  margin: 0 auto;
  text-align: center;
}
.blog-post-banner .banner-button {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding-right: 10px;
  z-index: 2;
}
.blog-post-banner .banner-button:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border: 1px solid #fff;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border-color 350ms ease-in-out;
  margin: 3px 0 0 -11px;
}
.blog-post-banner .banner-button:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  html.hamburger-navigation-visible {
    overflow: hidden;
  }
}
#hamburger-navigation {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 130px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: url("../images/Background.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: right 200ms, visibility 200ms;
  text-align: right;
  z-index: 60;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  #hamburger-navigation {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation {
    padding-top: 100px;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  right: 0;
  visibility: visible;
}
#hamburger-navigation .top-menu {
  z-index: 4;
  position: relative;
  top: auto;
  right: auto;
  width: 90%;
  margin: 0 auto;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #hamburger-navigation .top-menu {
    max-width: 60%;
  }
}
#hamburger-navigation .top-menu a {
  display: block;
  padding: 4px 40px;
  font: 20px/24px "LTC Goudy Oldstyle Pro";
  text-decoration: none;
  color: #327d7d;
}
#hamburger-navigation .top-menu a:hover, #hamburger-navigation .top-menu a.active {
  color: #54baba;
}
#hamburger-navigation .main-menu {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
  padding-right: 50px;
  padding-left: 50px;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu {
    max-width: 90%;
  }
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
}
#hamburger-navigation .main-menu .menu a {
  display: block;
  padding: 4px 8px;
}
#hamburger-navigation .main-menu .menu.level-1 {
  padding-top: 73px;
  color: #EFE9E0;
  font-size: 2.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 58px;
  word-wrap: break-word;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a {
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  color: #EFE9E0;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a:hover, #hamburger-navigation .main-menu .menu.level-1 > li > a.active {
  color: #fff;
}
#hamburger-navigation .main-menu .menu.level-1 > li > .plus {
  top: 10px;
}
#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;
}
#hamburger-navigation .main-menu .menu.submenu a {
  text-decoration: none;
  color: #EFE9E0;
  font-size: 1.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
#hamburger-navigation .main-menu .menu.submenu a:hover, #hamburger-navigation .main-menu .menu.submenu a.active {
  color: #fff;
}
#hamburger-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
  visibility: visible;
}
#hamburger-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  right: -24px;
  cursor: pointer;
}
#hamburger-navigation .main-menu .plus .horizontal, #hamburger-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #327d7d;
  top: 0;
}
#hamburger-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#hamburger-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
  margin-top: 12px;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal, #hamburger-navigation .main-menu .parent.expanded > .plus > svg {
  transform: rotate(180deg);
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
}
#hamburger-navigation .sub-arrow {
  display: none !important;
}

@media only screen and (max-width: 767px) {
  html.booking-visible {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  #booking {
    position: fixed;
    top: 0;
    left: -101%;
    display: block;
    height: 100%;
    overflow: auto;
    padding: 0;
    transition: left 350ms ease-in-out;
    -webkit-overflow-scrolling: touch;
  }
  .booking-visible #booking {
    left: 0;
  }
  #booking .center-column {
    padding: 0;
    max-width: 100%;
    height: 100%;
  }
  #booking form {
    width: 100%;
    padding: 100px 20px 30px 20px;
  }
}
@media only screen and (max-width: 767px) and (width <= 1023px) {
  #booking form {
    padding: 100px 0px;
  }
}
@media only screen and (max-width: 767px) {
  #booking .column {
    margin-right: 0;
    width: 100%;
  }
  #booking .column.adults, #booking .column.children {
    width: 48%;
  }
  #booking .column.children {
    margin-left: 4%;
  }
}
@media only screen and (max-width: 767px) {
  #booking input[type=text], #booking input[type=date], #booking select, #booking .input-overlay {
    width: 100%;
    padding: 0 35px;
    text-align: center;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
@media only screen and (max-width: 767px) and (width <= 1023px) {
  #booking input[type=text], #booking input[type=date], #booking select, #booking .input-overlay {
    text-align: left;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}
@media only screen and (max-width: 767px) {
  #booking .input-overlay {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #booking #booking-dates {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #booking input[type=submit] {
    margin-top: 20px;
    width: 100%;
  }
}
#booking .close {
  display: none;
  position: relative;
  height: 30px;
  width: 30px;
  margin: 0 auto 30px;
  overflow: hidden;
  text-indent: -9999px;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s ease-out;
}
@media only screen and (max-width: 767px) {
  #booking .close {
    display: block;
  }
}
#booking .close span {
  background: transparent;
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
}
#booking .close span:before, #booking .close span:after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  position: absolute;
  left: -3px;
  background: #54baba;
  transition: 350ms ease-in-out;
}
#booking .close span:before {
  top: -1px;
  transform: rotate(45deg);
}
#booking .close span:after {
  bottom: 0;
  transform: rotate(-45deg);
}

#booking-datepicker {
  display: none;
  position: absolute;
  bottom: -250px;
  z-index: 7;
  top: 96px;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  height: 280px;
  background: var(--maven-blue);
  right: 0px;
  justify-content: center;
  align-items: center;
  color: var(--maven-light);
  border-left: 1px solid;
}
@media only screen and (min-width: 768px) {
  .booking-datepicker-under #booking-datepicker {
    bottom: auto;
  }
}
#booking-datepicker.visible {
  display: block;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker {
    display: block;
    position: relative;
    bottom: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms ease-in-out;
  }
  #booking-datepicker.visible {
    max-height: 500px;
    top: -370px;
  }
}
#booking-datepicker .arrival-departure-status {
  overflow: hidden;
  white-space: nowrap;
  background: var(--maven-blue);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .arrival-departure-status {
    display: none;
  }
}
#booking-datepicker .arrival-departure-status div {
  display: inline-block;
  width: 100%;
  transition: all 200ms;
}
#booking-datepicker .arrival-departure-status .arrival, #booking-datepicker .arrival-departure-status .departure {
  opacity: 0;
  font: 20px/55px "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
#booking-datepicker .arrival-departure-status .arrival:after, #booking-datepicker .arrival-departure-status .departure:after {
  content: attr(data-text);
}
#booking-datepicker .arrival-departure-status .arrival {
  margin-left: -100%;
}
#booking-datepicker .arrival-departure-status .departure {
  margin-right: -100%;
}
#booking-datepicker.checkin-step .arrival-departure-status .arrival {
  margin-left: 0;
  opacity: 1;
}
#booking-datepicker.checkout-step .arrival-departure-status .departure {
  margin-right: 0;
  opacity: 1;
}
#booking-datepicker .ui-datepicker {
  width: 100% !important;
  white-space: nowrap;
}
#booking-datepicker .ui-datepicker-group {
  display: inline-block;
  white-space: normal;
}
#booking-datepicker .ui-datepicker-group:nth-child(2) {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-group {
    width: 100%;
  }
  #booking-datepicker .ui-datepicker-group:nth-child(2) {
    display: none;
  }
}
#booking-datepicker .ui-datepicker-header {
  margin-bottom: 15px;
}
#booking-datepicker .ui-datepicker-header .ui-datepicker-prev, #booking-datepicker .ui-datepicker-header .ui-datepicker-next {
  display: none;
}
#booking-datepicker .ui-datepicker-prev, #booking-datepicker .ui-datepicker-next {
  top: 10px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-prev, #booking-datepicker .ui-datepicker-next {
    top: 10px;
  }
}
#booking-datepicker .ui-datepicker-prev {
  left: 20px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-prev {
    left: 26px;
  }
}
#booking-datepicker .ui-datepicker-next {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-next {
    right: 26px;
  }
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-calendar {
    width: 100%;
  }
}
#booking-datepicker.checkin-step td a, #booking-datepicker.checkout-step td a, #booking-datepicker td.checkin-date a, #booking-datepicker td.checkout-date a {
  position: relative;
}
#booking-datepicker.checkin-step td a:before, #booking-datepicker.checkout-step td a:before, #booking-datepicker td.checkin-date a:before, #booking-datepicker td.checkout-date a:before {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  height: 14px;
  margin-bottom: -7px;
  background-color: var(--maven-blue);
  font-size: 7px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--maven-light);
}
#booking-datepicker.checkin-step td a:hover:before, #booking-datepicker td.checkin-date a:before {
  content: "in";
}
#booking-datepicker.checkout-step td:not(.checkin-date) a:hover:before, #booking-datepicker td.checkout-date a:before {
  content: "out";
}

.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 "Roboto Condensed", 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: #394F71;
  border-bottom-color: #394F71;
  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 h3 {
  font-family: "LTC Goudy Oldstyle Pro";
  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 "LTC Goudy Oldstyle Pro";
  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: #327d7d;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.promos-position-a .slideshow-pagination > *:hover, .promos-position-a .slideshow-pagination > *.active {
  background: #54baba;
}

#events {
  position: relative;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
}
#events h2 {
  font: 200 36px/1.2 "LTC Goudy Oldstyle Pro";
  margin: 15px;
  color: #54baba;
  text-transform: uppercase;
}
#events h2 a {
  text-decoration: none;
}
#events .slideshow {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
#events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .event {
  position: relative;
  display: inline-block;
  width: calc(33.33% - 10px);
  height: 666px;
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .event {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  #events .event {
    width: 100vw;
    height: 580px;
    margin: 0;
  }
}
#events .event .thumbnail {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #events .event .thumbnail {
    height: 266px;
  }
}
#events .event .thumbnail.no-thumbnail {
  background: #dbdbdb;
}
#events .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: #394F71;
  border-bottom-color: #394F71;
  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 {
  display: block;
  position: relative;
  margin: 34px 0 37px;
  color: #525252;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #events .event .date {
    margin: 20px 0;
  }
}
#events .event .date a {
  color: inherit;
  text-decoration: none;
}
#events .event .date a:hover {
  text-decoration: underline;
}
#events .event .date:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E0E0;
}
@media only screen and (max-width: 767px) {
  #events .event .date:after {
    bottom: -8px;
  }
}
#events .event h3 {
  font: 200 24px/1.33 "LTC Goudy Oldstyle Pro";
  color: #54baba;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #events .event h3 {
    font-size: 20px;
  }
}
#events .event p {
  font-size: 15px;
  line-height: 1.33;
  color: #525252;
}
@media only screen and (max-width: 767px) {
  #events .event p {
    font-size: 14px;
  }
}
#events .event .copy {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #events .event .copy {
    padding: 0 10px;
  }
}
#events .event .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#events .slideshow-pagination {
  margin: 20px 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-pagination {
    display: none;
  }
}
#events .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #327d7d;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
#events .slideshow-pagination > *:hover, #events .slideshow-pagination > *.active {
  background: #54baba;
}

.reviews-slideshow {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow {
    padding-bottom: 75px;
  }
}
.reviews-slideshow h2 {
  font: 200 36px/1.2 "LTC Goudy Oldstyle Pro";
  margin-bottom: 30px;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
.reviews-slideshow .slideshow {
  width: calc(100% - 40px);
  max-width: 730px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .reviews-slideshow .slideshow {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow {
    width: calc(100% - 60px);
  }
}
.reviews-slideshow .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.reviews-slideshow .slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  text-align: center;
  color: #525252;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 16px;
  line-height: 26px;
}
.reviews-slideshow .slide h3,
.reviews-slideshow .slide .copy {
  quotes: "«" "»";
}
.reviews-slideshow .slide h3:before,
.reviews-slideshow .slide .copy:before {
  content: open-quote;
  display: inline;
}
.reviews-slideshow .slide h3:after,
.reviews-slideshow .slide .copy:after {
  content: close-quote;
  display: inline;
}
.reviews-slideshow .slide h3 {
  font-size: 32px;
  line-height: 1.2;
  color: #9B9B9B;
  text-transform: uppercase;
}
.reviews-slideshow .slide .copy {
  margin-top: 25px;
}
.reviews-slideshow .slide .copy * {
  display: inline;
}
.reviews-slideshow .slide .name {
  margin-top: 25px;
  font-weight: 700;
}
.reviews-slideshow .slideshow-button {
  border: 2px solid #000;
  border-bottom: 0;
  border-left: 0;
  height: 30px;
  overflow: hidden;
  position: absolute;
  text-indent: -100em;
  top: 50%;
  margin-top: -10px;
  width: 30px;
  z-index: 10;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-button {
    display: none;
  }
}
.reviews-slideshow .slideshow-button:hover {
  border-color: #aaa;
}
.reviews-slideshow .slideshow-button.previous {
  left: 40px;
  transform: rotate(-135deg);
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slideshow-button.previous {
    left: 20px;
  }
}
.reviews-slideshow .slideshow-button.next {
  right: 40px;
  transform: rotate(45deg);
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slideshow-button.next {
    right: 20px;
  }
}

/* COMMON STYLES */
.rooms .categories-list {
  margin-bottom: 30px;
  padding: 0 20px;
  overflow: hidden;
}
.rooms .categories-list 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: #327d7d;
  border: 0;
  outline: none;
  background: none;
}
@media (max-width: 550px) {
  .rooms .categories-list button {
    width: 50%;
    margin-right: 0;
    padding: 0 10px 0 16px;
    font-size: 15px;
  }
}
.rooms .categories-list button:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
  background: #327d7d;
}
.rooms .categories-list button:after {
  content: "";
  display: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 4px;
  background: #fff;
}
.rooms .categories-list button.active {
  color: #54baba;
  border: 0;
}
.rooms .categories-list button.active:before {
  background: #54baba;
}
.rooms .categories-list 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;
}

.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 .thumbnail {
  position: relative;
  float: right;
  margin: 0 0 20px 20px;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .room .thumbnail {
    width: 100%;
    margin: 20px 0;
    max-width: none;
    float: none;
  }
}
.room .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.room .links {
  margin: 20px 0;
}

/* TEMPLATE 1 - 1 */
.rooms .template-1-1 {
  width: 100%;
  margin-bottom: 20px;
  padding: 40px 20px 30px;
  background: #ecedee;
  overflow: hidden;
}
@media (max-width: 979px) {
  .rooms .template-1-1 {
    padding: 40px 20px 30px;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-1 {
    padding: 0;
    text-align: left;
  }
}
.rooms .template-1-1 .thumbnail {
  position: relative;
  float: left;
  margin: 0;
  padding: 0 30px 0 0;
  width: 200px;
}
.rooms .template-1-1 .thumbnail img {
  width: 100%;
  display: block;
}
.rooms .template-1-1 .thumbnail nav {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.rooms .template-1-1 .thumbnail nav .price {
  display: table-cell;
  padding: 10px 5px 6px;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(0, 102, 203, 0.7);
}
.rooms .template-1-1 .thumbnail nav .price .number {
  font-size: 22px;
}
.rooms .template-1-1 .thumbnail nav .button {
  display: table-cell;
  width: 50%;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  line-height: 19px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  background: rgba(0, 102, 203, 0.5);
}
@media (max-width: 550px) {
  .rooms .template-1-1 .thumbnail {
    float: none;
    padding: 0;
    width: 100%;
  }
  .rooms .template-1-1 .thumbnail img {
    width: 100%;
  }
  .rooms .template-1-1 .thumbnail nav {
    display: table;
  }
}
.rooms .template-1-1 .description {
  position: relative;
  margin-left: 230px;
  padding-right: 200px;
}
@media (max-width: 767px) {
  .rooms .template-1-1 .description {
    padding-right: 0;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-1 .description {
    margin-left: 0;
    padding: 10px;
  }
}
.rooms .template-1-1 .description h3 {
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #327d7d;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .description h3 {
    margin-bottom: 10px;
    font-weight: bold;
  }
}
.rooms .template-1-1 .description p {
  margin-bottom: 20px;
}
.rooms .template-1-1 .description nav.links a {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}
.rooms .template-1-1 .description nav.links a:after {
  content: "";
  position: absolute;
  top: 1px;
  right: -1px;
  height: 15px;
  width: 1px;
  background: #aaa;
}
.rooms .template-1-1 .description nav.links a:last-child {
  margin: 0;
  padding: 0;
}
.rooms .template-1-1 .description nav.links a:last-child:after {
  content: none;
}
.rooms .template-1-1.no-booking .description {
  padding-right: 0;
}
.rooms .template-1-1 .features span {
  display: inline-block;
  margin: 0 20px 8px 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #327d7d;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .features span {
    display: block;
    margin: 0 0 8px 0;
  }
}
.rooms .template-1-1 .amenities {
  position: relative;
  margin: 10px 0;
  line-height: 30px;
  height: 30px;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .amenities {
    margin: 15px 0;
  }
}
.rooms .template-1-1 .amenities.multiline {
  margin-right: 50px;
}
.rooms .template-1-1 .amenities .main-list {
  height: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.rooms .template-1-1 .amenities .additional-list {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  opacity: 0;
  line-height: 30px;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  padding: 20px 70px 20px 20px;
  background: #ecedee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.rooms .template-1-1 .amenities span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 10px;
  vertical-align: middle;
}
.rooms .template-1-1 .amenities .toggle {
  display: none;
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 31px;
  height: 100%;
  margin: 0;
  border-left: 1px solid #a6a6a6;
  text-align: right;
  z-index: 4;
}
.rooms .template-1-1 .amenities .toggle:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
}
.rooms .template-1-1 .amenities.multiline .toggle {
  display: block;
}
.rooms .template-1-1 .amenities.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.rooms .template-1-1 .amenities.expand .toggle:before, .rooms .template-1-1 .amenities.expand .toggle:after {
  content: "";
  display: block;
  background: #327d7d;
  position: absolute;
  transform: rotate(45deg);
}
.rooms .template-1-1 .amenities.expand .toggle:before {
  width: 20px;
  height: 2px;
  top: 9px;
  right: 0;
}
.rooms .template-1-1 .amenities.expand .toggle:after {
  width: 2px;
  height: 20px;
  top: 0;
  right: 9px;
}
.rooms .template-1-1 .booking-info {
  width: 140px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}
@media (max-width: 550px) {
  .rooms .template-1-1 .booking-info {
    display: none;
  }
}
@media (max-width: 767px) {
  .rooms .template-1-1 .booking-info {
    position: static;
    width: auto;
    margin: 20px 0;
  }
}
.rooms .template-1-1 .booking-info .price {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
}
@media (max-width: 767px) {
  .rooms .template-1-1 .booking-info .price {
    font-size: 18px;
  }
}
.rooms .template-1-1 .booking-info .button {
  width: 140px;
}
@media (max-width: 767px) {
  .rooms .template-1-1 .booking-info .price,
.rooms .template-1-1 .booking-info .button {
    display: inline-block;
    width: auto;
    margin-right: 10px;
  }
}

/* TEMPLATE 1 - 2 */
.rooms .template-1-2 {
  width: 31%;
  float: left;
  margin: 0 3.5% 3.5% 0;
  padding: 0;
  background: #ecedee;
}
.rooms .template-1-2:nth-of-type(3) {
  margin-right: 0;
}
@media (min-width: 1320px) {
  .rooms .template-1-2 {
    width: 22%;
    margin: 0 4% 4% 0;
  }
  .rooms .template-1-2:nth-of-type(3) {
    margin-right: 4%;
  }
  .rooms .template-1-2:nth-of-type(4) {
    margin-right: 0;
  }
}
@media (max-width: 979px) {
  .rooms .template-1-2 {
    width: 48%;
    margin-right: 4%;
  }
  .rooms .template-1-2:nth-of-type(3) {
    margin-right: 4%;
  }
  .rooms .template-1-2:nth-of-type(even) {
    margin-right: 0;
  }
}
@media (max-width: 550px) {
  .rooms .template-1-2 {
    width: 100%;
    margin-right: 0;
  }
  .rooms .template-1-2:nth-of-type(3) {
    margin-right: 0;
  }
}
.rooms .template-1-2 .thumbnail {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
}
.rooms .template-1-2 .thumbnail img {
  width: 100%;
  display: block;
}
.rooms .template-1-2 .thumbnail nav {
  display: table;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.rooms .template-1-2 .thumbnail nav .price {
  display: table-cell;
  padding: 10px 5px 6px;
  width: 50%;
  text-align: center;
  vertical-align: middle;
  font-size: 10px;
  line-height: 16px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(0, 102, 203, 0.7);
}
.rooms .template-1-2 .thumbnail nav .price .number {
  font-size: 22px;
}
.rooms .template-1-2 .thumbnail nav .button {
  display: table-cell;
  width: 50%;
  font-size: 15px;
  text-align: center;
  vertical-align: middle;
  line-height: 19px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  background: rgba(0, 102, 203, 0.5);
}
.rooms .template-1-2 .description {
  position: relative;
  padding: 10px;
}
.rooms .template-1-2 .description h3 {
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  color: #637e91;
}
.rooms .template-1-2 .description nav.links a {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  margin-right: 8px;
  padding-right: 8px;
}
.rooms .template-1-2 .description nav.links a:after {
  content: "";
  position: absolute;
  top: 1px;
  right: -1px;
  height: 15px;
  width: 1px;
  background: #ac7b59;
}
.rooms .template-1-2 .description nav.links a:last-child {
  margin: 0;
  padding: 0;
}
.rooms .template-1-2 .description nav.links a:last-child:after {
  content: none;
}
.rooms .template-1-2 .features span {
  display: block;
  margin: 0 0 8px 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #637e91;
}
.rooms .template-1-2 .amenities {
  position: relative;
  margin: 15px 0;
  line-height: 30px;
  height: 30px;
}
.rooms .template-1-2 .amenities.multiline {
  margin-right: 50px;
}
.rooms .template-1-2 .amenities .main-list {
  height: 30px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.rooms .template-1-2 .amenities .additional-list {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  opacity: 0;
  line-height: 30px;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s ease 0.2s;
  padding: 20px 70px 20px 20px;
  background: #ecedee;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.rooms .template-1-2 .amenities span {
  display: inline-block;
  font-size: 20px;
  letter-spacing: 10px;
  vertical-align: middle;
}
.rooms .template-1-2 .amenities .toggle {
  display: none;
  position: absolute;
  right: -50px;
  bottom: 0;
  width: 31px;
  height: 100%;
  margin: 0;
  border-left: 1px solid #a6a6a6;
  text-align: right;
  z-index: 4;
}
.rooms .template-1-2 .amenities .toggle:before {
  content: "•••";
  display: inline-block;
  font-size: 20px;
}
.rooms .template-1-2 .amenities.multiline .toggle {
  display: block;
}
.rooms .template-1-2 .amenities.expand .additional-list {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transition: opacity 0.2s, visibility 0s ease 0s;
}
.rooms .template-1-2 .amenities.expand .toggle:before, .rooms .template-1-2 .amenities.expand .toggle:after {
  content: "";
  display: block;
  background: #0066cc;
  position: absolute;
  transform: rotate(45deg);
}
.rooms .template-1-2 .amenities.expand .toggle:before {
  width: 20px;
  height: 2px;
  top: 14px;
  right: 0;
}
.rooms .template-1-2 .amenities.expand .toggle:after {
  width: 2px;
  height: 20px;
  top: 5px;
  right: 9px;
}

/* TEMPLATE 2 */
.rooms .template-2 {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: #edf5f5;
  margin: 40px 0;
}
@media (max-width: 735px) {
  .rooms .template-2 {
    margin: 0;
  }
}
.rooms .template-2:nth-child(even) {
  background: #f2f7f7;
}
.rooms .template-2 .background {
  position: absolute;
  top: 0;
  left: 320px;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
@media (max-width: 735px) {
  .rooms .template-2 .background {
    position: relative;
    padding-top: 78%;
    width: 100%;
    left: auto;
  }
  .rooms .template-2 .background:after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(33, 33, 33, 0.75);
  }
}
@media (max-width: 735px) and (orientation: landscape) {
  .rooms .template-2 .background {
    padding-top: 50%;
  }
}
.rooms .template-2 .background .room-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rooms .template-2 .background .price {
  position: absolute;
  bottom: 35px;
  right: 35px;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  z-index: 2;
}
.rooms .template-2 .background .price .number {
  font-size: 48px;
}
@media (max-width: 735px) {
  .rooms .template-2 .background .price {
    right: auto;
    left: 20px;
    bottom: 4px;
    font-size: 12px;
    line-height: 26px;
  }
  .rooms .template-2 .background .price .number {
    font-size: 25px;
  }
}
.rooms .template-2 .background a.price:hover {
  color: #54baba;
}
.rooms .template-2 .background .book-now {
  display: none;
  position: absolute;
  bottom: 4px;
  right: 20px;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  z-index: 2;
  text-decoration: none;
}
@media (max-width: 735px) {
  .rooms .template-2 .background .book-now {
    display: block;
  }
}
.rooms .template-2 .description {
  box-sizing: border-box;
  height: 500px;
  float: left;
  width: 320px;
  padding: 30px 40px;
  color: #000;
}
@media (max-width: 735px) {
  .rooms .template-2 .description {
    padding: 15px 20px 40px;
    width: 100%;
    height: auto;
  }
}
.rooms .template-2 .description h3 {
  font-size: 24px;
  line-height: 28px;
  margin: 6px 0 15px;
}
@media (max-width: 735px) {
  .rooms .template-2 .description h3 {
    font-size: 15px;
  }
}
.rooms .template-2 .description p {
  font-size: 13px;
  line-height: 24px;
}
@media (max-width: 735px) {
  .rooms .template-2 .description p {
    font-size: 12px;
    line-height: 18px;
  }
}
.rooms .template-2 .description .expand-collapse {
  position: relative;
  display: inline-block;
  margin: 30px 0;
  text-decoration: none;
  color: inherit;
  font-size: 16px;
  line-height: 16px;
  padding-right: 13px;
  border-bottom: 1px dashed #000;
}
@media (max-width: 735px) {
  .rooms .template-2 .description .expand-collapse {
    display: block;
    text-align: center;
    padding: 0;
    border: 0;
    font-size: 10px;
  }
  .rooms .template-2 .description .expand-collapse:before, .rooms .template-2 .description .expand-collapse:after {
    border-bottom: 1px dashed #000;
  }
}
.rooms .template-2 .description .expand-collapse:before {
  content: attr(data-expand);
}
.rooms .template-2 .description .expand-collapse:after {
  content: attr(data-collapse);
}
.rooms .template-2 .description .expand-collapse span {
  display: block;
  font-size: 16px;
  line-height: 15px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.rooms .template-2 .description .expand-collapse span:before {
  content: attr(data-expand);
}
.rooms .template-2 .description .expand-collapse span:after {
  content: attr(data-collapse);
}
@media (max-width: 735px) {
  .rooms .template-2 .description .expand-collapse span {
    bottom: -17px;
    right: 50%;
    margin-right: -5px;
    transform: rotate(90deg);
  }
}
.rooms .template-2 .description .expand-collapse.expand:before {
  display: inline-block;
}
.rooms .template-2 .description .expand-collapse.expand:after {
  display: none;
}
.rooms .template-2 .description .expand-collapse.expand span:before {
  display: inline-block;
}
.rooms .template-2 .description .expand-collapse.expand span:after {
  display: none;
}
.rooms .template-2 .description .expand-collapse.collapse:before {
  display: none;
}
.rooms .template-2 .description .expand-collapse.collapse:after {
  display: inline-block;
}
.rooms .template-2 .description .expand-collapse.collapse span:before {
  display: none;
}
.rooms .template-2 .description .expand-collapse.collapse span:after {
  display: inline-block;
}
.rooms .template-2 .description .full-description {
  box-sizing: border-box;
  position: absolute;
  right: 0;
  top: -100%;
  left: 320px;
  height: 100%;
  padding: 40px 200px 40px 40px;
  font-size: 13px;
  line-height: 24px;
  background: rgba(255, 255, 255, 0.85);
  transition: top 0.3s ease-in-out;
  z-index: 2;
}
.rooms .template-2 .description .full-description.show {
  top: 0;
}
@media (max-width: 979px) and (min-width: 736px) {
  .rooms .template-2 .description .full-description {
    padding: 100px 30px 40px 40px;
  }
}
@media (max-width: 735px) {
  .rooms .template-2 .description .full-description {
    position: static;
    padding: 0;
    display: none;
    background: none;
  }
  .rooms .template-2 .description .full-description p {
    margin: 15px 0;
  }
  .rooms .template-2 .description .full-description.show {
    display: block;
  }
}
.rooms .template-2 .description .full-description .close {
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40px;
  right: 40px;
  text-indent: -1000px;
  overflow: hidden;
  transform: rotate(45deg);
  cursor: pointer;
}
@media (max-width: 735px) {
  .rooms .template-2 .description .full-description .close {
    display: none;
  }
}
.rooms .template-2 .description .full-description .close:before, .rooms .template-2 .description .full-description .close:after {
  content: "";
  display: block;
  position: absolute;
  background: #54baba;
}
.rooms .template-2 .description .full-description .close:before {
  width: 2px;
  height: 50px;
  top: 0;
  left: 24px;
}
.rooms .template-2 .description .full-description .close:after {
  width: 50px;
  height: 2px;
  top: 24px;
  left: 0;
}
.rooms .template-2 .description .full-description .close:hover:before, .rooms .template-2 .description .full-description .close:hover:after {
  background: #65c8c8;
}
.rooms .template-2 .description .full-description .inner-wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
}
.rooms .template-2 nav {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 240px;
}
@media (max-width: 735px) {
  .rooms .template-2 nav {
    position: static;
    width: auto;
    text-align: center;
    margin-top: 25px;
  }
}
.rooms .template-2 nav a {
  width: 100%;
}
.rooms .template-2 nav a + a {
  margin-top: 10px;
}
@media (max-width: 735px) {
  .rooms .template-2 nav a {
    height: auto;
    line-height: 16px;
    font-size: 10px;
    color: #000;
    font-weight: 400;
    text-decoration: underline;
    background: none;
    padding: 0;
    margin: 0 10px;
    width: auto;
    font-family: "Roboto Condensed", sans-serif;
  }
  .rooms .template-2 nav a + a {
    margin-top: 0;
  }
  .rooms .template-2 nav a.book-now {
    display: none;
  }
}
.rooms .template-2 nav .rooms-item-gallery {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  bottom: -10px;
  left: 310px;
  background: black;
  text-indent: -1000px;
  overflow: hidden;
  line-height: 16px;
  font-size: 10px;
  text-transform: uppercase;
}
.rooms .template-2 nav .rooms-item-gallery:hover {
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 735px) {
  .rooms .template-2 nav .rooms-item-gallery {
    width: auto;
    height: auto;
    border-radius: 0;
    position: static;
    background: none;
    text-indent: 0;
    text-decoration: underline;
    overflow: visible;
    display: inline-block;
  }
}
.rooms .template-2 nav .rooms-item-gallery svg {
  content: "";
  display: block;
  width: 22px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  margin: -8px 0 0 -11px;
}
@media (max-width: 735px) {
  .rooms .template-2 nav .rooms-item-gallery svg {
    display: none;
  }
}

/* TEMPLATE 3*/
.rooms .template-3 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
  background: #000;
  margin: 10px 0;
}
@media (max-width: 735px) {
  .rooms .template-3 {
    height: auto;
    margin: 0;
  }
}
.rooms .template-3 .description {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  height: 100%;
  width: 50%;
  padding: 30px 40px 30px 30px;
  background: rgba(50, 125, 125, 0.6);
  color: #fff;
}
@media (max-width: 735px) {
  .rooms .template-3 .description {
    position: static;
    height: auto;
    width: 100%;
    padding: 30px 15px 25px;
    background: none;
  }
}
.rooms .template-3 .description h3 {
  font-size: 24px;
  line-height: 28px;
  margin: 6px 0 15px;
}
@media (max-width: 735px) {
  .rooms .template-3 .description h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.rooms .template-3 .description p {
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 735px) {
  .rooms .template-3 .description p {
    font-size: 15px;
    line-height: 18px;
  }
}
.rooms .template-3 .description nav {
  position: absolute;
  bottom: 30px;
  left: 30px;
  white-space: nowrap;
  font-size: 18px;
}
@media (max-width: 735px) {
  .rooms .template-3 .description nav {
    position: static;
    text-align: center;
    white-space: normal;
    font-size: 15px;
    width: 100%;
    margin-top: 10px;
  }
}
.rooms .template-3 .description nav a {
  color: inherit;
}
@media (max-width: 735px) {
  .rooms .template-3 .description nav a {
    margin: 5px 14px;
    display: inline-block;
    text-transform: uppercase;
  }
}
.rooms .template-3 .description nav a + a {
  margin-left: 30px;
}
@media (max-width: 735px) {
  .rooms .template-3 .description nav a + a {
    margin-left: 14px;
  }
}
.rooms .template-3 .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
@media (max-width: 735px) {
  .rooms .template-3 .background {
    position: relative;
    height: 0;
    width: 100%;
    padding-top: 37.5%;
  }
}
.rooms .template-3 .background .room-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.rooms .template-3 .background .price {
  position: absolute;
  bottom: 35px;
  right: 50%;
  margin-right: 30px;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 735px) {
  .rooms .template-3 .background .price {
    display: none;
  }
}
.rooms .template-3 .background .price .number {
  font-size: 36px;
}
.rooms .template-3 .background a.price:hover {
  color: #54baba;
}
.rooms .template-3 .background .rooms-item-gallery {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: black;
  text-indent: -1000px;
  overflow: hidden;
}
.rooms .template-3 .background .rooms-item-gallery:hover {
  background: rgba(0, 0, 0, 0.6);
}
@media (max-width: 735px) {
  .rooms .template-3 .background .rooms-item-gallery {
    display: none;
  }
}
.rooms .template-3 .background .rooms-item-gallery svg {
  content: "";
  display: block;
  width: 22px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  margin: -8px 0 0 -11px;
}

/* TEMPLATE 4*/
.rooms {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
}
.rooms .category-selector {
  text-align: center;
  font-size: 0;
  max-width: 660px;
  margin: 106px auto 60px;
  height: 40px;
  border-bottom: 1px solid var(--maven-blue);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 800px) {
  .rooms .category-selector {
    gap: 0px;
    max-width: 100%;
    width: 100%;
    align-items: flex-end;
    height: 56px;
    margin: 35px auto 35px;
    white-space: nowrap;
    overflow-x: auto;
    --webkit-overflow-scrolling: touch;
  }
}
.rooms .category-selector .select-wrapper {
  display: none;
}
.rooms .category-selector .button {
  position: relative;
  height: 40px;
  margin: 0;
  padding: 12px 24px;
  gap: 10px;
  overflow: visible;
  -moz-text-align-last: auto;
  text-align-last: auto;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  color: #394F71;
  font-size: 1rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
  width: 100%;
  max-width: 140px;
  display: flex;
  flex: 1 1 0;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .rooms .category-selector .button {
    max-width: 100%;
    white-space: normal;
    overflow: hidden;
    height: 56px;
    font-size: 0.875rem;
  }
}
.rooms .category-selector .button:hover {
  color: var(--maven-blue);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
  color: var(--maven-blue);
}
@media (max-width: 800px) {
  .rooms .category-selector .button:hover {
    text-underline-offset: 28px;
  }
}
.rooms .category-selector .button.active {
  color: var(--maven-blue);
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 3px;
  color: var(--maven-blue);
}
@media (max-width: 800px) {
  .rooms .category-selector .button.active {
    text-underline-offset: 28px;
  }
}
.rooms .template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-rows: 500px;
  grid-auto-rows: auto;
  gap: 30px;
  width: 100%;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 880px) {
  .rooms .template-grid {
    gap: 20px;
  }
}
.rooms .template-grid .template-4 {
  width: 100%;
  max-width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rooms .template-grid .template-4 figure.thumbnail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  float: none;
}
.rooms .template-grid .template-4 figure.thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info {
  width: 100%;
  height: 100%;
  padding: 0px 24px 24px 24px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  text-align: center;
  margin: 24px 0px;
  color: #EFE9E0;
  font-size: 1.25rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  position: relative;
  background: linear-gradient(0deg, 0%, 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  padding: 12px 0px;
  border-top: 1px solid #EFE9E0;
  border-right: 1px solid #EFE9E0;
  border-left: 1px solid #EFE9E0;
  position: relative;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container h3.room-name {
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
  width: 100%;
  text-align: center;
  max-width: 312px;
  margin-bottom: 6px;
}
@media (width <= 900px) {
  .rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container h3.room-name {
    max-width: 100%;
    width: 100%;
  }
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container .room-code {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  position: relative;
  top: 13%;
  font-size: 1.125rem;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container .features {
  width: 100%;
  top: 150px;
  position: absolute;
  text-align: center;
  color: #EFE9E0;
  font-size: 18px;
  font-family: Goudy Old Style;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1 1 0;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  max-width: 100%;
  height: 32px;
}
@media (width <= 900px) {
  .rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container .features {
    max-width: 100%;
    width: 100%;
  }
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container .short-desc {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #EFE9E0;
  font-size: 18px;
  font-family: Roboto Condensed;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1 1 0;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 50px 12px 0px;
}
@media (max-width: 735px) {
  .rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .room-detail-container .short-desc {
    padding: 70px 12px 0px;
  }
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper {
  align-self: stretch;
  height: 48px;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .view-cta {
  flex: 1 1 0;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  cursor: pointer;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .view-cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .view-cta .cta {
  background: none;
  color: var(--maven-light);
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .book-cta {
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #EFE9E0;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
  cursor: pointer;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .book-cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .book-cta .cta {
  background: none;
  flex: 1 1 0;
  width: 100%;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info .cta-wrapper .book-cta .cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info:hover .room-detail-container {
  flex: 1;
  padding-top: 100px;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info:hover .room-detail-container .short-desc {
  opacity: 1;
  display: block;
}
.rooms .template-grid .template-4 figure.thumbnail figcaption.intro .detail-info:hover .room-detail-container .features {
  opacity: 1;
  display: block;
}
.rooms .template-grid .template-4 figure.thumbnail .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.rooms .template-grid article.rooms-entry.template-4.span-feature {
  grid-column: span 2;
  width: 100%;
}
@media (max-width: 880px) {
  .rooms .template-grid article.rooms-entry.template-4.span-feature {
    grid-column: span 1;
  }
}

.room {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 40px;
}
.room .details-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.room .details-grid-wrapper .top-line {
  grid-column: span 2;
  height: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .top-line {
    display: none;
  }
}
.room .details-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.room .details-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 112px 150px;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-background {
    display: none;
  }
}
.room .details-grid-wrapper .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.room .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.room .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.room .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
.room .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
  background: var(--maven-light);
  color: var(--maven-blue);
}
.room .details-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 77px;
  flex: 1;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.room .details-grid-wrapper .column-with-content .breadcrumbs-container {
  display: inline-flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  height: 32px;
  margin: 31px 0px 0px 40px;
  justify-content: flex-start;
  align-items: center;
}
.room .details-grid-wrapper .column-with-content .breadcrumbs-container img {
  display: block;
  max-width: 12px;
  height: 16px;
  width: 100%;
  overflow: hidden;
}
.room .details-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
.room .details-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.room .details-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.room .details-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-right: 100px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    gap: 24px;
  }
}
.room .details-grid-wrapper .column-with-content .content .short-desc {
  color: #394F71;
  font-size: 3.25rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .short-desc {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.room .details-grid-wrapper .column-with-content .content .long-desc {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .long-desc {
    font-size: 1rem;
    line-height: 30px;
  }
}
.room .details-grid-wrapper .column-with-content .content .cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  height: 40px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .cta-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .cta-wrapper .submit-rfp {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
}
.room .details-grid-wrapper .column-with-content .content .divider {
  width: 100%;
  height: 1px;
  background: #E2CDA9;
  border: 1px solid #e2cda9;
  margin-top: 61px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .divider {
    display: none;
  }
}
.room .details-grid-wrapper .column-with-content .content .title {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  margin-bottom: 36px;
  margin-top: 51px;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .title {
    font-size: 1rem;
    line-height: 30px;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile {
  display: none;
}
@media (max-width: 1000px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 112px 150px;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
    height: 40px;
  }
}
.room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
    padding: 12px 18px;
  }
}
.room .details-grid-wrapper .column-with-content .content .feature-amenities {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  gap: 50px;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .feature-amenities {
    font-size: 1rem !important;
  }
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .feature-amenities [class*=rooms-icon-] {
    font-size: 1rem !important;
  }
}
.room .details-grid-wrapper .column-with-content .content .feature-amenities .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  gap: 12px;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  white-space: wrap;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .feature-amenities .features {
    font-size: 1rem;
    line-height: 30px;
    white-space: normal;
  }
}
.room .details-grid-wrapper .column-with-content .content .feature-amenities .rooms-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  width: 100%;
}
@media (max-width: 800px) {
  .room .details-grid-wrapper .column-with-content .content .feature-amenities .rooms-amenities {
    font-size: 1rem;
    line-height: 30px;
  }
}

section.rooms-detail-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  top: 0px;
}
@media (max-width: 640px) {
  section.rooms-detail-slider {
    height: 464px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide {
    height: 360px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(102, 102, 102, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail {
  position: absolute;
  bottom: 0px;
  display: flex;
  max-width: 660px;
  width: 100%;
  height: 112px;
  border: 1px solid #efe9e0;
  margin: 0px auto 52px;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail {
    height: 164px;
    background-color: var(--maven-blue);
    bottom: -155px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
    font-size: 1.5rem;
    line-height: 24px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 1px #EFE9E0 solid;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
    flex-direction: column;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-features {
  width: 492px;
  height: 56px;
  text-align: center;
  color: #efe9e0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  line-height: 32px;
  padding: 12px 0px;
  text-transform: none;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-features {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-size: 1rem;
    line-height: 32px;
    border-bottom: 1px solid #efe9e0;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .venues-short-desc {
  max-width: 492px;
  width: 100%;
  height: 56px;
  text-align: center;
  color: #efe9e0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  line-height: 32px;
  padding: 12px 0px;
  text-transform: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  white-space: nowrap;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .venues-short-desc {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    font-size: 1rem;
    line-height: 32px;
    border-bottom: 1px solid #efe9e0;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px #EFE9E0 solid;
  width: 168px;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
    height: 40px;
    border-left: none;
    width: 100%;
    max-width: 370px;
    margin: 0 10px 10px;
    padding-top: 8px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
  background: #EFE9E0;
  color: #394F71;
  text-align: center;
  width: 100%;
  line-height: unset;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
    line-height: 16px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-italic-font);
  font-style: italic;
  font-weight: 400;
  max-width: 35px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .swiper-pagination.swiper-pagination-fraction {
    bottom: 36%;
    right: 20px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller {
  position: absolute;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  width: 100%;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller {
    top: 35%;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  section.rooms-detail-slider div#rooms-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
section.rooms-detail-slider .tagline-container {
  width: 52px;
  height: 52px;
  position: relative;
  left: 50%;
  bottom: 52px;
}
@media (max-width: 640px) {
  section.rooms-detail-slider .tagline-container {
    display: none;
  }
}
section.rooms-detail-slider .tagline-container .white-line {
  width: 100%;
  height: 0px;
  left: 0px;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #EFE9E0 solid;
}

.roomshowcase-gallery {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 800px;
}
@media (max-width: 640px) {
  .roomshowcase-gallery {
    max-width: 100%;
    width: 100%;
    height: 280px;
  }
}
.roomshowcase-gallery .slider-container {
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.roomshowcase-gallery .slider-container #fullslideshow {
  width: 1440px;
  height: 800px;
  max-width: 1440px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .roomshowcase-gallery .slider-container #fullslideshow {
    max-width: 100%;
    width: 100%;
    height: 280px;
  }
}
.roomshowcase-gallery .slider-container #fullslideshow .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.roomshowcase-gallery .slider-container #fullslideshow .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.roomshowcase-gallery .slider-container #fullslideshow figure.swiper-slide.test.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 1;
}
.roomshowcase-gallery .slider-container #fullslideshow .rooms-nav-controller {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.roomshowcase-gallery .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
}
@media (max-width: 640px) {
  .roomshowcase-gallery .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.roomshowcase-gallery .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
}
@media (max-width: 640px) {
  .roomshowcase-gallery .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.roomshowcase-gallery .slider-container #fullslideshow .full-photo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  max-width: 60px;
  height: 60px;
  width: 100%;
}
@media (max-width: 640px) {
  .roomshowcase-gallery .slider-container #fullslideshow .full-photo {
    bottom: 20px;
    right: 20px;
    max-width: 48px;
    height: 48px;
    width: 100%;
  }
}
.roomshowcase-gallery .slider-container #fullslideshow .full-photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#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 "LTC Goudy Oldstyle Pro";
  margin: 40px 0;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #home-gallery h2 {
    display: block;
  }
}
#home-gallery div.gallery-wrapper {
  overflow: hidden;
}
#home-gallery .photo {
  display: block;
  float: left;
  margin: 10px 0 0 10px;
  width: calc((100% - 60px) / 5);
  height: 0;
  padding-top: calc((100% - 60px) / 5);
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  font-size: 0;
  transition: opacity 0.3s ease-out;
  opacity: 1;
}
#home-gallery .photo:hover {
  opacity: 0.8;
}
#home-gallery .photo:nth-child(4), #home-gallery .photo:nth-child(5), #home-gallery .photo:nth-child(11) {
  width: calc((100% - 60px) / 5 * 2 + 10px);
}
@media only screen and (min-width: 768px) and (max-width: 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 "LTC Goudy Oldstyle Pro";
  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 "LTC Goudy Oldstyle Pro";
  margin-bottom: 30px;
  color: #54baba;
  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: #394F71;
  border-bottom-color: #394F71;
  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;
  margin-bottom: 20px;
  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 "Roboto Condensed", 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% - 100px) / 6);
  }
}
#feeds .feed-item:before {
  content: "";
  display: block;
  position: absolute;
  width: 31px;
  height: 31px;
  right: 10px;
  top: 10px;
  background: url("images/feeds-sprite.svg") -180px 0 no-repeat;
  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 "Roboto Condensed", 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: "Roboto Condensed", 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 .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: "Roboto Condensed", 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;
}

/*=========VENUE DETAIL PAGE SECTION ==================== */
.column-with-background a.venue-gallery {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 999;
}

@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: #54baba;
}
.blog-page.template-1 .single-post-back-button .back-to:hover {
  opacity: 0.8;
}
@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: "LTC Goudy Oldstyle Pro";
  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 {
  width: 80px;
  height: 100%;
  border-radius: 0;
  background-color: #54baba;
  border: none;
  cursor: pointer;
  color: transparent;
}
.blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit:hover {
  background-color: #48c6c6;
}
@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 "LTC Goudy Oldstyle Pro";
  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 "LTC Goudy Oldstyle Pro";
  color: #54baba;
  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: #54baba;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a:hover, .blog-page.template-1 .sidebar-wrap .blog-categories ul li a.active {
  opacity: 0.8;
}
.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 "LTC Goudy Oldstyle Pro";
  color: #54baba;
  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 #969696;
  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 "LTC Goudy Oldstyle Pro";
  color: #54baba;
  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: #54baba;
}
.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 42px/1em "LTC Goudy Oldstyle Pro";
  color: #54baba;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1440px) {
  .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;
  }
}

.blog-page.template-2 {
  background-color: #fff;
}
.blog-page.template-2.single-blog-post #content, .blog-page.template-2.blog-archive-view #content {
  padding: 140px 0 100px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post #content, .blog-page.template-2.blog-archive-view #content {
    padding: 100px 0 40px;
  }
}
.blog-page.template-2.blog-list-view .blog-posts-wrapper {
  padding-top: 0;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-2.blog-list-view .blog-posts-wrapper {
    padding-top: 0;
  }
}
.blog-page.template-2 .center-column {
  max-width: 1250px;
  padding: 0 20px;
}
.blog-page.template-2 .share-socials {
  position: absolute;
  right: -20px;
  bottom: 24px;
  width: 120px;
  text-align: left;
  min-height: 125px;
  background: #fff;
  margin-bottom: 0;
  height: 40px;
  padding: 10px 15px;
  border: 1px solid #dedede;
  opacity: 1;
  visibility: hidden;
  transition: opacity 350ms ease-in-out;
  z-index: 2;
  box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
}
.blog-page.template-2 .share-socials .share-title {
  color: #666;
  font-size: 14px;
  line-height: 1;
  display: block;
}
.blog-page.template-2 .share-socials .share-button {
  margin-top: 7px;
  vertical-align: top;
  height: 21px;
}
.blog-page.template-2 .share-socials .share-button.facebook-share {
  margin-top: 7px;
}
.blog-page.template-2 .share-socials .share-button.pinterest-share {
  margin-top: 8px;
}
.blog-page.template-2 .share-socials .share-button.pinterest-share a {
  display: inline-block !important;
  vertical-align: top !important;
}
.blog-page.template-2 .share-socials.visible {
  opacity: 1;
  visibility: visible;
}
.blog-page.template-2 .share-socials .common-close-button {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  height: 14px;
  width: 14px;
  background: transparent;
  font-size: 0;
  transition: background-color 350ms ease-in-out;
  opacity: 1;
}
.blog-page.template-2 .share-socials .common-close-button:before, .blog-page.template-2 .share-socials .common-close-button:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 14px;
  background: #000;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: background 350ms ease-in-out;
}
.blog-page.template-2 .share-socials .common-close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.blog-page.template-2 .share-socials .common-close-button:hover {
  opacity: 0.8;
}
.blog-page.template-2 .share-socials .common-close-button:hover:before, .blog-page.template-2 .share-socials .common-close-button:hover:after {
  background: #666;
}
.blog-page.template-2 .posts-controls {
  height: 63px;
  background-color: #EDEDED;
  position: relative;
  margin-top: 80px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-controls {
    margin-top: 30px;
  }
}
.blog-page.template-2 .posts-controls .center-column {
  height: 100%;
}
.blog-page.template-2 .posts-controls .controls-wrapper {
  height: 100%;
  position: relative;
}
.blog-page.template-2 .posts-controls .post-control-button {
  font: normal 16px/1 "Roboto Condensed", sans-serif;
  position: absolute;
  top: 50%;
  color: #9A9A9A;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 350ms ease-in-out;
  transform: translateY(-50%);
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-controls .post-control-button {
    font-size: 12px;
  }
}
.blog-page.template-2 .posts-controls .post-control-button .post-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #9A9A9A;
  border-radius: 50%;
  text-indent: -9999em;
  font-size: 0;
  z-index: 10;
}
.blog-page.template-2 .posts-controls .post-control-button .post-icon:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 5px;
  height: 5px;
  border: 1px solid #EDEDED;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(-135deg);
  transition: border-color 0.35s ease-in-out;
}
.blog-page.template-2 .posts-controls .post-control-button.previous-post {
  left: 25px;
}
.blog-page.template-2 .posts-controls .post-control-button.previous-post .post-icon {
  left: -25px;
}
.blog-page.template-2 .posts-controls .post-control-button.next-post {
  right: 25px;
}
.blog-page.template-2 .posts-controls .post-control-button.next-post .post-icon {
  right: -25px;
}
.blog-page.template-2 .posts-controls .post-control-button.next-post .post-icon:after {
  left: 4px;
  top: 4px;
  transform: rotate(45deg);
}
.blog-page.template-2 .posts-controls .post-control-button:hover {
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  html.blog-navigation-visible {
    overflow: hidden;
  }
}
#blog-hamburger-navigation {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 200px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  transition: right 200ms, visibility 200ms;
  text-align: center;
  z-index: 60;
  visibility: hidden;
}
@media only screen and (max-width: 1023px) {
  #blog-hamburger-navigation {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #blog-hamburger-navigation {
    padding-top: 140px;
  }
}
.blog-navigation-visible #blog-hamburger-navigation {
  right: 0;
  visibility: visible;
}
#blog-hamburger-navigation .main-menu {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  #blog-hamburger-navigation .main-menu {
    max-width: 90%;
  }
}
#blog-hamburger-navigation .main-menu .blog-categories li {
  position: relative;
  margin-bottom: 5px;
}
#blog-hamburger-navigation .main-menu .blog-categories li a {
  display: inline-block;
  padding: 5px 40px;
  font: 22px/1.2 "Roboto Condensed", sans-serif;
  text-decoration: none;
  color: #003E66;
  position: relative;
  text-transform: uppercase;
}
#blog-hamburger-navigation .main-menu .blog-categories li a:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  border-bottom: 3px solid #E04E39;
  opacity: 0;
  visibility: hidden;
  transition: opacity visibility 350ms ease-in-out;
}
#blog-hamburger-navigation .main-menu .blog-categories li a:hover, #blog-hamburger-navigation .main-menu .blog-categories li a.active {
  color: #003E66;
}
#blog-hamburger-navigation .main-menu .blog-categories li a:hover:after, #blog-hamburger-navigation .main-menu .blog-categories li a.active:after {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 1023px) {
  #blog-hamburger-navigation .main-menu .blog-categories li a {
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #blog-hamburger-navigation .main-menu .blog-categories li a {
    font-size: 18px;
    padding: 5px 10px;
  }
}
#blog-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;
}
#blog-hamburger-navigation .main-menu .menu.submenu a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  color: #003E66;
}
#blog-hamburger-navigation .main-menu .menu.submenu a:after {
  content: none;
}
#blog-hamburger-navigation .main-menu .menu.submenu a:hover, #blog-hamburger-navigation .main-menu .menu.submenu a.active {
  color: #5990B4;
}
#blog-hamburger-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 10px 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
  visibility: visible;
}
#blog-hamburger-navigation .main-menu .plus {
  display: block;
  height: 32px;
  width: 32px;
  position: absolute;
  top: 0;
  right: 10px;
  cursor: pointer;
  z-index: 10;
}
#blog-hamburger-navigation .main-menu .plus .horizontal, #blog-hamburger-navigation .main-menu .plus .vertical {
  position: absolute;
  transition: all 333ms ease-in-out;
  transform: rotate(-90deg);
  background-color: #003E66;
  top: 0;
}
#blog-hamburger-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#blog-hamburger-navigation .main-menu .plus .vertical {
  width: 2px;
  height: 8px;
  margin-left: 15px;
  margin-top: 12px;
}
#blog-hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #blog-hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(90deg);
  background: #003E66 !important;
}
#blog-hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#blog-hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
}
#blog-hamburger-navigation .blog-search {
  margin: 0 auto;
  width: 80%;
  display: none;
}
@media only screen and (max-width: 767px) {
  #blog-hamburger-navigation .blog-search {
    display: block;
  }
}
#blog-hamburger-navigation .blog-search .blog-search-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 40px;
  position: relative;
  box-sizing: border-box;
}
#blog-hamburger-navigation .blog-search .blog-search-form label {
  flex: 1;
  height: 100%;
}
#blog-hamburger-navigation .blog-search .blog-search-form label .search-field {
  width: 100%;
  height: 100%;
  border: none;
  background: #EDEDED;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 0;
  font-family: "LTC Goudy Oldstyle Pro";
  font-size: 14px;
  color: #000;
}
#blog-hamburger-navigation .blog-search .blog-search-form .search-submit {
  width: 46px;
  height: 100%;
  border-radius: 0;
  border: none;
  background: #5990B4;
  cursor: pointer;
  color: transparent;
}
@media only screen and (max-width: 767px) {
  #blog-hamburger-navigation .blog-search .blog-search-form .search-submit {
    width: 60px;
  }
}
#blog-hamburger-navigation .blog-search .blog-search-form .search-submit:hover {
  background-color: #003E66 !important;
}
#blog-hamburger-navigation .blog-search .blog-search-form svg {
  position: absolute;
  right: 22px;
  top: 12px;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.featured-posts {
  margin-bottom: 40px;
}
.featured-posts .page-content {
  text-align: center;
}
.featured-posts .page-content h2 {
  font: normal 48px/1.2 "Roboto Condensed", sans-serif;
  text-align: center;
  color: #003E66;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}
.featured-posts .page-content h2:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  border-bottom: 4px solid #5990B4;
}
@media only screen and (max-width: 767px) {
  .featured-posts .page-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.featured-posts .featured-posts-slider {
  max-width: 1210px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider {
    padding: 0;
  }
}
.featured-posts .featured-posts-slider .slideshow {
  margin: 0 auto;
  max-width: 1096px;
  overflow: hidden;
}
.featured-posts .featured-posts-slider .post {
  display: flex;
  flex-flow: wrap;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  min-height: 580px;
  font-family: "Roboto Condensed", sans-serif;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post {
    padding: 0;
    min-height: auto;
  }
}
.featured-posts .featured-posts-slider .post .post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 55%;
  background-color: #5990B4;
}
.featured-posts .featured-posts-slider .post .post-image:after {
  content: "";
  display: block;
  padding-top: 66%;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post .post-image {
    width: 100%;
  }
}
.featured-posts .featured-posts-slider .post .post-content-wrapper {
  text-align: left;
  width: 45%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: auto;
  background-color: #EDEDED;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper {
    padding-right: 0;
    width: 100%;
    justify-content: normal;
  }
}
.featured-posts .featured-posts-slider .post .post-content-wrapper .post-content {
  width: 100%;
  padding: 30px 20px 40px 20px;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper .post-content {
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper .post-content {
    margin-top: 0;
    padding: 20px;
  }
}
.featured-posts .featured-posts-slider .post .post-content-wrapper .post-date {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  color: #969696;
  margin-bottom: 10px;
}
.featured-posts .featured-posts-slider .post .post-content-wrapper h3.post-title {
  font: normal 50px/1 "Roboto Condensed", sans-serif;
  color: #003E66;
  margin-top: 5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.featured-posts .featured-posts-slider .post .post-content-wrapper h3.post-title a {
  color: #003E66;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper h3.post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper h3.post-title {
    margin: 0 0 15px;
  }
}
.featured-posts .featured-posts-slider .post .post-content-wrapper .post-text,
.featured-posts .featured-posts-slider .post .post-content-wrapper .post-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .post .post-content-wrapper .post-text,
.featured-posts .featured-posts-slider .post .post-content-wrapper .post-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.featured-posts .featured-posts-slider .post .post-content-wrapper .read-more-link {
  color: #E04E39;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #EDEDED;
  border-radius: 50%;
  text-indent: -9999em;
  font-size: 0;
  z-index: 10;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 17px;
  border: 4px solid #fff;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border-color 0.35s ease-in-out;
  margin: 4px 0 0 -11px;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button.previous {
  left: 0;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button.previous:after {
  transform: rotate(-135deg);
  margin-top: -8px;
  margin-left: -5px;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button.next {
  right: 0;
}
.featured-posts .featured-posts-slider .slideshow-controls .slideshow-button:hover {
  background: #003E66;
}
@media only screen and (max-width: 767px) {
  .featured-posts .featured-posts-slider .slideshow-controls {
    display: none;
  }
}
.featured-posts .featured-posts-slider .slideshow-pagination {
  margin-top: 10px;
  text-align: center;
  font-size: 0;
}
.featured-posts .featured-posts-slider .slideshow-pagination > * {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 8px;
  text-indent: -9999px;
  overflow: hidden;
  background: #D8D8D8;
  border-radius: 50%;
  border: 1px solid #979797;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.featured-posts .featured-posts-slider .slideshow-pagination > *:hover, .featured-posts .featured-posts-slider .slideshow-pagination > *.active {
  background: #5990B4;
}

.blog-page.template-2 .recent-posts .page-content {
  text-align: center;
}
.blog-page.template-2 .recent-posts .page-content h1, .blog-page.template-2 .recent-posts .page-content h2 {
  font: normal 48px/1.2 "Roboto Condensed", sans-serif;
  color: #003E66;
  box-sizing: border-box;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-align: center;
}
.blog-page.template-2 .recent-posts .page-content h1:after, .blog-page.template-2 .recent-posts .page-content h2:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  border-bottom: 4px solid #5990B4;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .recent-posts .page-content h1, .blog-page.template-2 .recent-posts .page-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.blog-page.template-2 .recent-posts .blog-posts-wrapper {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  position: relative;
}
.blog-page.template-2 .recent-posts .blog-posts-wrapper .see-more {
  display: block;
  position: relative;
  border: 1px solid #5990B4;
  color: #5990B4;
  font-size: 16px;
  margin: 0 auto 30px;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .recent-posts .blog-posts-wrapper .see-more {
    position: relative;
    margin: 0 auto;
    right: auto;
  }
}
.blog-page.template-2 .posts-content-wrap {
  font-family: "Roboto Condensed", sans-serif;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  width: 100%;
}
.blog-page.template-2 .posts-content-wrap .one-post {
  width: 33.3%;
  padding: 0 10px;
  box-sizing: border-box;
  margin-bottom: 35px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-2 .posts-content-wrap .one-post {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-content-wrap .one-post {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-content-wrap .one-post {
    padding: 0;
    margin-bottom: 20px;
  }
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #5990B4;
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-image:after {
  content: "";
  display: block;
  padding-top: 54%;
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-category {
  position: absolute;
  top: 0;
  right: 0;
  height: 30px;
  text-align: center;
  padding: 0 15px;
  background-color: #E04E39;
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  text-transform: uppercase;
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-content {
  width: 100%;
  background: #fff;
  padding: 35px 20px 20px;
  box-sizing: border-box;
  border: 1px solid #E1E1E1;
  min-height: 200px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-content-wrap .one-post .one-post-content {
    padding: 20px;
    min-height: 120px;
  }
}
.blog-page.template-2 .posts-content-wrap .one-post .date-author {
  font-size: 13px;
  line-height: 1.2;
  color: #8A8A8A;
}
.blog-page.template-2 .posts-content-wrap .one-post .date-author .date {
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  padding-right: 20px;
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-title {
  font: normal 28px/1 "Roboto Condensed", sans-serif;
  margin: 5px 0 20px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-2 .posts-content-wrap .one-post .one-post-title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-content-wrap .one-post .one-post-title {
    margin: 5px 0 30px;
  }
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-title a {
  color: #003E66;
  text-decoration: none;
}
.blog-page.template-2 .posts-content-wrap .one-post .one-post-text,
.blog-page.template-2 .posts-content-wrap .one-post .one-post-text p {
  font-size: 16px;
  line-height: 1.6em;
  color: #525252;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .posts-content-wrap .one-post .one-post-text,
.blog-page.template-2 .posts-content-wrap .one-post .one-post-text p {
    font-size: 14px;
  }
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links {
  display: flex;
  font-size: 0;
  position: absolute;
  left: 20px;
  right: 40px;
  bottom: 20px;
  vertical-align: bottom;
  width: calc(100% - 40px);
  justify-content: space-between;
  align-items: center;
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links .read-more-link {
  font-size: 15px;
  line-height: 1;
  border: none;
  text-align: center;
  padding: 0 10px 0 0;
  text-transform: none;
  border-radius: 0;
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links .read-more-link:after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid #969696;
  border-bottom: 0;
  border-left: 0;
  transform: rotate(45deg) translate(-50%, -50%);
  transition: border-color 0.35s ease-in-out;
  margin: 2px 0 0 -11px;
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links .post-share-button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  color: #969696;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  align-items: center;
  transition: opacity 350ms ease-in-out;
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links .post-share-button svg {
  fill: #969696;
  margin-left: 10px;
}
.blog-page.template-2 .posts-content-wrap .one-post .post-links .post-share-button:hover {
  opacity: 0.8;
}

.related-posts {
  margin-top: 100px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .related-posts {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
.related-posts .page-content {
  text-align: center;
}
.related-posts .page-content .caption {
  font: normal 18px/1.2 "Roboto Condensed", sans-serif;
  color: #5990B4;
  text-transform: uppercase;
}
.related-posts .page-content h2 {
  font: normal 50px/1.2 "Roboto Condensed", sans-serif;
  text-align: center;
  color: #003E66;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .related-posts .page-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.related-posts .related-posts-slider {
  max-width: 1135px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .related-posts .related-posts-slider {
    padding: 0;
  }
}
.related-posts .related-posts-slider .slideshow {
  margin: 0 auto;
  max-width: 1135px;
  overflow: hidden;
}
.related-posts .related-posts-slider .post {
  display: flex;
  flex-flow: wrap;
  width: 33.3%;
  position: relative;
  box-sizing: border-box;
  height: 100%;
  min-height: 450px;
  border-radius: 60px 16px 16px 16px;
  overflow: hidden;
  font-family: "Roboto Condensed", sans-serif;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .related-posts .related-posts-slider .post {
    padding: 0;
    min-height: auto;
    box-shadow: none;
  }
}
.related-posts .related-posts-slider .post .post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  background-color: #5990B4;
  border-radius: 60px 16px 16px 16px;
}
.related-posts .related-posts-slider .post .post-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 236px;
  background: linear-gradient(180deg, rgba(0, 46, 50, 0) 0%, #002E32 100%);
}
.related-posts .related-posts-slider .post .post-image:after {
  content: "";
  display: block;
  padding-top: 66%;
}
@media only screen and (max-width: 767px) {
  .related-posts .related-posts-slider .post .post-image {
    width: 100%;
  }
}
.related-posts .related-posts-slider .post .post-category {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  padding: 14px 20px;
  background-color: #E04E39;
  font-size: 13px;
  line-height: 1;
  border-bottom-left-radius: 10px;
  color: #fff;
  text-transform: uppercase;
}
.related-posts .related-posts-slider .post .post-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  padding: 30px;
  width: 100%;
}
.related-posts .related-posts-slider .post .post-content-wrapper .post-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 20px;
  text-align: left;
}
.related-posts .related-posts-slider .post .post-content-wrapper h3.post-title {
  font: normal 34px/1 "Roboto Condensed", sans-serif;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
}
.related-posts .related-posts-slider .post .post-content-wrapper h3.post-title a {
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .related-posts .related-posts-slider .post .post-content-wrapper h3.post-title {
    font-size: 20px;
  }
}
.related-posts .related-posts-slider .post .post-content-wrapper .read-more-link {
  font-size: 12px;
  font-weight: normal;
  border-radius: 14px;
  line-height: 30px;
  background-color: #E04E39;
  color: #fff;
  padding: 0 25px;
  transition: opacity 350ms ease-in-out;
}

.footer-blog {
  font-family: "Roboto Condensed", sans-serif;
}
.footer-blog .footer-top-bar {
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: #5990B4;
}
@media only screen and (max-width: 767px) {
  .footer-blog .footer-top-bar {
    padding-top: 20px;
  }
}
.footer-blog .footer-top-bar-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-right: 50px;
  margin-left: 130px;
}
@media only screen and (max-width: 1023px) {
  .footer-blog .footer-top-bar-wrapper {
    margin: 0;
  }
}
.footer-blog .footer-top-bar-wrapper .text-block {
  margin-right: 50px;
  width: 43%;
  color: #fff;
}
.footer-blog .footer-top-bar-wrapper .text-block h4 {
  font-size: 26px;
  line-height: 1.2;
  text-transform: uppercase;
}
.footer-blog .footer-top-bar-wrapper .text-block span {
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
}
@media only screen and (max-width: 1023px) {
  .footer-blog .footer-top-bar-wrapper .text-block {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .footer-blog .footer-top-bar-wrapper .text-block {
    margin-bottom: 10px;
  }
  .footer-blog .footer-top-bar-wrapper .text-block h4 {
    font-size: 18px;
  }
  .footer-blog .footer-top-bar-wrapper .text-block span {
    font-size: 16px;
  }
}
.footer-blog .footer-top-bar-wrapper .input-text-wrapper {
  display: flex;
  margin-bottom: 10px;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter {
  width: 50%;
}
@media only screen and (max-width: 1023px) {
  .footer-blog .footer-top-bar-wrapper .blog-newsletter {
    width: 100%;
  }
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text] {
  flex-grow: 1;
  height: 58px;
  padding: 0 20px;
  background: #fff;
  font-size: 15px;
  line-height: 58px;
  color: #000;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]::-webkit-input-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:-moz-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]::-moz-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:-ms-input-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:focus::-webkit-input-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:focus:-moz-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:focus::-moz-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter input[type=text]:focus:-ms-input-placeholder {
  color: #aeaeae;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter .button {
  padding: 0 45px;
  vertical-align: top;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  height: 58px;
  background-color: #003E66;
  transition: background-color 350ms ease-in-out;
}
.footer-blog .footer-top-bar-wrapper .blog-newsletter .button:hover {
  background-color: #D93F2C;
}
@media only screen and (max-width: 767px) {
  .footer-blog .footer-top-bar-wrapper .blog-newsletter .button {
    padding: 0 15px;
    font-size: 14px;
  }
}
.footer-blog .footer-top-bar-wrapper .privacy-policy {
  display: flex;
  align-items: center;
  margin-left: 20px;
  color: #fff;
  font-size: 13px;
  line-height: 14px;
}
@media only screen and (max-width: 1023px) {
  .footer-blog .footer-top-bar-wrapper .privacy-policy {
    margin-left: 0;
  }
}
.footer-blog .footer-top-bar-wrapper .privacy-policy input {
  margin-right: 10px;
}
.footer-blog .footer-bottom-bar {
  padding: 35px 0;
  background-color: #fff;
}
.footer-blog .footer-bottom-bar-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 479) {
  .footer-blog .footer-bottom-bar-wrapper {
    justify-content: center;
  }
}
.footer-blog .footer-bottom-bar-wrapper .logos-wrapper {
  margin-right: 40px;
}
.footer-blog .footer-bottom-bar-wrapper .logos-wrapper a {
  display: block;
  max-width: 155px;
  height: 82px;
}
.footer-blog .footer-bottom-bar-wrapper .logos-wrapper img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .footer-blog .footer-bottom-bar-wrapper .logos-wrapper a {
    max-width: 100px;
    height: auto;
  }
}
.footer-blog .footer-bottom-bar-wrapper .footer-contacts {
  margin-right: 20px;
}
.footer-blog .footer-bottom-bar-wrapper .footer-contacts a {
  display: block;
  color: #6c6c6c;
  font-size: 17px;
  line-height: 25px;
  text-decoration: none;
}
.footer-blog .footer-bottom-bar-wrapper .footer-contacts a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .footer-blog .footer-bottom-bar-wrapper .footer-contacts a {
    font-size: 16px;
  }
}
.footer-blog .footer-bottom-bar-wrapper .socials-list {
  margin-left: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 479) {
  .footer-blog .footer-bottom-bar-wrapper .socials-list {
    margin: 20px auto;
  }
}
.footer-blog .footer-bottom-bar-wrapper .socials-list li {
  margin-right: 15px;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list li:last-child {
  margin-right: 0;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list a {
  opacity: 1;
  display: block;
  transition: opacity 350ms ease-in-out;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list a.facebook svg {
  fill: #4460A0;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list a.twitter svg {
  fill: #1da1f2;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list a.instagram svg {
  fill: #e4405f;
}
.footer-blog .footer-bottom-bar-wrapper .socials-list a:hover {
  opacity: 0.8;
}

#footer {
  position: relative;
  padding-bottom: 30px;
  font-size: 12px;
  color: #E2CDA9;
  text-align: center;
  z-index: 1;
  background: var(--maven-blue);
  width: 100%;
  margin-top: 169px;
}
@media only screen and (max-width: 767px) {
  #footer {
    margin-top: 44px;
  }
}
#footer a {
  color: #E2CDA9;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 53px;
  word-wrap: break-word;
  text-decoration: none;
}
@media (width <= 1023px) {
  #footer a {
    line-height: 16px;
  }
}
#footer a:hover {
  color: #E2CDA9;
}
#footer .copyright {
  display: block;
  margin-bottom: 10px;
}
#footer .credits {
  display: block;
}
#footer .credits sup {
  vertical-align: super;
}
#footer .footer-logo-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  left: 0px;
  top: -183px;
  position: absolute;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  #footer .footer-logo-container {
    top: -97px;
  }
}
#footer .footer-logo-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#footer .footer-wrapper {
  position: relative;
  margin: 0px 120px;
  /*@media (max-width <= 1023px){
  	max-width: 100%;
  	width: calc(100% - 60px) !important;
  	margin: 0px 30px !important;
  }*/
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .footer-wrapper {
    max-width: 100%;
    width: calc(100% - 60px) !important;
    margin: 0px 30px !important;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper {
    max-width: 100%;
    width: calc(100% - 60px) !important;
    margin: 0px 30px !important;
  }
}
@media only screen and (max-width: 479) {
  #footer .footer-wrapper {
    max-width: 100%;
    width: calc(100% - 60px) !important;
    margin: 0px 30px !important;
  }
}
#footer .footer-wrapper .footer-container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  position: relative;
  padding-top: 231px;
  flex: 1;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .footer-wrapper .footer-container-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .footer-container-grid {
    grid-template-columns: 1fr;
    padding-top: 52px;
  }
}
@media only screen and (max-width: 479) {
  #footer .footer-wrapper .footer-container-grid {
    grid-template-columns: 1fr;
  }
}
#footer .footer-wrapper .footer-container-grid .address-and-social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  color: #F8EBDC;
  font-size: 1.125rem;
  font-family: "Goudy Old Style";
  font-weight: 400;
  line-height: 30px;
  word-wrap: break-word;
  max-width: 347px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .footer-container-grid .address-and-social {
    width: 100%;
    max-width: 100%;
    margin-top: 52px;
  }
}
#footer .footer-wrapper .footer-container-grid .address-and-social .address {
  text-align: left;
}
#footer .footer-wrapper .footer-container-grid .address-and-social .address p {
  color: #F8EBDC;
}
#footer .footer-wrapper .footer-container-grid .address-and-social .social-icons-section {
  width: 100%;
  height: 40px;
  justify-content: space-between;
  align-items: center;
  display: inline-flex;
  margin-top: 53px;
}
#footer .footer-wrapper .footer-container-grid .address-and-social .social-icons-section ul.socials-footer {
  display: inline-flex;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  /* overflow: hidden; */
}
#footer .footer-wrapper .footer-container-grid .menu-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: #E2CDA9;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 53px;
  word-wrap: break-word;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  /*@include respond-to(mobile-small) {
  	margin:0px;
  }*/
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .footer-wrapper .footer-container-grid .menu-link {
    margin: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .footer-container-grid .menu-link {
    margin: 40px 0px;
  }
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
  gap: 23px;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum h2 {
  color: #E2CDA9;
  font-size: 1.5rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 31px;
  word-wrap: break-word;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum .signup-btn {
  padding: 12px 24px;
  background: #EFE9E0;
  color: #394F71;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
  margin-top: 20px;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  /* Style the placeholder text */
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form .first-last-container {
  display: inline-flex;
  gap: 8px;
  width: 100%;
}
@media (width <= 640px) {
  #footer .footer-wrapper .footer-container-grid .news-letter-colum form .first-last-container {
    flex-direction: column;
    width: 100%;
  }
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=text], #footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=email] {
  width: 100%;
  /* Set the width */
  background: #fff;
  border: 0.5px #E2CDA9 solid;
  margin-bottom: 20px;
  height: 40px;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=text]::-moz-placeholder, #footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=email]::-moz-placeholder {
  color: #1A3752;
  font-size: 1rem;
  font-family: "LTC Goudy Oldstyle Pro";
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=text]::placeholder, #footer .footer-wrapper .footer-container-grid .news-letter-colum form input[type=email]::placeholder {
  color: #1A3752;
  font-size: 1rem;
  font-family: "LTC Goudy Oldstyle Pro";
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 15px;
}
#footer .footer-wrapper .footer-container-grid .news-letter-colum form .privacy-label {
  color: #F8EBDC;
  font-size: 1rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
#footer .footer-wrapper .copyright-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 73px;
  padding-top: 111px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .footer-wrapper .copyright-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 53px;
    text-align: left;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .copyright-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 53px;
    text-align: left;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 479) {
  #footer .footer-wrapper .copyright-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 53px;
    text-align: left;
  }
}
#footer .footer-wrapper .copyright-section .copyrighting {
  color: #F8EBDC;
  font-size: 1rem;
  font-family: "Goudy Old Style";
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .copyright-section .copyrighting {
    text-align: left;
  }
}
#footer .footer-wrapper .copyright-section .copyrighting .sage a {
  color: #F8EBDC;
  font-size: 1rem;
  font-family: "Goudy Old Style";
  font-weight: 400;
  text-decoration: underline;
  line-height: 24px;
  text-decoration: underline;
  cursor: pointer;
  text-transform: capitalize;
}
#footer .footer-wrapper .copyright-section .sitemap-privacy {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 290px;
  width: 100%;
  height: 24px;
  position: relative;
  color: #F8EBDC;
  font-size: 1rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  white-space: nowrap;
}
#footer .footer-wrapper .copyright-section .sitemap-privacy a {
  color: #F8EBDC;
  font-size: 1rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  text-align: right;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  #footer .footer-wrapper .copyright-section .sitemap-privacy a {
    text-align: left;
  }
}
@media (width <= 1023px) {
  #footer .footer-wrapper .copyright-section .sitemap-privacy {
    margin-top: 16px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#footer-menu {
  margin-bottom: 30px;
  font-size: 0;
}
#footer-menu li {
  display: inline-block;
}
#footer-menu a {
  display: block;
  margin: 0 15px;
  color: #E2CDA9;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 53px;
  word-wrap: break-word;
}
#footer-menu a:hover, #footer-menu a.active {
  color: #E2CDA9;
}

#footer-contacts {
  margin-bottom: 30px;
}
#footer-contacts h2 {
  margin-bottom: 10px;
  font-family: "LTC Goudy Oldstyle Pro";
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}

#newsletter {
  position: relative;
  margin-bottom: 30px;
  font-size: 0;
}
#newsletter h2 {
  margin-bottom: 15px;
  font-family: "LTC Goudy Oldstyle Pro";
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}
#newsletter input[type=text] {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  height: 36px;
  padding: 0 10px;
  background: var(--maven-light);
  font-size: 14px;
  line-height: 36px;
  color: #132929;
}
#newsletter input[type=text]::-webkit-input-placeholder {
  color: var(--maven-light);
  font-style: italic;
}
#newsletter input[type=text]:-moz-placeholder {
  color: var(--maven-light);
  font-style: italic;
}
#newsletter input[type=text]::-moz-placeholder {
  color: var(--maven-light);
  font-style: italic;
}
#newsletter input[type=text]:-ms-input-placeholder {
  color: var(--maven-light);
  font-style: italic;
}
#newsletter input[type=text]:focus::-webkit-input-placeholder {
  color: var(--maven-light);
}
#newsletter input[type=text]:focus:-moz-placeholder {
  color: var(--maven-light);
}
#newsletter input[type=text]:focus::-moz-placeholder {
  color: var(--maven-light);
}
#newsletter input[type=text]:focus:-ms-input-placeholder {
  color: var(--maven-light);
}
#newsletter .button {
  display: inline-block;
  vertical-align: top;
}

#footer .socials {
  margin-bottom: 30px;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #footer .socials {
    float: none;
  }
}
#footer .socials li {
  display: inline-block;
  margin: 0 5px;
}
#footer .socials a {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 0 no-repeat;
}
@media only screen and (max-width: 767px) {
  #footer .socials a {
    display: inline-block;
  }
}
#footer .socials a.facebook {
  background-position: -1px -347px;
}
#footer .socials a.facebook:hover {
  background-position: -1px -387px;
}
#footer .socials a.twitter {
  background-position: -41px -348px;
}
#footer .socials a.twitter:hover {
  background-position: -41px -388px;
}
#footer .socials a.instagram {
  background-position: -281px -347px;
}
#footer .socials a.instagram:hover {
  background-position: -281px -387px;
}
#footer .socials a.tripadvisor {
  background-position: -201px -347px;
}
#footer .socials a.tripadvisor:hover {
  background-position: -201px -387px;
}
#footer .socials a.youtube {
  background-position: -121px -347px;
}
#footer .socials a.youtube:hover {
  background-position: -121px -387px;
}
#footer .socials a.flickr {
  background-position: -361px -347px;
}
#footer .socials a.flickr:hover {
  background-position: -361px -387px;
}
#footer .socials a.pinterest {
  background-position: -241px -347px;
}
#footer .socials a.pinterest:hover {
  background-position: -241px -387px;
}

.odd2.newsletterSignup-recaptcha {
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
  flex-direction: column;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99995;
  background: rgba(0, 0, 0, 0.95);
  /* FULL SIZE IMAGE */
  /* FULL SIZE IMAGE -> Navigation */
  /* FULL SIZE IMAGE -> Loading */
  /* THUMBNAILS */
  /* THUMBNAILS -> Navigation */
  /* INFO */
}
#hebs-gallery .galleria {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#hebs-gallery .close-button {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
#hebs-gallery .close-button:after, #hebs-gallery .close-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #fff;
  transition: background-color 350ms ease-in-out;
  transform: translate(-50%, -50%) rotate(45deg);
}
#hebs-gallery .close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#hebs-gallery .close-button:hover:after, #hebs-gallery .close-button:hover:before {
  background: #949494;
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  z-index: 2;
}
#hebs-gallery .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #fff;
  font-size: 14px;
  color: #000;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 20px 72px;
  overflow: hidden;
}
@media only screen and (max-width: 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: 43px;
  height: 43px;
  margin-top: -22px;
  text-indent: -9999px;
  overflow: hidden;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  font-size: 0;
  transition: border-color 350ms ease-in-out;
}
#hebs-gallery .galleria-image-nav-left:hover, #hebs-gallery .galleria-image-nav-right:hover {
  border-color: #949494;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  transform: rotate(-45deg);
  transform-origin: center;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  transform: rotate(135deg);
  transform-origin: center;
}
#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: #394F71;
  border-bottom-color: #394F71;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 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: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin-top: -7px;
  text-indent: -9999px;
  overflow: hidden;
  border-left: 1px solid #fff;
  border-top: 1px solid #fff;
  font-size: 0;
  transform-origin: center;
  transition: border-color 350ms ease-in-out;
}
#hebs-gallery .galleria-thumb-nav-left:hover, #hebs-gallery .galleria-thumb-nav-right:hover {
  border-color: #949494;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  transform: rotate(-45deg);
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  transform: rotate(135deg);
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#share-this-site-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAAA1BMVEUAAACnej3aAAAAAXRSTlOzEo46UAAAAA5JREFUeAFjoACMglEAAAJAAAGccJWlAAAAAElFTkSuQmCC");
  background: rgba(0, 0, 0, 0.7);
}
#share-this-site-overlay .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 140px;
  padding: 20px;
  margin: -90px 0 0 -230px;
  background: #327d7d;
}
#share-this-site-overlay .close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
}
#share-this-site-overlay .close-button:after, #share-this-site-overlay .close-button:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 25px;
  background: #fff;
  transition: background-color 350ms ease-in-out;
  transform: translate(-50%, -50%) rotate(45deg);
}
#share-this-site-overlay .close-button:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#share-this-site-overlay .close-button:hover:after, #share-this-site-overlay .close-button:hover:before {
  background: #949494;
}

.specials:after {
  clear: both;
  content: "";
  display: table;
}
.specials .image-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-template-rows: auto;
  gap: 30px;
}
@media (max-width: 767px) {
  .specials .image-list {
    grid-template-columns: 1fr;
  }
}
.specials .image-list-item {
  position: relative;
  overflow: hidden;
  height: 500px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item {
    height: auto;
  }
}
.specials .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid var(--maven-blue);
  z-index: -1;
}
.specials .image-list-item .background {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 300px;
  display: block;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials .image-list-item .background {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.specials .image-list-item .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  display: block;
}
.specials .image-list-item .description {
  width: 100%;
  max-width: 100%;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  flex: 1;
  font-family: var(--primary-font);
  font-size: 1.125rem;
  color: var(--maven-blue);
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description {
    padding: 8px;
    text-align: center;
  }
}
.specials .image-list-item .description h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  line-height: 24px;
  font-family: var(--primary-font);
  font-weight: 500;
}
.specials .image-list-item .description h3 a {
  text-decoration: none;
}
.specials .image-list-item .description h3 a:hover {
  color: var(--maven-blue);
}
.specials .image-list-item .description p {
  line-height: 30px;
}
@media (max-width: 640px) {
  .specials .image-list-item .description p {
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials .image-list-item .description nav {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description nav {
    text-align: center;
    width: 100%;
    /*left:auto;
    right:auto;
    bottom:auto;
    position:relative;*/
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
}

.single-special {
  text-align: left;
}
@media (max-width: 800px) {
  .single-special {
    width: calc(100% - 30px);
    margin: 0px 15px;
  }
}
.single-special .background {
  float: right;
  width: 300px;
  max-width: 100%;
  height: 300px;
  margin-left: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.special p {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .special p {
    font-size: 16px;
  }
}

.mobile-only {
  display: none !important;
}
@media only screen and (max-width: 767px) {
  .mobile-only {
    display: block !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: #394F71;
  border-bottom-color: #394F71;
  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: 444px;
  background: #e5e3df;
}
.hotel-location-map h4, .poi-map-canvas h4 {
  margin: 0;
  font: 16px "LTC Goudy Oldstyle Pro";
  text-transform: uppercase;
  color: var(--maven-light);
}
.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;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.map-content {
  background: var(--maven-blue);
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: center;
  color: var(--maven-light);
  width: 300px;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
}
.map-content h3 {
  font: 700 16px/24px "LTC Goudy Oldstyle Pro";
  color: #fff;
}
.map-content a {
  color: #fff;
}
.map-content a:hover {
  color: #fff;
}
.map-content .button {
  margin-top: 20px;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-item {
  vertical-align: top;
  width: calc(33% - 20px);
  height: 400px;
  margin: 15px 10px 20px 10px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--maven-tan);
  padding: 20px 0;
  background-color: var(--maven-tan);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .pressroom-item {
    width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}
.pressroom .pressroom-item h4 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--maven-light);
}
.pressroom .pressroom-item time {
  color: var(--maven-light);
  display: block;
  margin: 5px 0;
}
.pressroom .pressroom-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px 20px 20px;
}
.pressroom .pressroom-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.pressroom .pressroom-item .description p {
  color: #fff;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 0;
}
.pressroom .pressroom-item .pdf {
  color: var(--maven-light);
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.pressroom .pressroom-item .pdf:hover {
  color: #fff;
}
.pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
}
.pressroom .cta.loadMorePress {
  max-width: 200px;
  margin: 30px auto 0px;
  cursor: pointer;
}
.pressroom .pressroom-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  grid-template-rows: auto;
  grid-auto-rows: auto;
  gap: 15px;
  width: 100%;
}
.pressroom .pressroom-container .pressroom-item {
  width: calc(100% - 20px);
  height: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .pressroom-container .pressroom-item {
    width: calc(40% - 20px);
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-container .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}

.hidePress {
  display: none;
}

.showPress {
  display: inline-block;
}

.galleries {
  text-align: center;
  font-size: 0;
}
.galleries .gallery {
  padding-bottom: calc(33.3% - 10px);
  width: calc(33.3% - 10px);
  height: 0;
  margin: 5px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .galleries .gallery {
    width: calc(50% - 10px);
    padding-bottom: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .galleries .gallery {
    width: calc(100% - 10px);
    padding-bottom: calc(100% - 10px);
  }
}
.galleries .gallery h2, .galleries .gallery h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font: 26px/30px "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
  color: inherit;
  z-index: 1;
}
.galleries .gallery h3 {
  top: auto;
  bottom: 10px;
  font-size: 14px;
  opacity: 1;
  line-height: 1;
  text-align: center;
}
.galleries .gallery:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease-in-out;
  z-index: 0;
}
.galleries .gallery:hover h2, .galleries .gallery:hover h3 {
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}
.galleries .gallery:hover .description {
  right: 0;
}
.galleries .gallery:hover:after {
  background: rgba(0, 0, 0, 0.5);
}
.galleries .gallery .description {
  position: absolute;
  right: -100%;
  top: 0;
  color: inherit;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .galleries .gallery .description {
    font-size: 16px;
    line-height: 20px;
  }
}
.galleries .gallery .description:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery .description .centered {
  padding: 15px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 4px);
}

.form {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
    width: calc(100% - 30px);
    margin: 0px 15px 20px;
  }
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 20px;
    text-align: left;
    width: auto;
  }
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  margin-bottom: 10px;
  font-size: medium;
  color: #132929;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 20px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p span {
  float: left;
  margin: 0 10px 0 0;
}
.form p span.checkbox-group {
  margin-bottom: 10px;
}
.form p span input {
  display: inline;
  float: none;
  margin: 0;
}
.form p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
.form p span.group label {
  display: block;
  margin-bottom: 10px;
}
.form p span.group label input {
  margin-right: 0.4em;
}
.form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
}
@media only screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=date],
.form textarea,
.form select,
.form .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
  }
}
.form .input-overlay {
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group {
  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;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick,
.form .input-overlay {
  width: 100px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form input.date-pick,
.form .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
.form .input-overlay {
  clear: both;
}
.form .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 13px 0 0 6px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls p {
  padding: 0px;
  width: auto;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: left;
  }
}
.form .controls .button {
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}

#form_module_container_errors,
#form_module_container_success {
  padding: 10px;
  margin-top: 10px;
  font-size: 16px;
  background-color: rgba(0, 0, 0, 0.3);
}

#form_module_container_errors {
  color: #b31919;
}

#form_module_container_errors .goTo {
  color: var(--maven-blue);
  text-decoration: underline;
  cursor: pointer;
}

#form_module_container_errors .goTo:hover {
  filter: grayscale(100%);
}

#form_module_container_success {
  color: green;
}

[id*=form_form_] {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] {
    text-align: left;
  }
}
[id*=form_form_] fieldset + fieldset {
  margin-top: 20px;
}
[id*=form_form_] h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--maven-light);
}
[id*=form_form_] em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
[id*=form_form_] label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] label {
    display: block;
    float: none;
    margin: 0 0 10px;
    text-align: left;
    width: auto;
  }
}
[id*=form_form_] p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p {
    margin-bottom: 20px;
  }
}
[id*=form_form_] p:after {
  clear: both;
  content: "";
  display: table;
}
[id*=form_form_] p span {
  float: left;
  margin: 0 10px 0 0;
}
[id*=form_form_] p span.checkbox-group {
  margin-bottom: 10px;
}
[id*=form_form_] p span input {
  display: inline;
  float: none;
  margin: 0;
}
[id*=form_form_] p span label {
  display: inline;
  float: none;
  width: auto;
  text-align: left;
}
[id*=form_form_] p span.group {
  margin-top: 12px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] p span.group {
    margin-top: 0;
  }
}
[id*=form_form_] p span.group label {
  display: block;
  margin-bottom: 10px !important;
  margin-top: 0;
}
[id*=form_form_] p span.group label input {
  margin-right: 0.4em;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .select-wrapper {
    width: 100%;
  }
}
[id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    padding: 0 20px;
    width: 100%;
    text-align: left;
  }
}
[id*=form_form_] input[type=text].form_module_field_error, [id*=form_form_] input[type=number].form_module_field_error, [id*=form_form_] input[type=email].form_module_field_error, [id*=form_form_] input[type=phone].form_module_field_error, [id*=form_form_] input[type=url].form_module_field_error, [id*=form_form_] input[type=datepicker].form_module_field_error, [id*=form_form_] textarea.form_module_field_error, [id*=form_form_] select.form_module_field_error, [id*=form_form_] .input-overlay.form_module_field_error {
  border-color: #b31919;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=text], [id*=form_form_] input[type=number], [id*=form_form_] input[type=email], [id*=form_form_] input[type=phone], [id*=form_form_] input[type=url], [id*=form_form_] input[type=datepicker], [id*=form_form_] textarea, [id*=form_form_] select, [id*=form_form_] .input-overlay {
    text-align: left;
  }
}
[id*=form_form_] textarea {
  float: left;
  height: 100px;
  overflow: auto;
  line-height: 20px;
  padding: 10px;
}
[id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio] {
    margin-right: 5px;
  }
}
[id*=form_form_] .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .datepicker-input-wrapper {
    float: none;
  }
}
[id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay {
  float: left;
  width: 100px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay {
    float: none;
    width: 100%;
  }
}
[id*=form_form_] .input-overlay {
  width: 100px;
  float: left;
  clear: both;
  opacity: 0;
  margin-top: -40px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
[id*=form_form_] .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 13px 0 0 6px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .ui-datepicker-trigger {
    display: none;
  }
}
[id*=form_form_] input[type=submit] {
  display: block;
  margin: 0 auto;
}
[id*=form_form_] > input[type=submit] {
  margin-top: 20px;
}
[id*=form_form_] .g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
[id*=form_form_] .form-builder-field {
  position: relative;
  width: 100%;
  text-align: left;
  clear: both;
}
[id*=form_form_] .form-builder-field[class*=textarea] label {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=textarea] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputhidden] {
  display: none;
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] > label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > label, [id*=form_form_] .form-builder-field[class*=radiogroup] > label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
  color: var(--maven-blue);
  text-transform: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] .radio-label, [id*=form_form_] .form-builder-field[class*=inputcheckbox] .checkbox-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .radio-label, [id*=form_form_] .form-builder-field[class*=checkboxgroup] .checkbox-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .radio-label, [id*=form_form_] .form-builder-field[class*=radiogroup] .checkbox-label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
  width: 60%;
  margin-left: calc(40% + 20px);
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputcheckbox] label {
    margin-left: 0;
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field[class*=inputsubmit] {
  margin-left: 20px;
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
}
[id*=form_form_] .form-builder-field .compliance {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
[id*=form_form_] .form-builder-field .compliance em {
  padding: 12px 10px 0 0;
}
[id*=form_form_] .form-builder-field .compliance input[type=checkbox] {
  margin: 10px 5px 0 0;
}
[id*=form_form_] .form-builder-field .compliance > label {
  width: auto;
  text-transform: none;
  color: var(--maven-blue);
  font-size: 20px;
  line-height: 1.8;
  font-weight: normal;
}
[id*=form_form_] .form-builder-field[class*=paragraph] {
  width: 60%;
  margin-left: calc(40% + 20px);
  margin-bottom: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=paragraph] {
    margin-left: 0;
    width: 100%;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] {
  line-height: 1;
}
[id*=form_form_] .form-builder-field[class*=inputfile] input[type=file] {
  margin-top: 10px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-field[class*=inputfile] label {
    margin-right: 20px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input {
  font: 500 16px/1.2 "Roboto Condensed", sans-serif;
  color: var(--maven-blue);
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  cursor: pointer;
  width: 50%;
}
[id*=form_form_] .form-builder-field[class*=inputfile] .fake-input:before {
  content: "";
  background: url("../images/paperclip.png") no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
  display: block;
  position: relative;
  float: left;
  margin-right: 10px;
}
[id*=form_form_] .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
  width: calc(50% - 10px);
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-2 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-2 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
  width: calc(33.33% - 20px);
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-3 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-3 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
  width: calc(25% - 20px);
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field:not(:first-child) {
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field:not(:first-child) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field > p label {
  width: auto;
  text-align: left;
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=text], [id*=form_form_] .form-builder-group.columns-4 .form-builder-field input[type=email] {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=checkboxgroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=radiogroup] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] label, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] label {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] input, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .select-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] select, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] input {
  width: 100%;
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
  width: calc(100% - 30px);
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=country] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputurl] .datepicker-input-wrapper, [id*=form_form_] .form-builder-group.columns-4 .form-builder-field[class*=inputdatepicker] .datepicker-input-wrapper {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
  width: calc(66.66% - 20px);
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
  width: calc(33.33% - 20px);
  margin-left: 20px;
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field:nth-child(even) {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1023px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .custom-checkbox, [id*=form_form_] .custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2em;
  line-height: 1.4em;
}
[id*=form_form_] .custom-checkbox:before, [id*=form_form_] .custom-radio:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  background: #fff;
  transition: transform 350ms ease-in-out/2;
  border: var(--maven-blue) 1px solid;
}
@media only screen and (min-width: 1024px) {
  [id*=form_form_] .custom-checkbox:hover:before, [id*=form_form_] .custom-radio:hover:before {
    transform: scale(1.1);
  }
  [id*=form_form_] .custom-checkbox:active:before, [id*=form_form_] .custom-radio:active:before {
    transform: scale(1);
  }
}
[id*=form_form_] .custom-checkbox:after, [id*=form_form_] .custom-radio:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid #b31919;
  border-left: 2px solid #b31919;
  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;
}
[id*=form_form_] .custom-checkbox.checked:after, [id*=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;
}
[id*=form_form_] .custom-checkbox input, [id*=form_form_] .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
[id*=form_form_] .custom-checkbox.active, [id*=form_form_] .custom-radio.active {
  color: #000;
}
[id*=form_form_] .custom-radio:before {
  border-radius: 50%;
}
[id*=form_form_] .custom-radio:after {
  border: none;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 3px;
  border-radius: 50%;
  transform: scale(2);
  background: #b31919;
}
[id*=form_form_] .custom-radio.checked:after {
  transform: scale(1);
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=file] {
    width: 100%;
  }
}
[id*=form_form_] .clear-file-input {
  font-size: 12px;
  transition: opacity 350ms ease-in-out;
}
[id*=form_form_] .clear-file-input.inactive {
  opacity: 0;
  visibility: hidden;
}

.custom-form-submit input.cta {
  background-color: #E2CDA9 !important;
  color: var(--maven-blue) !important;
}

.custom-form-submit input.cta:hover {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
}

#home-poi {
  position: relative;
  padding-top: 50px;
  z-index: 10;
}
#home-poi h2 {
  font: 200 36px/1.2 "LTC Goudy Oldstyle Pro";
  margin-bottom: 30px;
  color: var(--maven-blue);
  text-transform: uppercase;
  text-align: center;
}

.poi {
  overflow: hidden;
}

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

.poi-zoom {
  color: var(--maven-blue);
  font-size: 14px;
  line-height: 22px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
}
.poi-zoom .poi-zoom-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: var(--maven-blue);
  height: 22px;
  width: 22px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: var(--maven-tan);
  display: block;
  width: 8px;
  height: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.poi-zoom .poi-zoom-button.zoom-in:before {
  content: "";
  background: var(--maven-tan);
  display: block;
  width: 1px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.poi-map {
  height: 800px;
}

.poi-overlay {
  text-align: center;
}
.poi-overlay .category-selector {
  margin: 0;
}
.poi-overlay .category-selector .button {
  padding-left: 45px;
}
.poi-overlay .category-selector .button:before {
  background: url("../images/poi/icons.svg") no-repeat -40px -40px;
  content: "";
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  top: 0;
  left: 0;
}
.poi-overlay .category-selector .button.icon-restaurants-bars:before {
  background-position: -10px -10px;
}
.poi-overlay .category-selector .button.icon-shopping:before {
  background-position: -70px -10px;
}
.poi-overlay .category-selector .button.icon-zoo:before {
  background-position: -130px -10px;
}
.poi-overlay .category-selector .button.icon-theme-parks:before {
  background-position: -190px -10px;
}
.poi-overlay .category-selector .button.icon-wineries:before {
  background-position: -250px -10px;
}
.poi-overlay .category-selector .button.icon-breakfast:before {
  background-position: -310px -10px;
}
.poi-overlay .category-selector .button.icon-attractions:before {
  background-position: -370px -10px;
}
.poi-overlay .category-selector .button.icon-places-for-children:before {
  background-position: -430px -10px;
}
.poi-overlay .category-selector .button.icon-museums:before {
  background-position: -490px -10px;
}
.poi-overlay .category-selector .button.icon-national-monuments:before {
  background-position: -550px -10px;
}
.poi-overlay .category-selector .button.icon-farmer-markets:before {
  background-position: -610px -10px;
}
.poi-overlay .category-selector .button.icon-nightlife:before {
  background-position: -670px -10px;
}
.poi-overlay .category-selector .button.icon-arts-culture:before {
  background-position: -730px -10px;
}
.poi-overlay .category-selector .button.icon-hospitals:before {
  background-position: -790px -10px;
}
.poi-overlay .category-selector .button.icon-banks:before {
  background-position: -850px -10px;
}
.poi-overlay .category-selector .button.icon-spas:before {
  background-position: -910px -10px;
}
.poi-overlay .category-selector .button.icon-gardens:before {
  background-position: -970px -10px;
}
.poi-overlay .category-selector .button.icon-cafes:before {
  background-position: -1030px -10px;
}
.poi-overlay .category-selector .button.icon-entertainment:before {
  background-position: -1090px -10px;
}
.poi-overlay .category-selector .button.icon-golf:before {
  background-position: -1150px -10px;
}
.poi-overlay .category-selector .button.icon-romantic-spots:before {
  background-position: -1210px -10px;
}
.poi-overlay .category-selector .button.icon-hidden-gems:before {
  background-position: -1270px -10px;
}
.poi-overlay .category-selector .button.icon-corporate-offices:before {
  background-position: -1330px -10px;
}
.poi-overlay .category-selector .button.icon-outdoors:before {
  background-position: -1390px -10px;
}
.poi-overlay .category-selector .button.icon-lakes:before {
  background-position: -1450px -10px;
}
.poi-overlay .category-selector .button.icon-rivers:before {
  background-position: -1510px -10px;
}
.poi-overlay .category-selector .button.icon-beaches:before {
  background-position: -1570px -10px;
}
.poi-overlay .category-selector .button.icon-hiking:before {
  background-position: -1630px -10px;
}
.poi-overlay .category-selector .button.icon-places-of-worship:before {
  background-position: -1690px -10px;
}
.poi-overlay .category-selector .button.icon-sports:before {
  background-position: -1750px -10px;
}
.poi-overlay .category-selector .button.icon-universities:before {
  background-position: -1810px -10px;
}

#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: inline-block;
  vertical-align: top;
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  text-indent: -9999px;
  overflow: hidden;
}
#calendar-links a:hover svg, #calendar-links a.active svg {
  fill: var(--maven-blue);
}
#calendar-links a svg {
  display: block;
  width: 20px;
  height: 20px;
  transition: fill 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  #calendar-links a {
    display: inline-block;
    margin: 0 0 0 20px;
  }
}

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

#calendar-views {
  float: left;
}
#calendar-views:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-views {
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
}
#calendar-views li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-views li {
    display: inline-block;
    float: none;
  }
}
#calendar-views a {
  position: relative;
  display: block;
  margin-right: 20px;
  text-decoration: none;
  text-transform: uppercase;
  color: #717272;
}
@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 svg {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
  transition: fill 350ms ease-in-out;
}
#calendar-views a:hover svg, #calendar-views a.active svg {
  fill: var(--maven-blue);
}

#calendar-breadcrumb {
  padding: 10px 0;
  margin-bottom: 20px;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
  color: #53565a;
}
@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;
  text-decoration: none;
  border-bottom: 1px solid #b7b7b7;
  color: #b7b7b7;
}
#calendar-year a:hover {
  border-color: #343841;
  color: #343841;
}
#calendar-year .active a {
  border-color: var(--maven-blue);
  color: var(--maven-blue);
}
#calendar-year .active a:hover {
  border-color: #151616;
  color: #151616;
}

#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;
  line-height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  color: #132929;
}
@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: var(--maven-blue);
  color: #fff;
}
#calendar-month a.active {
  background: var(--maven-blue);
  color: #fff;
}
#calendar-month a.active:hover {
  background: #595756;
  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 {
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 50%;
    width: 11px;
    height: 11px;
    overflow: hidden;
    text-indent: -9999px;
    cursor: pointer;
    margin: 0 10px 0 10px;
    margin-top: -6px;
    border-left: 1px solid #000;
    border-top: 1px solid #000;
    font-size: 0;
    transform: rotate(-45deg);
    transform-origin: center;
    transition: border-color 350ms ease-in-out;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: var(--maven-blue);
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    border-color: #949494;
  }
  #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 {
    transform: rotate(135deg);
    left: auto;
    right: 5px;
  }
}

#calendar-navigation {
  display: block;
  height: 40px;
  line-height: 40px;
  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: var(--maven-tan);
}
#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0 10px 0 10px;
  margin-top: -7px;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
  font-size: 0;
  transform-origin: center;
  transition: border-color 350ms ease-in-out;
}
#calendar-navigation a.prev:hover, #calendar-navigation a.next:hover {
  border-color: #949494;
}
#calendar-navigation a.next {
  right: 0;
  transform: rotate(135deg);
}
#calendar-navigation a.prev {
  left: 0;
  transform: rotate(-45deg);
}

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

#calendar-week {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  color: #595756;
  text-align: center;
  font-weight: bold;
}
#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;
  color: #132929;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li time a:hover {
  background: #e2e2e2;
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(0, 0, 0, 0.02);
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: #595756;
}
#calendar-days li.prev_month time a:hover, #calendar-days li.next_month time a:hover {
  background: #f1f1f1;
}
#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: var(--maven-blue);
  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;
  color: #717272;
  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);
  border-radius: 4px;
  transform: translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  #calendar-days dl dd {
    display: none !important;
  }
}
#calendar-days dl dd .triangle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
#calendar-days dl dd .triangle span {
  display: block;
  width: 0;
  margin: 0 auto;
  border-right: 14px solid transparent;
  border-left: 14px solid transparent;
  border-top: 14px solid #fff;
}
#calendar-days dl dd h3 {
  color: #717272;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  height: auto;
  width: 100%;
}
#calendar-days dl dd p {
  font-size: 12px;
  line-height: 18px;
  padding: 0 0 10px 0;
  width: 100%;
}
#calendar-days dl:hover dd {
  visibility: visible;
}
#calendar-days dl.t1 {
  margin-top: 2em;
}
#calendar-days dl.t2 {
  margin-top: 4em;
}
#calendar-days dl.t3 {
  margin-top: 6em;
}
#calendar-days dl.t4 {
  margin-top: 8em;
}
#calendar-days dl.t5 {
  margin-top: 10em;
}
#calendar-days dl.t6 {
  margin-top: 12em;
}
#calendar-days dl.t7 {
  margin-top: 14em;
}
#calendar-days dl.t8 {
  margin-top: 16em;
}
#calendar-days dl.t9 {
  margin-top: 18em;
}
#calendar-days dl.t10 {
  margin-top: 20em;
}
#calendar-days dl.t11 {
  margin-top: 22em;
}
#calendar-days dl.t12 {
  margin-top: 24em;
}
#calendar-days dl.t13 {
  margin-top: 26em;
}
#calendar-days dl.t14 {
  margin-top: 28em;
}
#calendar-days dl.t15 {
  margin-top: 30em;
}
#calendar-days dl.t16 {
  margin-top: 32em;
}
#calendar-days dl.t17 {
  margin-top: 34em;
}
#calendar-days dl.t18 {
  margin-top: 36em;
}
#calendar-days dl.t19 {
  margin-top: 38em;
}
#calendar-days dl.t20 {
  margin-top: 40em;
}

#calendar.list-view h2 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
#calendar.list-view .image-list h2 a {
  text-decoration: underline;
}
#calendar.list-view .image-list h3 a {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

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

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

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

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

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  border: 1px solid var(--maven-blue);
}
@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: 1px solid #e2e2e2;
  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 "LTC Goudy Oldstyle Pro";
  color: #151616;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar .image-list-item .description h3 a:hover {
  color: var(--maven-blue);
}
.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;
  }
}

.faq-section-category {
  margin-bottom: 40px;
}

.faq-section-category-descr {
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  font-size: 1.125rem;
  font-family: var(--primary-font);
}
.faq-section-category-descr h3 {
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
  height: 40px;
  max-width: 894px;
  width: 100%;
  margin: auto;
}
@media (width <= 1023px) {
  .faq-section-category-descr h3 {
    font-size: 1.5rem;
    line-height: 28px;
    height: 28px;
  }
}

.faq-section-item {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 40px;
  height: 100%;
  border: 1px solid #E2CDA9;
}
@media (width <= 1023px) {
  .faq-section-item {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 24px 30px;
    font-size: 1rem;
    line-height: 30px;
  }
}
.faq-section-item .faq-section-question {
  position: relative;
  cursor: pointer;
  padding: 20px 50px 20px 20px;
  margin-bottom: 0px;
  border-bottom: 1px solid #DDE0E7;
  background: var(--maven-light-tan);
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 700;
  word-wrap: break-word;
  line-height: 32px;
}
@media (width <= 1023px) {
  .faq-section-item .faq-section-question {
    font-size: 1rem;
    line-height: 24px;
    text-align: left;
  }
}
.faq-section-item .faq-section-question:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  height: 30px;
  width: 30px;
  margin-top: -15px;
  font-size: 30px;
  line-height: 30px;
  text-align: center;
}
.faq-section-item .faq-section-item.active .faq-section-question:after {
  content: "-";
}
.faq-section-item .faq-section-answer {
  display: none;
  overflow: hidden;
  padding: 20px 20px 0 20px;
  background: inherit !important;
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  color: var(--maven-blue);
  font-weight: 400;
  font-family: var(--primary-font);
  line-height: 32px;
  font-size: 1.125rem;
}
@media (width <= 1023px) {
  .faq-section-item .faq-section-answer {
    max-width: 100%;
    width: 100%;
    padding: 20px;
    font-size: 1rem;
    line-height: 30px;
  }
}
.faq-section-item .faq-section-answer .thumb {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.faq-section-item .faq-section-answer .descr {
  overflow: hidden;
}

.custom-lightbox-acm {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 100%;
}
.custom-lightbox-acm .custom-lightbox {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(57, 79, 113, 0.85);
  z-index: 99999;
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 700px;
  overflow: hidden;
  max-width: 1200px;
  color: var(--maven-blue);
  text-align: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 700px;
  grid-template-areas: "content thumbnail";
  padding: 30px 30px 0px 0px;
  /*
  .close-popup {
          display: block;
          width: 60px;
          height: 60px;
          position: absolute;
          top: 7px;
          right: 7px;
          z-index: 13;
          overflow: hidden;
          text-indent: -1000px;
          transition: opacity 0.2s;
          border: 0;
          background: var(--maven-darker-blue);
          box-shadow: 0 0;
          border-radius: 50%;
          color:var(--maven-light);

          @media ( width <= 880px){
              width: 40px !important;
              height: 40px !important;
          }
      }

      */
  /*
    #newParent{
      background: url(https://themaven2.dev.cendynecommerce.com/skins/skin-themaven2dev/assets/desktop/images/Background.png);
      background-repeat: no-repeat;
      background-size: cover;
      width:100%;
      max-width:100%;
      height:100%;
      overflow:hidden;
      background-position: center center;
      position:relative;
      display:flex;
      justify-content: center;
      align-items: center;

      @media ( width <= 880px){
          padding: 38px 60px 46px;
         height:412px;
      }

      .thumbnail {
          display: block;
          width: 100%;
          height: 500px;
         // margin-bottom: 20px;
          max-width: 400px;
          width: 100%;
          overflow:hidden;
          //margin: 87px auto;
          object-fit: cover;
          object-position: center;
          grid-area: thumbnail;
          //position:absolute;
          border-radius:13.125rem 13.125rem 0px 0px;



          @media ( width <= 880px){
            max-width:270px;
            width:100%;
            height:328px;
            overflow:hidden;
            border-radius:8.75rem 8.75rem 0px 0px;
          }

      }

    }
  */
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "thumbnail" "content";
    padding: 0px;
    max-width: 100%;
    height: 100%;
    top: 50%;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .closepopup {
  position: absolute;
  right: 0px;
  max-width: 60px;
  width: 100%;
  height: 60px;
  overflow: hidden;
  top: 7px;
  right: 7px;
  z-index: 13;
  cursor: pointer;
}
@media (width <= 880px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .closepopup {
    width: 40px !important;
    height: 40px !important;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .closepopup img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content {
  grid-area: content;
  background: #F8EBDC !important;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  padding: 50px 0px 40px 55px;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content {
    max-width: 100%;
    width: calc(100%);
    gap: 24px;
    padding: 0px;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info {
  max-width: 440px;
  width: 100%;
  height: auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
  display: inline-flex;
  text-align: left;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info {
    max-width: 100%;
    width: calc(100% - 30px);
    height: auto;
    overflow: hidden;
    gap: 24px;
    margin: auto 0px 0px 30px;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .top-header-section {
  width: 522px;
  height: 40px;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .top-header-section {
    line-height: 28px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .top-header-section .subtitle {
  color: #86704A;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .top-header-section .subtitle {
    line-height: 28px;
    width: 100%;
    overflow: hidden;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .top-header-section .line {
  flex: 1 1 0;
  width: 100%;
  height: 0px;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .heading {
  align-self: stretch;
  color: var(--maven-blue);
  font-size: 3.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  text-align: left;
  width: 100%;
  max-width: 100%;
}
@media (width <= 9900px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .heading {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .desc {
  width: 100%;
  max-width: 100%;
  flex: 1;
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  text-align: left;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .desc {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 1rem;
    line-height: 30px;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .content .info .cta-wrapper {
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #E2CDA9;
  border: 1px #E2CDA9 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: inline-flex;
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background {
  max-width: 37.5rem;
  width: 100%;
  height: 700px;
  position: relative;
  background: linear-gradient(0deg, #394F71 0%, #394F71 100%);
  background-image: url("https://themaven2.dev.cendynecommerce.com/skins/skin-themaven2dev/1719365799/assets/desktop/images/Background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  grid-area: thumbnail;
}
@media (width <= 990px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background {
    max-width: 100%;
    overflow: hidden;
    padding: 38px 60px 46px;
    height: 412px;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background .inner-image {
  max-width: 400px;
  height: 500px;
  width: 100%;
  overflow: hidden;
  position: absolute;
}
@media (width <= 880px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background .inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
    overflow: hidden;
  }
}
.custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background .inner-image img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12.5rem 12.5rem 0px 0px;
  width: 100%;
  height: 100%;
}
@media (width <= 880px) {
  .custom-lightbox-acm .custom-lightbox .lightbox-inner .column-background .inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}

.blog-page.template-2 .page-content-wrapper.page-content:after {
  clear: both;
  content: "";
  display: table;
}
.blog-page.template-2 .page-content-wrapper.page-content hr {
  display: block;
  height: 1px;
  margin: 20px auto;
  border: none;
  background: #ccc;
  color: #ccc;
}
.blog-page.template-2 .page-content-wrapper.page-content h1, .blog-page.template-2 .page-content-wrapper.page-content h2, .blog-page.template-2 .page-content-wrapper.page-content h3, .blog-page.template-2 .page-content-wrapper.page-content h4, .blog-page.template-2 .page-content-wrapper.page-content h5 {
  font-family: "Roboto Condensed", sans-serif;
}
.blog-page.template-2 .page-content-wrapper.page-content h1, .blog-page.template-2 .page-content-wrapper.page-content .h1-like {
  font: 400 50px/1 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content h1, .blog-page.template-2 .page-content-wrapper.page-content .h1-like {
    font-size: 24px;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content h4, .blog-page.template-2 .page-content-wrapper.page-content h5, .blog-page.template-2 .page-content-wrapper.page-content h6 {
  color: #003E66;
}
.blog-page.template-2 .page-content-wrapper.page-content h2, .blog-page.template-2 .page-content-wrapper.page-content h3 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 22px;
  font-weight: normal;
  color: #5990B4;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content h2, .blog-page.template-2 .page-content-wrapper.page-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content h4 {
  font-size: 22px;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content h4 {
    font-size: 18px;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content strong {
  font-weight: bold;
}
.blog-page.template-2 .page-content-wrapper.page-content em {
  font-style: italic;
}
.blog-page.template-2 .page-content-wrapper.page-content u {
  text-decoration: underline;
}
.blog-page.template-2 .page-content-wrapper.page-content sup, .blog-page.template-2 .page-content-wrapper.page-content sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
}
.blog-page.template-2 .page-content-wrapper.page-content sup {
  top: -0.5em;
}
.blog-page.template-2 .page-content-wrapper.page-content sub {
  bottom: -0.25em;
}
.blog-page.template-2 .page-content-wrapper.page-content p, .blog-page.template-2 .page-content-wrapper.page-content table {
  overflow: visible;
}
.blog-page.template-2 .page-content-wrapper.page-content p {
  font-size: 18px;
  color: #383838;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content ol {
  list-style: decimal inside;
}
.blog-page.template-2 .page-content-wrapper.page-content ul {
  list-style: none;
}
.blog-page.template-2 .page-content-wrapper.page-content ol, .blog-page.template-2 .page-content-wrapper.page-content ul {
  margin-left: 30px;
}
.blog-page.template-2 .page-content-wrapper.page-content ol ol, .blog-page.template-2 .page-content-wrapper.page-content ol ul, .blog-page.template-2 .page-content-wrapper.page-content ul ul, .blog-page.template-2 .page-content-wrapper.page-content ul ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-page.template-2 .page-content-wrapper.page-content ol li, .blog-page.template-2 .page-content-wrapper.page-content ul li {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content {
    text-align: center;
  }
  .blog-page.template-2 .page-content-wrapper.page-content ol, .blog-page.template-2 .page-content-wrapper.page-content ul {
    margin-left: 0;
  }
  .blog-page.template-2 .page-content-wrapper.page-content .sitemap ol, .blog-page.template-2 .page-content-wrapper.page-content .sitemap ul {
    margin-left: 20px;
  }
  .blog-page.template-2 .page-content-wrapper.page-content ol ol, .blog-page.template-2 .page-content-wrapper.page-content ol ul, .blog-page.template-2 .page-content-wrapper.page-content ul ul, .blog-page.template-2 .page-content-wrapper.page-content ul ol {
    font-size: 90%;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content ul > li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: #003E66;
  border-radius: 100%;
}
.blog-page.template-2 .page-content-wrapper.page-content ul > li:hover:before {
  background-color: #5990B4;
}
.blog-page.template-2 .page-content-wrapper.page-content td, .blog-page.template-2 .page-content-wrapper.page-content th, .blog-page.template-2 .page-content-wrapper.page-content caption {
  padding: 10px 15px;
  text-align: left;
  vertical-align: middle;
}
.blog-page.template-2 .page-content-wrapper.page-content th, .blog-page.template-2 .page-content-wrapper.page-content caption {
  vertical-align: bottom;
  padding-top: 0;
  padding-bottom: 20px;
  font: 22px/1 "LTC Goudy Oldstyle Pro";
  color: #003E66;
}
.blog-page.template-2 .page-content-wrapper.page-content td {
  border-top: 1px solid #f7fcfc;
  background: #f2f7f7;
}
.blog-page.template-2 .page-content-wrapper.page-content .even td {
  background: #edf5f5;
}
.blog-page.template-2 .page-content-wrapper.page-content table p {
  margin: 10px 0;
}
.blog-page.template-2 .page-content-wrapper.page-content img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-2 .page-content-wrapper.page-content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content .socials {
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .page-content-wrapper.page-content .socials {
    text-align: center;
  }
}
.blog-page.template-2 .page-content-wrapper.page-content .socials iframe {
  display: inline-block;
  width: 90px;
  height: 21px;
  margin: 0 10px 0 0;
}

.blog-page.template-1 .read-more-link {
  font: 700 16px/1.6em "LTC Goudy Oldstyle Pro";
  color: #54baba;
  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: #54baba;
  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:hover {
  opacity: 0.8;
}
.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: #54baba;
}
.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: #54baba;
}
.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: #54baba;
}
.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 "Roboto Condensed", sans-serif;
  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: #54baba;
  text-decoration: none;
}
.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;
  line-height: 1.6em;
  color: #525252;
  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: #54baba;
}
.blog-page.template-1 .posts-content-wrap .one-post .one-post-wrapper .read-more-link:after {
  background: #54baba;
}

.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;
}
.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: "LTC Goudy Oldstyle Pro";
}
.single-blog-post .tags h5 {
  font: 500 20px/1.2 "LTC Goudy Oldstyle Pro";
  color: #525252;
  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: #54baba;
}
.single-blog-post .tags ul li a:hover {
  color: #525252;
}

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

.blog-page.template-2 .read-more-link {
  font: 600 16px/44px "Roboto Condensed", sans-serif;
  color: #E04E39;
  position: relative;
  display: inline-block;
  text-decoration: none;
  border-radius: 30px;
  padding: 0 40px;
  border: 1px solid #E04E39;
  text-transform: uppercase;
}
.blog-page.template-2 .read-more-link:hover {
  opacity: 0.8;
}
.blog-page.template-2 .read-more-link:hover:after {
  width: 0;
  left: auto;
  right: 0;
}
.blog-page.template-2 .read-more-link.white {
  color: #fff;
}
.blog-page.template-2 .read-more-link.white:after {
  background: #fff;
}
.blog-page.template-2 .read-more-link.colored {
  color: #969696;
  border: 1px solid #969696;
  font-size: 24px;
  line-height: 40px;
  padding: 0 50px;
}
.blog-page.template-2 .read-more-link.colored:hover, .blog-page.template-2 .read-more-link.colored.active {
  background-color: #003E66;
  border-color: #003E66;
  color: #fff;
  opacity: 1;
}
.blog-page.template-2 .read-more-link.see-all-colored {
  border: 0;
  border-radius: 0;
  color: #003E66;
  padding: 0;
  font-size: 20px;
  line-height: 40px;
}
.blog-page.template-2 .read-more-link.see-all-colored:before {
  content: "";
  background-color: #5990B4;
  display: block;
  width: 2px;
  height: 42px;
  position: absolute;
  top: 0;
  left: -25px;
}
.blog-page.template-2 .read-more-link.see-all-colored:hover, .blog-page.template-2 .read-more-link.see-all-colored.active {
  color: #E04E39;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2 .read-more-link {
    padding: 0 20px;
    font-size: 14px;
    line-height: 36px;
  }
}
.blog-page.template-2.single-blog-post .page-content-wrapper {
  width: 100%;
}
.blog-page.template-2.single-blog-post .single-post-image {
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #5990b4;
  height: 415px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-image {
    padding-top: 55vh;
    height: auto;
  }
}
.blog-page.template-2.single-blog-post .single-post-heading {
  font: 400 22px/1.2 "Roboto Condensed", sans-serif;
  background-color: #003E66;
  padding: 25px 35px;
  position: absolute;
  bottom: 55px;
  color: #fff;
  max-width: 890px;
  margin-right: 90px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-heading {
    bottom: 0;
    padding: 20px;
    margin-right: 0;
    background-color: rgba(0, 62, 102, 0.8);
  }
}
.blog-page.template-2.single-blog-post .single-post-heading .date-time {
  display: inline-block;
  font-size: 0;
  vertical-align: top;
  padding-bottom: 20px;
}
.blog-page.template-2.single-blog-post .single-post-heading .date-time .date {
  font-size: 22px;
}
.blog-page.template-2.single-blog-post .single-post-heading .date-time .time-read {
  font-size: 22px;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  margin-left: 30px;
}
.blog-page.template-2.single-blog-post .single-post-heading .date-time .time-read:before {
  content: "";
  height: 20px;
  width: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-2.single-blog-post .single-post-heading .date-time .date {
    font-size: 20px;
  }
  .blog-page.template-2.single-blog-post .single-post-heading .date-time .time-read {
    font-size: 20px;
    padding-left: 15px;
    margin-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-heading .date-time {
    padding-bottom: 15px;
  }
  .blog-page.template-2.single-blog-post .single-post-heading .date-time .date {
    font-size: 14px;
  }
  .blog-page.template-2.single-blog-post .single-post-heading .date-time .time-read {
    font-size: 14px;
    padding-left: 10px;
    margin-left: 10px;
  }
}
.blog-page.template-2.single-blog-post .single-post-heading h1 {
  font: 400 50px/1 "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog-page.template-2.single-blog-post .single-post-heading h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-heading h1 {
    font-size: 24px;
    padding-right: 20px;
  }
}
.blog-page.template-2.single-blog-post .single-post-heading .post-share-button {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  align-items: center;
  transition: opacity 350ms ease-in-out;
}
.blog-page.template-2.single-blog-post .single-post-heading .post-share-button svg {
  fill: #fff;
  margin-left: 10px;
}
.blog-page.template-2.single-blog-post .single-post-heading .post-share-button:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-heading .post-share-button {
    right: 10px;
    top: 10px;
    font-size: 0;
  }
}
.blog-page.template-2.single-blog-post .single-post-heading .share-socials {
  position: absolute;
  right: -120px;
  bottom: auto;
  top: 0;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-2.single-blog-post .single-post-heading .share-socials {
    right: 0;
  }
}
.blog-page.template-2.single-blog-post .single-post-content-wrapper {
  padding: 0 285px 0 35px;
  position: relative;
}
.blog-page.template-2.single-blog-post .single-post-content-wrapper.banner-show {
  min-height: 660px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .single-post-content-wrapper {
    padding: 0;
  }
  .blog-page.template-2.single-blog-post .single-post-content-wrapper.banner-show {
    min-height: 0;
  }
}
.blog-page.template-2.single-blog-post .blog-breadcrumb {
  font: 400 18px/1.2 "Roboto Condensed", sans-serif;
  color: #666666;
  margin-bottom: 35px;
  text-align: left;
}
.blog-page.template-2.single-blog-post .blog-breadcrumb .separator {
  padding: 0 10px;
}
.blog-page.template-2.single-blog-post .blog-breadcrumb a {
  color: #666;
  text-decoration: none;
}
.blog-page.template-2.single-blog-post .blog-breadcrumb a:hover, .blog-page.template-2.single-blog-post .blog-breadcrumb a.active {
  color: #003E66;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.single-blog-post .blog-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .blog-page.template-2.single-blog-post .blog-breadcrumb .separator {
    padding: 0 5px;
  }
}
.blog-page.template-2.single-blog-post .tags {
  display: inline-block;
  vertical-align: top;
  font-family: "Roboto Condensed", sans-serif;
}
.blog-page.template-2.single-blog-post .tags h5 {
  font: 500 20px/1.2 "Roboto Condensed", sans-serif;
  color: #666666;
  display: inline-block;
  padding-right: 10px;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-2.single-blog-post .tags h5 {
    margin-bottom: 10px;
  }
}
.blog-page.template-2.single-blog-post .tags ul {
  margin: 0 0 15px 0;
  list-style: none;
  display: inline-block;
}
.blog-page.template-2.single-blog-post .tags ul li {
  display: inline-block;
  padding-left: 0;
  padding-right: 10px;
}
.blog-page.template-2.single-blog-post .tags ul li:before {
  content: none;
}
.blog-page.template-2.single-blog-post .tags ul li a {
  text-decoration: none;
  font-weight: 600;
  color: #003E66;
}
.blog-page.template-2.single-blog-post .tags ul li a:hover {
  color: #5990b4;
}
.blog-page.template-2.blog-search-view .no-results h3 {
  font: 400 22px/1.2 "Roboto Condensed", sans-serif;
  color: #003E66;
}
.blog-page.template-2.blog-archive-view .archive-header {
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header {
    margin-top: 30px;
  }
}
.blog-page.template-2.blog-archive-view .archive-header .page-content h1 {
  font: normal 60px/1 "Roboto Condensed", sans-serif;
  color: #E04E39;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .page-content h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years {
  display: block;
  margin: 0 auto;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years .archive-years-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years .archive-years-list a {
  margin-right: 15px;
  display: block;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years .archive-years-list a:last-child {
  margin-right: 0;
  margin-left: 35px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .archive-years .archive-years-list {
    display: none;
  }
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years #archive-years-filter {
  font-family: "Roboto Condensed", sans-serif;
  display: none;
  text-align: center;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-years #archive-years-filter label {
  color: #003E66;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .archive-years #archive-years-filter {
    display: block;
  }
  .blog-page.template-2.blog-archive-view .archive-header .archive-years #archive-years-filter .select-wrapper {
    width: 100%;
  }
  .blog-page.template-2.blog-archive-view .archive-header .archive-years #archive-years-filter #blog-years-filter {
    width: 100%;
  }
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months {
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  margin: 20px auto 60px;
  padding: 0 30px;
  max-width: 940px;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list {
  display: flex;
  justify-content: space-between;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list li {
  display: inline-block;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list a {
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list a:hover, .blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list a.active {
  color: #5990B4;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list {
    display: none;
  }
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months #archive-months-filter {
  font-family: "Roboto Condensed", sans-serif;
  display: none;
  text-align: center;
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months #archive-months-filter label {
  color: #003E66;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .archive-months #archive-months-filter {
    display: block;
  }
  .blog-page.template-2.blog-archive-view .archive-header .archive-months #archive-months-filter .select-wrapper {
    width: 100%;
  }
  .blog-page.template-2.blog-archive-view .archive-header .archive-months #archive-months-filter #blog-months-filter {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .archive-header .archive-months {
    padding: 0;
    margin: 20px auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .recent-posts.center-column {
    padding: 0;
  }
}
.blog-page.template-2.blog-archive-view .recent-posts .month-archive-block {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.blog-page.template-2.blog-archive-view .recent-posts .month-title {
  font: 28px/1 "Roboto Condensed", sans-serif;
  color: #5990B4;
  display: block;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 45px;
}
.blog-page.template-2.blog-archive-view .recent-posts .month-title span {
  position: relative;
  display: inline-block;
  background: #fff;
  padding: 0 30px 0 10px;
  z-index: 1;
}
.blog-page.template-2.blog-archive-view .recent-posts .month-title:after {
  content: "";
  height: 4px;
  width: 90%;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -2px;
  background-color: #5990B4;
  opacity: 0.2;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-2.blog-archive-view .recent-posts .month-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .blog-page.template-2.blog-archive-view .recent-posts .month-title span {
    padding: 0 20px 0 0;
  }
  .blog-page.template-2.blog-archive-view .recent-posts .month-title:after {
    right: 0;
  }
}

@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;
  }
}
:root {
  --maven-light: #EFE9E0;
  --maven-blue: #394F71;
  --secondary-font:"goudy-old-style", serif;
  --secondary-italic-font:"ltc-goudy-oldstyle-pro", serif;
  --primary-font: "Roboto Condensed", sans-serif;
  --maven-gold:#86704A;
  --maven-tan:#E2CDA9;
  --maven-light-tan:#EBE2D2;
  --maven-darker-blue:#1A3752;
  --gradient-swiper-card-overlay:linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  --gradient-card-overlay-hover:linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
  --gradient-overlay: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%),
  linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}

/*
.roboto-condensed-<uniquifier> {
    font-family: "Roboto Condensed", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
  }
*/
.heading-xxl {
  font-family: "goudy-old-style", serif;
  font-size: 5rem;
  line-height: 80px;
  text-decoration: none;
  text-transform: capitalize;
}

.heading-xl {
  font-family: "goudy-old-style", serif;
  font-size: 4.5rem;
  line-height: 72px;
  text-decoration: none;
  text-transform: capitalize;
}
@media only screen and (max-width: 479) {
  .heading-xl {
    font-size: 3.75rem;
    line-height: 60px;
  }
}

.heading-L {
  font-family: "goudy-old-style", serif;
  font-size: 3.75rem;
  line-height: 70px;
  text-decoration: none;
  text-transform: capitalize;
}
@media only screen and (max-width: 479) {
  .heading-L {
    font-size: 2.5rem;
    line-height: 50px;
  }
}

.heading-m {
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 40px;
  text-transform: uppercase;
}
@media only screen and (max-width: 479) {
  .heading-m {
    font-size: 2rem;
    line-height: 24px;
  }
}

.heading-s {
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
  line-height: 40px;
  text-transform: uppercase;
  color: #86704A;
}
@media only screen and (max-width: 767px) {
  .heading-s {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
@media only screen and (max-width: 479) {
  .heading-s {
    font-size: 1.5rem;
    line-height: 28px;
  }
}

.heading-xs {
  font-family: "Roboto Condensed", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 24px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .heading-xs {
    font-size: 1rem;
    line-height: 24px;
  }
}
@media only screen and (max-width: 479) {
  .heading-xs {
    font-size: 1rem;
    line-height: 24px;
  }
}

.heading-xxs {
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: -1%;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 32px;
  text-transform: capitalize;
}
@media only screen and (max-width: 479) {
  .heading-xxs {
    font-size: 0.875rem;
    line-height: 16px;
    text-transform: uppercase;
  }
}

.breadcrumbs {
  font-family: var(--secondary-italic-font);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 32px;
  text-decoration: none;
  letter-spacing: 0px;
  color: var(--maven-blue);
}
.breadcrumbs a {
  text-decoration: none;
}

.menu-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 72px;
  letter-spacing: -2%;
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 479) {
  .menu-heading {
    font-size: 2.125rem;
    line-height: 58px;
  }
}

.menu-links {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 32px;
  text-transform: capitalize;
  text-decoration: none;
}
@media only screen and (max-width: 479) {
  .menu-links {
    font-size: 1.25rem;
    line-height: 24px;
  }
}

.footer-links {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 53px;
  text-transform: uppercase;
  text-decoration: none;
}
@media only screen and (max-width: 479) {
  .footer-links {
    font-size: 1rem;
    line-height: 43px;
  }
}

.cta {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: #E2CDA9;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}
.cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
@media only screen and (max-width: 479) {
  .cta {
    font-size: 0.875rem;
    line-height: 16px;
  }
}
.cta a {
  text-decoration: none;
  color: #394F71;
  text-transform: uppercase;
}

.cta-blue {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: var(--maven-blue);
  text-decoration: none !important;
  transition: background-color 0.3s ease;
  color: var(--maven-light);
}
.cta-blue:hover {
  background-color: var(--maven-tan);
  color: var(--maven-blue);
}
@media only screen and (max-width: 479) {
  .cta-blue {
    font-size: 0.875rem;
    line-height: 16px;
  }
}
.cta-blue a {
  text-decoration: none;
  color: var(--maven-light);
  text-transform: uppercase;
}

.view-cta {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: none;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: var(--maven-light);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.view-cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
@media only screen and (max-width: 479) {
  .view-cta {
    font-size: 0.875rem;
    line-height: 16px;
  }
}
.view-cta a {
  text-decoration: none;
  color: var(--maven-light);
  text-transform: uppercase;
}

.book-cta {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: var(--maven-light);
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: var(--maven-blue);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.book-cta:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
@media only screen and (max-width: 479) {
  .book-cta {
    font-size: 0.875rem;
    line-height: 16px;
  }
}
.book-cta a {
  text-decoration: none;
  color: var(--maven-light);
  text-transform: uppercase;
}

.breadcrumb-wrapper {
  max-width: 220px;
  width: 100%;
  height: 32px;
  position: absolute;
  padding-top: 30px;
  z-index: 9;
}
@media (width <= 990px) {
  .breadcrumb-wrapper {
    padding-top: 0px;
  }
}
.breadcrumb-wrapper span.breadcrumbs-container {
  max-width: 100%;
  width: 100%;
  height: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-left: 40px;
}
@media (width <= 990px) {
  .breadcrumb-wrapper span.breadcrumbs-container {
    margin-left: 30px;
    max-width: 65%;
    overflow: hidden;
  }
}

p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

strong {
  font-weight: bold;
}

.specials p {
  color: var(--maven-blue);
}

.find-yourself-acm {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 140px auto 0;
}
@media (max-width: 395px) {
  .find-yourself-acm {
    margin: 90px auto 0;
  }
}
.find-yourself-acm .yourself-grid {
  display: grid;
  grid-template-columns: 350px 1fr 350px;
  grid-template-rows: auto;
  row-gap: 80px;
  -moz-column-gap: 77px;
       column-gap: 77px;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding-top: 0;
  }
}
.find-yourself-acm .yourself-grid .column-1 {
  max-width: 350px;
  height: 350px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-1 {
    display: none;
  }
}
.find-yourself-acm .yourself-grid .column-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm .yourself-grid .column-2 {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.find-yourself-acm .yourself-grid .column-2 .engine {
  max-width: 317px;
  width: 100%;
  height: 190px;
  position: absolute;
  top: -51px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-2 .engine {
    max-width: 237px;
    height: 142px;
    top: -119px;
    margin: 50px 0px 50px;
  }
}
.find-yourself-acm .yourself-grid .column-2 .engine img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.find-yourself-acm .yourself-grid .column-2 .gear-top {
  animation: rotateEngineBottom 5s linear infinite;
}
@keyframes rotateEngineBottom {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.find-yourself-acm .yourself-grid .column-2 .info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 98px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 200px;
  flex: 1;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-2 .info {
    max-width: 100%;
    margin: auto 30px;
  }
}
@media (max-width: 395px) {
  .find-yourself-acm .yourself-grid .column-2 .info {
    max-width: 330px;
    margin: 0 auto;
  }
}
.find-yourself-acm .yourself-grid .column-2 .info .inner-heading {
  color: #394F71;
  font-size: 72px;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 72px;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-2 .info .inner-heading {
    font-size: 60px;
    line-height: 60px;
  }
}
.find-yourself-acm .yourself-grid .column-2 .info .inner-heading .italic-style {
  font-style: italic;
}
.find-yourself-acm .yourself-grid .column-2 .info .inner-heading .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm .yourself-grid .column-2 .info .inner-heading p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm .yourself-grid .column-2 .info .inner-heading a {
  text-decoration: underline;
  font-weight: 500;
}
.find-yourself-acm .yourself-grid .column-2 .info .content {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1 1 0;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-2 .info .content {
    font-size: 1rem;
  }
}
.find-yourself-acm .yourself-grid .column-2 .info .content a {
  text-decoration: underline;
  font-weight: 500;
}
.find-yourself-acm .yourself-grid .column-2 .info .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm .yourself-grid .column-2 .info .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm .yourself-grid .column-2 .info .cta-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.find-yourself-acm .yourself-grid .column-2 .info .cta-wrapper a {
  text-decoration: none;
  color: #394F71;
  text-transform: uppercase;
}
.find-yourself-acm .yourself-grid .column-2 .info .cta-wrapper a:hover {
  color: var(--maven-light);
}
.find-yourself-acm .yourself-grid .column-3 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-3 {
    display: none;
  }
}
.find-yourself-acm .yourself-grid .column-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm .yourself-grid .column-4 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-4 {
    display: none;
  }
}
.find-yourself-acm .yourself-grid .column-4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm .yourself-grid .column-5 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .column-5 {
    display: none;
  }
}
.find-yourself-acm .yourself-grid .column-5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper {
  grid-column: 1/-1;
  max-width: 350px;
  height: 400px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  .find-yourself-acm .yourself-grid .find-your-self-slidewrapper {
    display: flex;
    width: 100%;
    margin: 0 auto 70px;
  }
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide {
  width: 100%;
  height: 100%;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 350px;
  position: relative;
  transition-property: transform;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 130px;
  margin-top: 20px;
  bottom: 0px;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.find-yourself-acm .yourself-grid .find-your-self-slidewrapper #find-yourself-slide .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.find-yourself-acm .yourself-grid .insta-icon {
  position: absolute;
  right: -6px;
  max-width: 50px;
  width: 100%;
  height: 50px;
  overflow: hidden;
  bottom: -3px;
  z-index: 90;
}
.find-yourself-acm .yourself-grid .insta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
}

.find-yourself-acm-static {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 140px auto 0;
}
@media (max-width: 395px) {
  .find-yourself-acm-static {
    margin: 90px auto 0;
  }
}
.find-yourself-acm-static .yourself-grid-1 {
  display: grid;
  grid-template-columns: 350px 1fr 350px;
  grid-template-rows: auto;
  row-gap: 80px;
  -moz-column-gap: 77px;
       column-gap: 77px;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 {
    grid-template-columns: 1fr;
    row-gap: 40px;
    padding-top: 0;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-1 {
  max-width: 350px;
  height: 350px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-1 {
    display: none;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-1 .insta-logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
}
.find-yourself-acm-static .yourself-grid-1 .column-1 .insta-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .engine {
  max-width: 317px;
  width: 100%;
  height: 190px;
  position: absolute;
  top: -51px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-2 .engine {
    max-width: 237px;
    height: 142px;
    top: -119px;
    margin: 50px 0px 50px;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .engine img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .gear-top {
  animation: rotateEngineBottom 5s linear infinite;
}
@keyframes rotateEngineBottom {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 98px;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 200px;
  flex: 1;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-2 .info {
    max-width: 100%;
    margin: auto 30px;
  }
}
@media (max-width: 395px) {
  .find-yourself-acm-static .yourself-grid-1 .column-2 .info {
    max-width: 330px;
    margin: 0 auto;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading {
  color: #394F71;
  font-size: 72px;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 72px;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading {
    font-size: 60px;
    line-height: 60px;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading .italic-style {
  font-style: italic;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .inner-heading a {
  text-decoration: underline;
  font-weight: 500;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .content {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1 1 0;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-2 .info .content {
    font-size: 1rem;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .content a {
  text-decoration: underline;
  font-weight: 500;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .cta-wrapper {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .cta-wrapper a {
  text-decoration: none;
  color: #394F71;
  text-transform: uppercase;
}
.find-yourself-acm-static .yourself-grid-1 .column-2 .info .cta-wrapper a:hover {
  color: var(--maven-light);
}
.find-yourself-acm-static .yourself-grid-1 .column-3 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-3 {
    display: none;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-3 .insta-logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
}
.find-yourself-acm-static .yourself-grid-1 .column-3 .insta-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-4 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-4 {
    display: none;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-4 .insta-logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
}
.find-yourself-acm-static .yourself-grid-1 .column-4 .insta-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-5 {
  max-width: 350px;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .column-5 {
    display: none;
  }
}
.find-yourself-acm-static .yourself-grid-1 .column-5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .column-5 .insta-logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
}
.find-yourself-acm-static .yourself-grid-1 .column-5 .insta-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static {
  grid-column: 1/-1;
  max-width: 350px;
  height: 400px;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}
@media (max-width: 1024px) {
  .find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static {
    display: flex;
    width: 100%;
    margin: 0 auto 70px;
  }
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static {
  width: 100%;
  height: 100%;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 350px;
  position: relative;
  transition-property: transform;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-slide .insta-logo {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 20px;
  height: 20px;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-slide .insta-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 130px;
  margin-top: 20px;
  bottom: 0px;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.find-yourself-acm-static .yourself-grid-1 .find-your-self-slidewrapper-static #find-yourself-slide-static .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.find-yourself-acm-static .yourself-grid-1 .insta-icon {
  position: absolute;
  right: -6px;
  max-width: 50px;
  width: 100%;
  height: 50px;
  overflow: hidden;
  bottom: -3px;
  z-index: 90;
}
.find-yourself-acm-static .yourself-grid-1 .insta-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
}

.rooms-two-column-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.rooms-two-column-acm .rooms-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 175px 150px;
  flex: 1;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  position: relative;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-right: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .heading {
    padding-right: 30px;
    top: 0px;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: 100%;
    margin: auto 30px;
  }
}
@media (max-width: 395px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info {
  color: #394F71;
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 330px;
    width: 100%;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .content a {
  text-decoration: underline;
  font-weight: 500;
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: 0px;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .gif-container {
    position: unset;
    margin: 0px 18px 0px auto;
  }
}
.rooms-two-column-acm .rooms-grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media (max-width: 1026px) {
  .rooms-two-column-acm .rooms-grid-wrapper .column-with-content .gif-container img {
    max-width: 194px;
    height: 129px;
    width: 100%;
  }
}

.rooms-homepage-slide-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.rooms-homepage-slide-acm div#rooms-homeslider {
  position: relative;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm div#rooms-homeslider {
    height: 500px;
  }
}
.rooms-homepage-slide-acm div#rooms-homeslider .category-selector {
  text-align: center;
  font-size: 0;
  margin: 40px 0 20px 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #EFE9E0;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm div#rooms-homeslider .category-selector {
    margin: 0px 0px 10px 0px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 56px;
    top: 0px;
    border-bottom: 1px solid var(--maven-blue);
    color: var(--maven-blue);
  }
}
.rooms-homepage-slide-acm div#rooms-homeslider .category-selector .select-wrapper {
  display: none !important;
}
.rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button {
  background: none;
  padding: 12px 24px;
  color: #EFE9E0;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button {
    display: inline-flex;
    color: var(--maven-blue);
    font-size: 0.875rem;
    white-space: normal;
  }
}
.rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button.active {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button.active {
    text-underline-offset: 24px;
    color: var(--maven-blue);
  }
}
.rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button:hover {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm div#rooms-homeslider .category-selector .button:hover {
    text-underline-offset: 24px;
    color: var(--maven-blue);
  }
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider {
    height: 500px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide {
  max-width: 1440px;
  width: 100%;
  height: 800px;
  /*.swiper-slide-active{
      .roomcaption {
          opacity: 1;
          transform: translate3d(50%, 0px, 0px);
      }

  } */
  /*
  .gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);

    }
  */
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide {
    max-width: 100%;
    width: 100%;
    height: 276px;
    display: flex;
    position: relative;
    top: 58px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide img {
    height: 276px;
    overflow: hidden;
    width: 100%;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption {
  display: flex;
  position: absolute;
  bottom: 0px;
  width: 100%;
  max-width: 660px;
  overflow: hidden;
  height: 112px;
  flex-direction: column;
  border: 1px #EFE9E0 solid;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  margin-bottom: 40px;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption {
    background: var(--maven-blue);
    bottom: -165px;
    height: 164px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-name {
    font-size: 1.5rem;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 1px #EFE9E0 solid;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox {
    flex-direction: column;
    height: 100%;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-features {
  width: 492px;
  height: 56px;
  text-align: center;
  color: #efe9e0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  line-height: 32px;
  padding: 12px 0px;
  text-transform: capitalize;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-features {
    border-bottom: 1px solid var(--maven-light);
    padding: 10px 0px;
    height: 46px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px #EFE9E0 solid;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas {
    border-left: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    width: 100%;
    grid-template-rows: 40px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 10px;
    padding: 0px 10px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .view-cta {
  color: #EFE9E0;
  cursor: pointer;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .view-cta {
    border: 1px solid var(--maven-light);
    text-align: center;
    width: 100%;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .book-cta {
  height: 100%;
  line-height: unset;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .book-cta {
    text-align: center;
    width: 100%;
    line-height: 16px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .overlay-book {
  white-space: nowrap;
}
.rooms-homepage-slide-acm #rooms-homepageslider figure.swiper-slide.room-slides.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-slide-active .roomcaption {
  opacity: 1;
  transform: translate(-50%);
}
.rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 10;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller {
    top: 30%;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  max-width: 50px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 880px) {
  .rooms-homepage-slide-acm #rooms-homepageslider .swiper-pagination.swiper-pagination-fraction {
    bottom: 42%;
    right: 24px;
  }
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.rooms-homepage-slide-acm #rooms-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.rooms-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.rooms-overlay-modal .rooms-overlay-content {
  background: #fff;
  color: #000;
  display: grid;
  grid-template-columns: 1fr 600px;
  grid-template-rows: 721px;
  width: 100%;
  max-width: 1440px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  /* for mobile only */
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    top: 0px;
    transform: translate(-50%);
  }
}
.rooms-overlay-modal .rooms-overlay-content .mobile-booknow {
  display: none;
  grid-template-columns: 19.25rem;
  grid-template-rows: auto;
  width: calc(100% - 20px);
  max-width: 100%;
  margin: 10px;
  background: var(--maven-light);
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .mobile-booknow {
    display: grid;
  }
}
.rooms-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book {
  width: 100%;
  max-width: 100%;
  height: 52px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rooms-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book .cta {
  width: 100%;
  text-align: center;
  padding: 17px 109px;
  background: var(--maven-blue);
  color: var(--maven-light);
}
.rooms-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book .cta:hover {
  background: var(--maven-light);
  color: var(--maven-blue);
}
.rooms-overlay-modal .rooms-overlay-content .mobile-booknow .close-room {
  max-width: 30px;
  height: 30px;
  overflow: hidden;
  width: 100%;
  display: block;
  top: 20px;
  right: 20px;
}
.rooms-overlay-modal .rooms-overlay-content .image-column {
  display: block;
  width: 100%;
  max-width: 840px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .image-column {
    height: 400px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms-overlay-modal .rooms-overlay-content .image-column {
    max-width: 100%;
    height: 260px;
  }
}
.rooms-overlay-modal .rooms-overlay-content .image-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.rooms-overlay-modal .rooms-overlay-content .image-column .gallery-icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: absolute;
  bottom: 8px;
  right: 24px;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .image-column .gallery-icon {
    max-width: 40px;
    width: 100%;
    height: 40px;
  }
}
.rooms-overlay-modal .rooms-overlay-content .image-column .gallery-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0 !important;
  pointer-events: auto !important;
  transition-property: transform !important;
  z-index: 99998 !important;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide-active {
  z-index: 99998 !important;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99998 !important;
  display: none;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  width: 100%;
  max-width: 80px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-prev .prev-btn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  width: 100%;
  max-width: 80px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.rooms-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-next .next-btn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row {
    display: none;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row a.rooms-item-gallery.cta {
  background: #EFE9E0;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row a.rooms-item-gallery.cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
  margin: 80px 60px auto;
  width: calc(100% - 120px);
  max-width: 100%;
  flex: 1;
  overflow: auto;
  height: 729px;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail {
    gap: 30px;
    max-width: 100%;
    width: calc(100%);
    margin: 40px 0px 0px;
    padding: 0px 30px;
    height: 100%;
    flex: 1;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 34px;
  flex: 1;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details {
    gap: 24px;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .heading-m {
  color: var(--maven-blue);
  text-align: center;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .heading-m {
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    line-height: 30px;
    flex: 1;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc ul {
  list-style-type: disc;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc ul li {
  list-style: disc;
  margin-left: 24px;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .divider {
  width: 100%;
  height: 1px;
  background: #E2CDA9;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #e2cda9;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .divider {
    max-width: 100%;
    width: 100%;
    padding: 0px 30px;
    overflow: hidden;
    box-sizing: border-box;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections {
  display: flex;
  flex-direction: column;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  margin-bottom: 82px;
  gap: 35px;
  width: 100%;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections {
    font-size: 1rem;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .title {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .title {
    font-size: 1rem;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections ul.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  row-gap: 24px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  white-space: wrap;
}
@media (max-width: 640px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections ul.features {
    white-space: normal;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .feature-amenities {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .feature-amenities .amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  width: 100%;
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #394F71;
  padding: 10px;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0px 30px 30px;
  }
}
.rooms-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book .cta {
  background: #394F71;
  color: var(--maven-light);
}
.rooms-overlay-modal .close-room {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  max-width: 60px;
  height: 60px;
  width: 100%;
}
@media (max-width: 1023px) {
  .rooms-overlay-modal .close-room {
    display: none;
  }
}

.fancybox-slide--html .fancybox-close-small {
  color: var(--maven-light);
  padding: 10px;
  right: 359px;
  position: absolute;
  top: 64px;
  font-size: 24px;
  cursor: pointer;
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 50%;
  background: var(--maven-blue);
  opacity: 1;
  display: none;
}
@media (width <= 1440px) {
  .fancybox-slide--html .fancybox-close-small {
    right: 20px;
  }
}
@media (max-width: 1023px) {
  .fancybox-slide--html .fancybox-close-small {
    max-width: 40px;
    height: 40px;
    width: 100%;
    overflow: hidden;
    right: 21px;
    top: 15px;
  }
}

/*
        #overlay-swiper-gallery {
            width: 100%;
            height: 100%;
            .swiper-slide {
                width: 100%;
                height: 100%;
                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }
        }
        */
.home-offers-slider-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.home-offers-slider-acm .offers-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  /* @include respond-to(mobile) {
       grid-template-columns: 1fr;
       gap:24px;
   }*/
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .top-line {
    grid-column: span 1;
    height: 34px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .top-line .t-line {
    width: 60px;
  }
}
@media (max-width: 880px) {
  .home-offers-slider-acm .offers-grid-wrapper .top-line .t-line {
    width: 60px;
    top: -42px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider {
  max-width: 4506.25%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  flex: 1;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider {
    height: 50vh;
    width: calc(100% - 30px);
    max-width: 100%;
    margin: auto 15px;
  }
}
@media (max-width: 880px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider {
    height: 519px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image {
  max-width: 100%;
  width: 100%;
  height: 620px;
  margin-bottom: 52px;
  /*
  img{
      width:100%;
      height:100%;
      object-fit: contain;
      object-position: center;
  }
  */
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image {
    max-width: 100%;
    width: 100%;
    height: 465px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider {
  width: 100%;
  overflow: hidden;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper {
  max-width: 100%;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide {
  min-width: 466px;
  max-width: 466px !important;
  width: 100%;
  overflow: hidden;
  height: 620px;
  margin: 0;
  position: relative;
}
@media (max-width: 880px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide {
    min-width: 350px;
    max-width: 100%;
    width: 100%;
    height: 465px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media (max-width: 880px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper {
  position: absolute;
  bottom: 0;
  color: var(--maven-light);
  font-family: "Roboto Condensed", sans-serif;
  /* text-transform: uppercase;
   border:1px solid #EFE9E0;
    display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin: 0px 24px 24px 24px;
   max-width: 418px;*/
  width: 100%;
  /* .cta-wrapper {
       display: inline-flex;
       justify-content: center;
       align-items: center;
       gap: 10px;
       width: 100%;
       border-top: 1px solid #fff;

       .cta-view {
           width: 100%;
           text-align: center;
           background: none;
           color:var(--maven-light);

           .cta{
               color:var(--maven-light);
           }
       }

       .book-cta{
           width: 100%;
           text-align: center;

       }
   }*/
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .content {
  width: 100%;
  height: 100%;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
  flex: 1;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper {
  align-self: stretch;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
  border-left: 1px #EFE9E0 solid;
  border-top: 1px #EFE9E0 solid;
  border-right: 1px #EFE9E0 solid;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .title {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc {
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  max-width: 358px;
  margin: 0px auto 134px;
  height: 192px;
  display: none;
  opacity: 0;
  transition: all 0.3s ease-in;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc {
    height: 100%;
    flex: 1;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper {
  align-self: stretch;
  height: 48px;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .view-cta {
  width: 100%;
  border: 1px #EFE9E0 solid;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .view-cta .cta {
  background: none;
  color: var(--maven-light);
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .book-cta {
  /*flex: 1 1 0; 
  height: 48px;
   padding-left: 24px; 
   padding-right: 24px; 
   padding-top: 12px; 
   padding-bottom: 12px; 
   background: #EFE9E0; 
   border: 1px #EFE9E0 solid; 
   justify-content: center; 
   align-items: center; 
   gap: 10px; 
   display: flex;*/
  width: 100%;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .book-cta .cta {
  color: var(--maven-blue);
  background-color: var(--maven-light);
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0px;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .top-section .heading {
  display: inline-flex;
  flex: 110;
  /* padding: 12px 0px; */
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper .swiper-slide .content-wrapper .top-section .content {
  display: inline-flex;
  flex: 110;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: none;
  font-size: 1.125rem;
  line-height: 24px;
  display: none;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover::before .content-wrapper .info-wrapper {
  padding-top: 134px;
  text-align: center;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover::before .content-wrapper .info-wrapper {
    padding-top: 46px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover::before .content-wrapper .info-wrapper .short-desc {
  display: flex;
  opacity: 1;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover .content-wrapper .info-wrapper {
  padding-top: 134px;
  text-align: center;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover .content-wrapper .info-wrapper {
    padding-top: 46px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper-wrapper figure.swiper-slide.swiper-slide-active:hover .content-wrapper .info-wrapper .short-desc {
  display: flex;
  opacity: 1;
  z-index: 1;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider figure.swiper-slide.swiper-slide-prev {
  opacity: 0;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 130px;
  margin-top: 20px;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .rooms-nav-controller .swiper-prev {
  cursor: pointer;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .rooms-nav-controller .swiper-next {
  cursor: pointer;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper--pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper--pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-slider .column-inner-image #offers-homepageslider .swiper--pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
  flex: 1;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media only screen and (max-width: 767px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    padding-left: 30px;
    top: 0px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-right: 100px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}
@media (max-width: 1185px) {
  .home-offers-slider-acm .offers-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.home-offers-slider-acm .offers-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

.dining-homeslide-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.dining-homeslide-acm #dining-slider {
  position: relative;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-slider {
    height: 500px;
  }
}
.dining-homeslide-acm #dining-slider .category-selector {
  text-align: center;
  font-size: 0;
  margin: 40px 0 20px 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #EFE9E0;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-slider .category-selector {
    margin: 0px 0px 10px 0px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 56px;
    top: 0px;
    border-bottom: 1px solid var(--maven-blue);
    color: var(--maven-blue);
  }
}
.dining-homeslide-acm #dining-slider .category-selector .select-wrapper {
  display: none !important;
}
.dining-homeslide-acm #dining-slider .category-selector .button {
  background: none;
  padding: 12px 24px;
  color: #EFE9E0;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-slider .category-selector .button {
    display: inline-flex;
    color: var(--maven-blue);
    font-size: 0.875rem;
    white-space: normal;
  }
}
.dining-homeslide-acm #dining-slider .category-selector .button.active {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-slider .category-selector .button.active {
    text-underline-offset: 22px;
    color: var(--maven-blue);
  }
}
.dining-homeslide-acm #dining-slider .category-selector .button:hover {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-slider .category-selector .button:hover {
    text-underline-offset: 22px;
    color: var(--maven-blue);
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide {
  width: 1440px;
  max-width: 1440px;
  overflow: hidden;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* .gradient-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);

       @media (max-width: 880px) {
           height:60%;
       }

     }*/
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide {
    height: 440px;
    width: 100%;
    max-width: 100%;
    top: 53px;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide img {
    height: 276px;
    overflow: hidden;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  text-align: center;
  color: white;
  border: 1px solid #fff;
  transform: translate3d(-50%, 100%, 0);
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 660px;
  width: 100%;
  transform: translate(-50%);
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption {
    background: var(--maven-blue);
    bottom: 0px;
    height: 164px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 769px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption {
    bottom: 0px;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  width: 100%;
  position: relative;
  max-width: 660px;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    overflow: hidden;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-name {
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  grid-column: 1/-1;
  padding: 12px 0px;
  border-bottom: 1px solid var(--maven-light);
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-name {
    font-size: 1.5rem;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-featurebox {
  padding-top: 12px;
  padding-bottom: 12px;
  border-right: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-featurebox {
    flex-direction: column;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-featurebox .room-info {
  width: 492px;
  text-align: center;
  color: #EFE9E0;
  font-size: 18px;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .room-featurebox .room-info {
    border-bottom: 1px solid var(--maven-light);
    height: 32px;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-slide figcaption .dining-info-container .cta-wrapper {
    border: 1px solid var(--maven-light);
    /* padding: 0px 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 370px;
    margin: 0 auto;
    width: 100%;
    height: 40px;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-slide-active figcaption {
  opacity: 1;
  transform: translate(-50%);
}
.dining-homeslide-acm #dining-homepageslider figure.swiper-slide.dining-slides.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.dining-homeslide-acm #dining-homepageslider .rooms-nav-controller {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 10;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .rooms-nav-controller {
    top: 34%;
  }
}
.dining-homeslide-acm #dining-homepageslider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.dining-homeslide-acm #dining-homepageslider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  max-width: 32px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 880px) {
  .dining-homeslide-acm #dining-homepageslider .swiper-pagination.swiper-pagination-fraction {
    bottom: 38%;
    right: 20px;
  }
}
.dining-homeslide-acm #dining-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.dining-homeslide-acm #dining-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.dining-homeslide-acm .vertical-line {
  width: 100px;
  height: 0px;
  left: 50%;
  bottom: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}

.diary-block-acm {
  position: relative;
  max-width: 1438px;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 999px) {
  .diary-block-acm {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .diary-block-acm {
    max-width: 100%;
    width: 100%;
  }
}
.diary-block-acm .fill-background {
  width: 100%;
  max-width: 1200px;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  position: absolute;
  background: #E2CDA9;
  background: linear-gradient(0deg, var(--maven-tan) 0%, var(--maven-tan) 100%);
}
@media (max-width: 999px) {
  .diary-block-acm .fill-background {
    top: 4%;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .diary-block-acm .fill-background {
    margin: 0px auto 0px;
    max-width: 100%;
    width: 100%;
    top: 4%;
  }
}
.diary-block-acm .vertical-line {
  width: 225px;
  height: 0px;
  left: 50%;
  top: -42px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .diary-block-acm .vertical-line {
    width: 180px;
  }
}
@media (max-width: 766px) {
  .diary-block-acm .vertical-line {
    width: 120px;
  }
}
.diary-block-acm .content-wrapper {
  top: 0;
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: flex;
  max-width: 1000px;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  margin-top: 140px;
}
@media (max-width: 999px) {
  .diary-block-acm .content-wrapper {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .diary-block-acm .content-wrapper {
    max-width: 100%;
    width: 100%;
    top: 0px;
    height: auto;
    flex: 1 1 0;
  }
}
.diary-block-acm .content-wrapper .heading {
  color: #86704A;
  margin-top: 10%;
}
@media (max-width: 999px) {
  .diary-block-acm .content-wrapper .heading {
    margin-top: 0%;
  }
}
@media (max-width: 880px) {
  .diary-block-acm .content-wrapper .heading {
    margin-top: 0%;
    text-align: center;
  }
}
.diary-block-acm .content-wrapper .content {
  color: var(--maven-blue);
  font-size: 3.6rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  flex: 1;
  margin: auto 100px;
  text-align: center;
}
@media (max-width: 999px) {
  .diary-block-acm .content-wrapper .content {
    max-width: 100%;
    width: 100%;
    font-size: 2.5rem;
    line-height: 50px;
    margin: auto 30px;
  }
}
@media (max-width: 520px) {
  .diary-block-acm .content-wrapper .content {
    max-width: 330px;
    width: 100%;
    font-size: 2.25rem;
    line-height: 50px;
    margin: 0 auto;
  }
}
.diary-block-acm .content-wrapper .cta-wrapper {
  display: fkex;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 400px) {
  .diary-block-acm .content-wrapper .cta-wrapper {
    gap: 0px;
  }
}
.diary-block-acm .content-wrapper .cta-wrapper .dairy-cta {
  margin-bottom: 13px;
}
@media (max-width: 880px) {
  .diary-block-acm .content-wrapper .cta-wrapper .dairy-cta {
    margin-bottom: 40px;
  }
}
.diary-block-acm .content-wrapper .cta-wrapper .cta {
  background: var(--maven-light);
}
.diary-block-acm .content-wrapper .cta-wrapper .cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.diary-block-acm .image-collage {
  max-width: 1437px;
  width: 100%;
  height: 452px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  margin: 80px auto;
}
@media (max-width: 999px) {
  .diary-block-acm .image-collage {
    max-width: 100%;
    margin: 40px auto;
  }
}
@media (max-width: 640px) {
  .diary-block-acm .image-collage {
    max-width: 100%;
    overflow: hidden;
    height: 285px;
  }
}
.diary-block-acm .image-collage #dairy-homepageslider {
  width: 100%;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide {
  width: 280px;
  max-width: 100%;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-active {
  width: 466px;
  max-width: 100%;
  height: 400px;
}
@media (max-width: 640px) {
  .diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-active {
    max-width: 270px;
    width: 100%;
    overflow: hidden;
    height: 232px;
  }
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-active img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-active .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-active .pause-controller {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 999;
  max-width: 30px;
  width: 100%;
  height: 30px;
  overflow: hidden;
  cursor: pointer;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-prev {
  width: 373px;
  max-width: 100%;
  height: 320px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-prev {
    max-width: 270px;
    width: 100%;
    overflow: hidden;
    height: 232px;
  }
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-prev img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-prev .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-next {
  width: 373px;
  max-width: 100%;
  height: 320px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-next {
    max-width: 270px;
    width: 100%;
    overflow: hidden;
    height: 232px;
  }
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-next img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-wrapper .swiper-slide.swiper-slide-next .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.diary-block-acm .image-collage #dairy-homepageslider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%);
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.diary-block-acm .image-collage #dairy-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.standard-interior-full-col-acm {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.standard-interior-full-col-acm .line {
  width: 100px;
  height: 1px;
  transform: rotate(90deg) translate(-50%);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  position: absolute;
  left: 50%;
  top: 50px;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .line {
    width: 60px;
    top: 0px;
  }
}
.standard-interior-full-col-acm .container-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .container-wrapper {
    margin-top: 35px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.standard-interior-full-col-acm .container-wrapper .info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-direction: column;
  flex: 1;
  text-align: center;
  margin-top: 50px;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .container-wrapper .info {
    margin-top: 35px;
  }
}
.standard-interior-full-col-acm .container-wrapper .info .heading {
  color: var(--maven-gold);
}
.standard-interior-full-col-acm .container-wrapper .info .main-heading {
  color: var(--maven-blue);
  font-family: var(--secondary-font);
  font-size: 4.5rem;
  line-height: 72px;
  text-decoration: none;
  text-transform: none;
  display: block;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .container-wrapper .info .main-heading {
    max-width: 100%;
    width: 100%;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 60px;
    font-size: 3.75rem;
  }
}
.standard-interior-full-col-acm .container-wrapper .info .content {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .container-wrapper .info .content {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    line-height: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }
}
.standard-interior-full-col-acm .container-wrapper .info .content a {
  text-decoration: underline;
  font-weight: 500;
}
.standard-interior-full-col-acm .container-wrapper .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.standard-interior-full-col-acm .container-wrapper .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.standard-interior-full-col-acm .container-wrapper .info em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.standard-interior-full-col-acm .container-wrapper .info a {
  text-decoration: underline;
  font-weight: 500;
}
.standard-interior-full-col-acm .container-wrapper .cta-container {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .standard-interior-full-col-acm .container-wrapper .cta-container {
    flex-wrap: wrap;
  }
}

.content-then-photo-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
.content-then-photo-acm .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "contentInfo columnImage";
  width: 100%;
}
@media (max-width: 1000px) {
  .content-then-photo-acm .grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "topLine" "columnImage" "contentInfo";
    gap: 24px;
  }
}
.content-then-photo-acm .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.content-then-photo-acm .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 112px 150px;
  grid-area: columnImage;
}
@media (max-width: 1000px) {
  .content-then-photo-acm .grid-wrapper .column-with-background {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .content-then-photo-acm .grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 87px;
  flex: 1;
  grid-area: contentInfo;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1000px) {
  .content-then-photo-acm .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 97px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-content .sub-heading {
    padding-right: 30px;
    padding-left: 30px;
    top: 0px;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.content-then-photo-acm .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.content-then-photo-acm .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 71px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    overflow: hidden;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-content .content .header {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 330px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}
@media only screen and (max-width: 767px) {
  .content-then-photo-acm .grid-wrapper .column-with-content .content .info {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.content-then-photo-acm .grid-wrapper .column-with-content .content .info em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

.photo-then-content-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
.photo-then-content-acm .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "columnbackground content";
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    grid-template-areas: "topLine" "columnbackground" "content";
  }
}
.photo-then-content-acm .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.photo-then-content-acm .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 112px 150px;
  grid-area: columnbackground;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 87px;
  flex: 1;
  grid-area: content;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-right: 117px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-content .sub-heading {
    padding-right: 30px;
    top: 0px;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.photo-then-content-acm .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.photo-then-content-acm .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 71px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    width: 100%;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-content .content .header {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 330px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}
@media only screen and (max-width: 767px) {
  .photo-then-content-acm .grid-wrapper .column-with-content .content .info {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.photo-then-content-acm .grid-wrapper .column-with-content .content .info em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.photo-then-content-acm .grid-wrapper .column-with-content .content a {
  text-decoration: underline;
  font-weight: 500;
}

.block-quote-acm {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.block-quote-acm .frame-container {
  height: 872px;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  /* margin: 292px auto 110px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container {
    height: 100%;
    overflow: hidden;
  }
}
.block-quote-acm .frame-container .line-1 {
  width: 140px;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .line-1 {
    width: 60px;
  }
}
.block-quote-acm .frame-container .content-container {
  max-width: 100%;
  width: 100%;
  background: linear-gradient(0deg, #E2CDA9 0%, #E2CDA9 100%);
  margin-top: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .content-container {
    margin-top: 60px;
  }
}
.block-quote-acm .frame-container .content-container .line-2 {
  width: 100px;
  height: 0px;
  left: 50%;
  top: 140px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .content-container .line-2 {
    width: 40px;
    top: 60px;
  }
}
.block-quote-acm .frame-container .content-container .heading {
  color: var(--maven-gold);
  text-align: center;
  font-family: var(--primary-font);
  text-decoration: none;
  font-weight: 700;
  font-size: 2rem;
  line-height: 40px;
  text-transform: uppercase;
  width: 100%;
  max-width: 100%;
  margin: 100px auto 0px;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .content-container .heading {
    margin: 60px auto 0px;
    line-height: 28px;
  }
}
.block-quote-acm .frame-container .content-container .content {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: "Goudy Old Style";
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .content-container .content {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0px 30px;
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.block-quote-acm .frame-container .content-container .author-info {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
@media (width <= 900px) {
  .block-quote-acm .frame-container .content-container .author-info {
    font-size: 1rem;
    line-height: 30px;
    margin-bottom: 60px;
  }
}

.image-then-content-gif-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 400px) {
  .image-then-content-gif-acm {
    margin: 0px auto 20px auto;
  }
}
.image-then-content-gif-acm .column-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 153px 150px;
  flex: 1;
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  position: relative;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-right: 117px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading {
    padding-right: 30px;
    top: 0px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin: auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin: auto 30px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info {
  color: #394F71;
  font-size: 60px;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 990px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info {
    font-size: 40px;
    line-height: 50px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex: 1;
  max-width: 380px;
  width: 100%;
}
@media (max-width: 990px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content {
    max-width: 580px;
    font-size: 1rem;
    line-height: 30px;
  }
}
@media (max-width: 640px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 30px;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container {
    position: unset;
    margin: 0px 18px 0px auto;
  }
}
.image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container img {
    max-width: 194px;
    height: 129px;
    width: 100%;
  }
}

.event-calendar-slider-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 1185px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1185px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .top-line {
    grid-column: span 1;
    height: 34px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1185px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .top-line .t-line {
    width: 34px;
    top: 0px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider {
  max-width: 4506.25%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  flex: 1;
  /*
  @media ( max-width:640px){
      height:60vh; //519px; //420px;
      width:100%;
      max-width:350px; //100%;
      margin:0 auto;

  }*/
}
@media (max-width: 1024px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider {
    height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1185px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider {
    height: 50vh;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider {
    height: auto;
    width: 100%;
    max-width: 350px;
  }
}
@media (max-width: 640px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider {
    height: auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 0px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image {
  max-width: 100%;
  width: 100%;
  height: 620px;
  margin-top: 0px;
  margin-bottom: 52px;
  /*
  img{
      width:100%;
      height:100%;
      object-fit: contain;
      object-position: center;
  }
  */
}
@media (max-width: 1185px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image {
    max-width: 100%;
    width: 100%;
    height: 465px;
    margin-top: -10px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider {
  width: 100%;
  overflow: hidden;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper {
  max-width: 100%;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide {
  min-width: 466px;
  max-width: 466px !important;
  width: 100%;
  overflow: hidden;
  height: 620px;
  margin: 0;
  position: relative;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide {
    min-width: 350px;
    max-width: 100%;
    width: 100%;
    height: 465px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide img, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide img, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide img, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide img, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper {
  position: absolute;
  bottom: 0;
  color: var(--maven-light);
  font-family: "Roboto Condensed", sans-serif;
  /* text-transform: uppercase;
   border:1px solid #EFE9E0;
    display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin: 0px 24px 24px 24px;
   max-width: 418px;*/
  width: 100%;
  display: flex;
  /* .cta-wrapper {
       display: inline-flex;
       justify-content: center;
       align-items: center;
       gap: 10px;
       width: 100%;
       border-top: 1px solid #fff;

       .cta-view {
           width: 100%;
           text-align: center;
           background: none;
           color:var(--maven-light);

           .cta{
               color:var(--maven-light);
           }
       }

       .book-cta{
           width: 100%;
           text-align: center;

       }
   }*/
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover {
  width: 100%;
  height: 620px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  display: inline-flex;
  position: relative;
  top: 0px;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover {
    height: 465px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper {
  height: 100%;
  width: 100%;
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 269px;
  display: flex;
  position: relative;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper {
    gap: 123px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper {
  align-self: stretch;
  position: absolute;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  display: inline-flex;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format {
  transform: rotate(-90deg);
  transform-origin: 0 0;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format {
    position: relative;
    top: 60px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info {
  color: #EFE9E0;
  font-size: 2.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .date-info {
    font-size: 2rem;
    line-height: 32px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style {
  color: #EFE9E0;
  font-size: 2.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .date-wrapper .date-format .month-style {
    font-size: 2rem;
    line-height: 32px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .event-title-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .event-title-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .cover .cover-wrapper .event-title-wrapper {
  align-self: stretch;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
  position: absolute;
  bottom: 0px;
  width: 100%;
  max-width: 100%;
  flex: 1 1 0;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content {
  width: 100%;
  height: 100%;
  padding-bottom: 24px;
  padding-left: 24px;
  padding-right: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: none;
  flex: 1;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper {
  align-self: stretch;
  flex-direction: column;
  padding-top: 12px;
  padding-bottom: 12px;
  border-left: 1px #EFE9E0 solid;
  border-top: 1px #EFE9E0 solid;
  border-right: 1px #EFE9E0 solid;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  display: flex;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .title, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .title, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .title {
  flex: 1 1 0;
  text-align: center;
  color: var(--maven-light);
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc {
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  max-width: 358px;
  margin: 0px auto 134px;
  height: 168px;
  display: flex;
  opacity: 0;
  transition: all 0.3s ease-in;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .short-desc {
    height: 100%;
    flex: 1;
    margin: 0px auto 24px;
    padding: 12px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .date, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .date, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .content .info-wrapper .date {
  color: var(--maven-light);
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
  margin-bottom: 38px;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper {
  align-self: stretch;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
  border: 1px solid var(--maven-light);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 48px;
  width: 100%;
  /* .view-cta{
      flex: 1 1 0; 
      height: 48px; 
      padding-left: 24px; 
      padding-right: 24px; 
      padding-top: 12px; 
      padding-bottom: 12px; 
      border: 1px #EFE9E0 solid;
       justify-content: center; 
       align-items: center; 
       gap: 10px; 
       display: flex;
       background:none;

       .cta{
          background:none;
         color:var(--maven-light);
       }
   }

   .book-cta{
      flex: 1 1 0; 
      height: 48px;
       padding-left: 24px; 
       padding-right: 24px; 
       padding-top: 12px; 
       padding-bottom: 12px; 
       background: #EFE9E0; 
       border: 1px #EFE9E0 solid; 
       justify-content: center; 
       align-items: center; 
       gap: 10px; 
       display: flex;

       .cta{
          color:var(--maven-blue);
          background-color: var(--maven-light);
       }
   }
   */
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .view-cta, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .view-cta, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .view-cta {
  height: 48px;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .book-cta, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .book-cta, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .main-cta-wrapper .book-cta {
  height: 48px;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0px;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .heading, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .heading, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .heading {
  display: inline-flex;
  flex: 110;
  /* padding: 12px 0px; */
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .content {
  display: inline-flex;
  flex: 110;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: none;
  font-size: 1.125rem;
  line-height: 24px;
  display: none;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide.swiper-slide-active:before, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide.swiper-slide-active:before, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide.swiper-slide-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  transition: background 0.3s ease;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover::before, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover::before, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper {
  display: flex;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .content, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .content {
  display: inline-flex;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper {
  padding-top: 100px;
  text-align: center;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper {
    padding-top: 46px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper .short-desc, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .content-wrapper .info-wrapper .short-desc {
  opacity: 1;
  z-index: 1;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .cover, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-active:hover .cover {
  display: none;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-wrapper .swiper-slide-prev, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-wrapper .swiper-slide-prev, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-wrapper .swiper-slide-prev {
  opacity: 0;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .rooms-nav-controller, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .rooms-nav-controller, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 213px;
  margin-top: 20px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .rooms-nav-controller, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .rooms-nav-controller, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .rooms-nav-controller {
    right: 0px;
    left: 50%;
    transform: translate(-50%);
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #home-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dining-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total, .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-slider .column-inner-image #dairyblock-eventcalendar-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 76px;
  flex: 1;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media only screen and (max-width: 767px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    padding-left: 30px;
    top: 0px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-right: 100px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}
@media (max-width: 880px) {
  .event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.event-calendar-slider-acm .eventcalendar-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

.meetings-homepage-slide-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.meetings-homepage-slide-acm div#venue-homeslider {
  position: relative;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm div#venue-homeslider {
    height: 500px;
  }
}
.meetings-homepage-slide-acm div#venue-homeslider .category-selector {
  text-align: center;
  font-size: 0;
  margin: 40px 0 20px 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 9;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #EFE9E0;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm div#venue-homeslider .category-selector {
    margin: 0px 0px 10px 0px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    height: 56px;
    top: 0px;
    border-bottom: 1px solid var(--maven-blue);
    color: var(--maven-blue);
  }
}
.meetings-homepage-slide-acm div#venue-homeslider .category-selector .select-wrapper {
  display: none !important;
}
.meetings-homepage-slide-acm div#venue-homeslider .category-selector .button {
  background: none;
  padding: 12px 24px;
  color: #EFE9E0;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 16px;
  word-wrap: break-word;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm div#venue-homeslider .category-selector .button {
    display: inline-flex;
    color: var(--maven-blue);
    font-size: 0.875rem;
    white-space: no-wrap;
  }
}
.meetings-homepage-slide-acm div#venue-homeslider .category-selector .button.active {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm div#venue-homeslider .category-selector .button.active {
    text-underline-offset: 10px;
    color: var(--maven-blue);
  }
}
.meetings-homepage-slide-acm div#venue-homeslider .category-selector .button:hover {
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
  color: #EFE9E0;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm div#venue-homeslider .category-selector .button:hover {
    text-underline-offset: 10px;
    color: var(--maven-blue);
  }
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider {
    height: 500px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide {
  max-width: 1440px;
  width: 100%;
  height: 800px;
  /*.swiper-slide-active{
      .roomcaption {
          opacity: 1;
          transform: translate3d(50%, 0px, 0px);
      }

  } */
  /*
  .gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%);
    }
      */
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide {
    max-width: 100%;
    width: 100%;
    height: 276px;
    display: flex;
    position: relative;
    top: 58px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: linear-gradient(0deg, 0%, 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide img {
    height: 276px;
    overflow: hidden;
    width: 100%;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption {
  display: flex;
  position: absolute;
  bottom: 0px;
  width: 100%;
  max-width: 660px;
  overflow: hidden;
  height: 112px;
  flex-direction: column;
  border: 1px #EFE9E0 solid;
  left: 50%;
  transform: translate(-50%);
  opacity: 0;
  margin-bottom: 40px;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption {
    background: var(--maven-blue);
    bottom: -165px;
    height: 164px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-name {
    font-size: 1.5rem;
    height: 52px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  border-top: 1px #EFE9E0 solid;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox {
    flex-direction: column;
    height: 100%;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-features {
  width: 492px;
  height: 56px;
  text-align: center;
  color: #efe9e0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  line-height: 32px;
  padding: 12px 0px;
  text-transform: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-features {
    border-bottom: 1px solid var(--maven-light);
    padding: 10px 0px;
    height: 52px;
    font-size: 1rem;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px #EFE9E0 solid;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas {
    border-left: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 52px;
    width: 100%;
    grid-template-rows: 40px;
    -moz-column-gap: 10px;
         column-gap: 10px;
    margin-top: 10px;
    padding: 0px 10px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .view-cta {
  color: #EFE9E0;
  cursor: pointer;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .view-cta {
    border: 1px solid var(--maven-light);
    text-align: center;
    width: 100%;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .book-cta {
  background: #EFE9E0;
  color: #394F71;
  height: 100%;
  line-height: unset;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .book-cta {
    text-align: center;
    width: 100%;
    line-height: 16px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide .roomcaption .room-featurebox .room-ctas .book-cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.meetings-homepage-slide-acm #meetings-homepageslider figure.venue.swiper-slide.venue-slides.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-slide-active .roomcaption {
  opacity: 1;
  transform: translate(-50%);
}
.meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  z-index: 10;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller {
    top: 30%;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  max-width: 32px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 880px) {
  .meetings-homepage-slide-acm #meetings-homepageslider .swiper-pagination.swiper-pagination-fraction {
    bottom: 42%;
    right: 24px;
  }
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.meetings-homepage-slide-acm #meetings-homepageslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.venues-overlay-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.venues-overlay-modal .rooms-overlay-content {
  background: #fff;
  color: #000;
  display: grid;
  grid-template-columns: 1fr 600px;
  grid-template-rows: 721px;
  width: 100%;
  max-width: 1440px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  /* for mobile only */
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    top: 0px;
    transform: translate(-50%);
  }
}
.venues-overlay-modal .rooms-overlay-content .mobile-booknow {
  display: none;
  grid-template-columns: 19.25rem;
  grid-template-rows: auto;
  width: calc(100% - 20px);
  max-width: 100%;
  margin: 10px;
  background: var(--maven-light);
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .mobile-booknow {
    display: grid;
  }
}
.venues-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book {
  width: 100%;
  max-width: 100%;
  height: 52px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.venues-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book .cta {
  width: 100%;
  text-align: center;
  padding: 17px 109px;
  background: var(--maven-blue);
  color: var(--maven-light);
}
.venues-overlay-modal .rooms-overlay-content .mobile-booknow .overlay-book .cta:hover {
  background: var(--maven-light);
  color: var(--maven-blue);
}
.venues-overlay-modal .rooms-overlay-content .mobile-booknow .close-room {
  max-width: 30px;
  height: 30px;
  overflow: hidden;
  width: 100%;
  display: block;
  top: 20px;
  right: 20px;
}
.venues-overlay-modal .rooms-overlay-content .image-column {
  display: block;
  width: 100%;
  max-width: 840px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .image-column {
    height: 400px;
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .venues-overlay-modal .rooms-overlay-content .image-column {
    max-width: 100%;
    height: 260px;
  }
}
.venues-overlay-modal .rooms-overlay-content .image-column img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.venues-overlay-modal .rooms-overlay-content .image-column .gallery-icon {
  width: 60px;
  height: 60px;
  overflow: hidden;
  position: absolute;
  bottom: 8px;
  right: 24px;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .image-column .gallery-icon {
    max-width: 40px;
    width: 100%;
    height: 40px;
  }
}
.venues-overlay-modal .rooms-overlay-content .image-column .gallery-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0 !important;
  pointer-events: auto !important;
  transition-property: transform !important;
  z-index: 99998 !important;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .swiper-slide-active {
  z-index: 99998 !important;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99998 !important;
  display: none;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  width: 100%;
  max-width: 80px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-prev .prev-btn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  width: 100%;
  max-width: 80px;
  height: 18px;
  overflow: hidden;
  cursor: pointer;
}
.venues-overlay-modal .rooms-overlay-content .image-column #overlay-swiper-gallery .rooms-nav-controller .swiper-btn-next .next-btn {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row {
    display: none;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row a.rooms-item-gallery.cta {
  background: #EFE9E0;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .detail-gallery-row a.rooms-item-gallery.cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 60px;
  margin: 80px 60px auto;
  width: calc(100% - 120px);
  max-width: 100%;
  flex: 1;
  overflow: auto;
  height: 729px;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail {
    gap: 30px;
    max-width: 100%;
    width: calc(100%);
    margin: 40px 0px 0px;
    padding: 0px 30px;
    height: 100%;
    flex: 1;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 34px;
  flex: 1;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details {
    gap: 24px;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .heading-m {
  color: var(--maven-blue);
  text-align: center;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .heading-m {
    font-size: 2rem;
    line-height: 24px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    line-height: 30px;
    flex: 1;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc ul {
  list-style-type: disc;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .details .desc ul li {
  list-style: disc;
  margin-left: 24px;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .divider {
  width: 100%;
  height: 1px;
  background: #E2CDA9;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid #e2cda9;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .divider {
    max-width: 100%;
    width: 100%;
    padding: 0px 30px;
    overflow: hidden;
    box-sizing: border-box;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections {
  display: flex;
  flex-direction: column;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  margin-bottom: 82px;
  gap: 35px;
  width: 100%;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections {
    font-size: 1rem;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .title {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .title {
    font-size: 1rem;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections ul.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  row-gap: 24px;
  -moz-column-gap: 12px;
       column-gap: 12px;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections ul.features {
    white-space: normal;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .feature-amenities {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .rooms-detail .feature-sections .feature-amenities .amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  width: 100%;
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 60px;
  background: #394F71;
  padding: 10px;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0px 30px 30px;
  }
}
.venues-overlay-modal .rooms-overlay-content .rooms-detail-column .overlay-book .cta {
  background: #394F71;
  color: var(--maven-light);
}
.venues-overlay-modal .close-room {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  max-width: 60px;
  height: 60px;
  width: 100%;
}
@media (max-width: 1023px) {
  .venues-overlay-modal .close-room {
    display: none;
  }
}

.fancybox-slide--html .fancybox-close-small {
  color: var(--maven-light);
  padding: 10px;
  right: 359px;
  position: absolute;
  top: 64px;
  font-size: 24px;
  cursor: pointer;
  max-width: 60px;
  height: 60px;
  width: 100%;
  border-radius: 50%;
  background: var(--maven-blue);
  opacity: 1;
  display: none;
}
@media (width <= 1440px) {
  .fancybox-slide--html .fancybox-close-small {
    right: 20px;
  }
}
@media (width <= 800px) {
  .fancybox-slide--html .fancybox-close-small {
    max-width: 40px;
    height: 40px;
    width: 100%;
    overflow: hidden;
    right: 21px;
    top: 15px;
    display: block;
  }
}

.gear-down-acm {
  display: flex;
  position: relative;
  max-width: 894px;
  margin: 0 auto;
}
.gear-down-acm .container-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}
.gear-down-acm .container-wrapper .top-line {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gear-down-acm .container-wrapper .top-line .line {
  width: 140px;
  height: 100%;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  position: absolute;
  left: 50%;
}
@media (max-width: 640px) {
  .gear-down-acm .container-wrapper .top-line .line {
    width: 60px;
  }
}
.gear-down-acm .container-wrapper .title {
  margin-top: 140px;
}
@media (max-width: 640px) {
  .gear-down-acm .container-wrapper .title {
    margin-top: 60px;
  }
}
.gear-down-acm .container-wrapper .content {
  color: var(--maven-blue);
  font-size: 4.5rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 72px;
  word-wrap: break-word;
}
@media (max-width: 640px) {
  .gear-down-acm .container-wrapper .content {
    font-size: 3.75rem;
    line-height: 60px;
    max-width: 330px;
    width: 100%;
    margin: 0 auto;
  }
}
.gear-down-acm .container-wrapper .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.gear-down-acm .container-wrapper .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.gear-down-acm .container-wrapper .content a {
  text-decoration: underline;
  font-weight: 500;
}
.gear-down-acm .container-wrapper .engine {
  width: 100%;
  height: 365px;
  overflow: hidden;
  position: relative;
  transform: rotate(7deg);
  /* - remove animation as requested by the client ------
  .engine-bottom{
      -webkit-animation: rotateEngineBottom 5s linear infinite;
      -moz-animation: rotateEngineBottom 5s linear infinite;
      -o-animation: rotateEngineBottom 5s linear infinite;
      animation: rotateEngineBottom 5s linear infinite;
   }
      */
}
@media (max-width: 640px) {
  .gear-down-acm .container-wrapper .engine {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    height: 238px;
  }
}
.gear-down-acm .container-wrapper .engine img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -o-object-position: center;
     object-position: center;
}
@keyframes rotateEngineBottom {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes rotateEngineBottom {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dining-image-then-content-gif-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.dining-image-then-content-gif-acm .column-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 818px;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  width: 100%;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content {
  position: absolute;
  bottom: 40px;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    bottom: 0px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper {
  max-width: 641px;
  width: 100%;
  height: 112px;
  border: 1px solid var(--maven-light);
  display: grid;
  grid-template-columns: 1fr 0.23fr;
  /* grid-template-columns: repeat(2, 473px 1fr); */
  /* grid-template-columns: repeat(2, minmax(473px, 120px)); */
  grid-template-rows: auto;
  margin: 0 auto;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper {
    grid-template-columns: 1fr;
    height: 100%;
    background: var(--maven-blue);
    max-width: 100%;
    height: 100%;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .header {
  border-bottom: 1px solid var(--maven-light);
  text-align: center;
  grid-column: 1/-1;
  width: 100%;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 12px;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .header {
    border-right: none;
    font-size: 1.5rem;
    line-height: 24px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc {
  width: 100%;
  align-self: center;
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--maven-light);
  color: var(--maven-light);
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc {
    border-right: none;
    font-size: 1rem;
    line-height: 32px;
    border-bottom: 1px solid var(--maven-light);
    padding: 12px 0px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 100%;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore {
    gap: 10px;
    padding: 12px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore .cta-1 {
  width: 100%;
  height: 100%;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore .cta-1 {
    width: 100%;
    border: 1px solid var(--maven-light);
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  position: relative;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-right: 117px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading {
    padding-right: 30px;
    top: 0px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 13.4%;
  padding-right: 17%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info {
  color: #394F71;
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 1340px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info {
    font-size: 3rem;
    line-height: 60px;
    max-width: 100%;
    margin: 0px auto;
  }
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    margin: 0px 30px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex: 1;
  max-width: 380px;
  width: 100%;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content {
    max-width: 100%;
    margin: 0px 30px;
    font-size: 1rem;
    line-height: 30px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .second-content a {
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 1020px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .cta {
    margin: 0px 30px;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content p a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .content a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container {
    position: unset;
    margin: 0px 18px 0px auto;
  }
}
.dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .dining-image-then-content-gif-acm .column-grid-wrapper .column-with-content .gif-container img {
    max-width: 194px;
    height: 129px;
    width: 100%;
  }
}

.dining-content-then-image-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.dining-content-then-image-acm .column-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-areas: "topLine topLine" "contentColumn backgroundColumn";
  grid-template-rows: auto;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "topLine" "backgroundColumn" "contentColumn";
    gap: 24px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 818px;
  grid-area: backgroundColumn;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background::before {
  content: "";
  position: absolute;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  height: 100%;
  width: 100%;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content {
  position: absolute;
  bottom: 40px;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    bottom: 0px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper {
  max-width: 641px;
  width: 100%;
  height: 112px;
  border: 1px solid var(--maven-light);
  display: grid;
  grid-template-columns: 1fr 0.23fr;
  /* grid-template-columns: repeat(2, 473px 1fr); */
  /* grid-template-columns: repeat(2, minmax(473px, 120px)); */
  grid-template-rows: auto;
  margin: 0 auto;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper {
    grid-template-columns: 1fr;
    height: 100%;
    background: var(--maven-blue);
    max-width: 100%;
    height: 100%;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .header {
  border-bottom: 1px solid var(--maven-light);
  text-align: center;
  grid-column: 1/-1;
  width: 100%;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 12px;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .header {
    border-right: none;
    font-size: 1.5rem;
    line-height: 24px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc {
  width: 100%;
  align-self: center;
  text-align: center;
  padding: 12px;
  border-right: 1px solid var(--maven-light);
  color: var(--maven-light);
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc {
    border-right: none;
    font-size: 1rem;
    line-height: 32px;
    border-bottom: 1px solid var(--maven-light);
    padding: 12px 0px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .short-desc a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  height: 100%;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore {
    gap: 10px;
    padding: 12px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore .cta-1 {
  width: 100%;
  height: 100%;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-background .column-overlay-content .container-wrapper .explore .cta-1 {
    width: 100%;
    border: 1px solid var(--maven-light);
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  position: relative;
  grid-area: contentColumn;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .heading {
    padding-left: 30px;
    top: 0px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 16.2%;
  padding-right: 14.3%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info {
  color: #394F71;
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 1340px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info {
    font-size: 3rem;
    line-height: 60px;
    max-width: 100%;
    margin: 0px auto;
  }
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    margin: 0px 30px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info p a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .second-content {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex: 1;
  max-width: 380px;
  width: 100%;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .second-content {
    max-width: 100%;
    margin: 0px 30px;
    font-size: 1rem;
    line-height: 30px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .second-content a {
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 1020px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .cta {
    margin: 0px 30px;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .content p a {
  text-decoration: underline;
  font-weight: 500;
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: 0px;
}
@media only screen and (max-width: 767px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .gif-container {
    position: unset;
    margin: 0px 18px 0px auto;
  }
}
.dining-content-then-image-acm .column-grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .dining-content-then-image-acm .column-grid-wrapper .column-with-content .gif-container img {
    max-width: 194px;
    height: 129px;
    width: 100%;
  }
}

.private-diining-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 1210px;
  width: 100%;
}
@media (max-width: 1020px) {
  .private-diining-acm {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .private-diining-acm {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    height: 904px;
  }
}
.private-diining-acm .fill-background {
  max-width: 1200px;
  width: 100%;
  height: 1070px;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  position: absolute;
  background: linear-gradient(0deg, #E2CDA9 0%, #E2CDA9 100%);
}
@media (max-width: 1020px) {
  .private-diining-acm .fill-background {
    max-width: 100%;
    width: 100%;
    margin: 0px auto 0px;
    height: 100%;
    top: 4%;
  }
}
.private-diining-acm .vertical-line {
  width: 225px;
  height: 0px;
  left: 50%;
  top: -42px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .private-diining-acm .vertical-line {
    width: 180px;
  }
}
@media (max-width: 766px) {
  .private-diining-acm .vertical-line {
    width: 120px;
  }
}
.private-diining-acm .container-content-wrapper {
  left: 50%;
  top: 217px;
  transform: translate(-50%);
  width: 100%;
  max-width: 1000px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
}
@media (max-width: 1020px) {
  .private-diining-acm .container-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    height: auto;
    flex: 1 1 0;
  }
}
@media (max-width: 768px) {
  .private-diining-acm .container-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    top: 75px;
    height: auto;
    flex: 1 1 0;
  }
}
.private-diining-acm .container-content-wrapper .heading {
  align-self: stretch;
  text-align: center;
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (max-width: 664px) {
  .private-diining-acm .container-content-wrapper .heading {
    padding-top: 29px;
    width: calc(100% - 60px);
    margin: 0px 30px;
  }
}
.private-diining-acm .container-content-wrapper .content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (max-width: 990px) {
  .private-diining-acm .container-content-wrapper .content {
    font-size: 2rem;
    line-height: 50px;
  }
}
@media (max-width: 664px) {
  .private-diining-acm .container-content-wrapper .content {
    max-width: 330px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    top: 70%;
    font-size: 1.5rem;
    line-height: 40px;
    margin: 0 auto;
  }
}
.private-diining-acm .container-content-wrapper .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.private-diining-acm .container-content-wrapper .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.private-diining-acm .image-collage {
  max-width: 1437px;
  width: 100%;
  height: 532px;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
@media (max-width: 999px) {
  .private-diining-acm .image-collage {
    top: 49%;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage {
    max-width: 100%;
    overflow: hidden;
    height: 402px;
    top: 45%;
  }
}
.private-diining-acm .image-collage #private-dining-slider {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  /* .swiper-slide.swiper-slide-active {
          width: 466px;
          max-width: 100%;
          height: 400px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }

      .swiper-slide.swiper-slide-prev {
          width: 373px; //279px;
          max-width:100%;
          height: 320px; //240px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }

      .swiper-slide.swiper-slide-next {
          width: 373px; //279px;
          max-width:100%;
          height:320px; // 240px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }*/
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 453px;
  height: 453px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, transparent 0%, transparent 100%);
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide {
    max-width: 350px;
    width: 100%;
    overflow: hidden;
    height: 350px;
    top: 70%;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  max-width: 453px;
  width: 100%;
  height: 387px;
  color: var(--maven-light);
  margin: 0 auto;
  bottom: -113px;
  /*
  .cta-wrapper{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 48px;
      justify-content: center;


       .explore-hover{
          display:none;

          @media (max-width: 640px) {
              display:none
          }

       }


       .explore{
         // flex: 1 1 0; 
          height: 48px; 
         // padding-left: 24px; 
         // padding-right: 24px; 
         // padding-top: 12px; 
         // padding-bottom: 12px; 
          border: 1px #EFE9E0 solid; 
          justify-content: center; 
          align-items: center; 
          gap: 10px; 
          display: flex;

          .view-cta{
              flex: 1 1 0;
              width:100%;
          }

          @media (max-width: 640px) {
              display:none
          }
       }



       .rfp{
         // flex: 1 1 0; 
          height: 48px;
          // padding-left: 24px; 
         //  padding-right: 24px; 
          // padding-top: 12px; 
          // padding-bottom: 12px; 
           background: #EFE9E0; 
           border: 1px #EFE9E0 solid; 
           justify-content: center; 
           align-items: center; 
           gap: 10px; 
           display: flex;

           .book-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
           }

           @media (max-width: 640px) {
              display:none
          }

       }

       .show-on-mobile{
          // flex: 1 1 0; 
          height: 48px; 
         // padding-left: 24px; 
         // padding-right: 24px; 
         // padding-top: 12px; 
         // padding-bottom: 12px; 
          border: 1px #EFE9E0 solid; 
          justify-content: center; 
          align-items: center; 
          gap: 10px; 
          display: none;

          .view-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
          }

          .book-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
           }

           @media (max-width: 640px) {
              display:flex;
          }
       }

  }*/
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  max-width: 405px;
  width: 100%;
  height: 96px;
  border: 1px solid var(--maven-light);
  /* .cta-wrapper{
       display:flex;
       justify-content: center;
       width:100%;*/
  /*  }*/
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .name {
  grid-column: 1/-1;
  padding: 12px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--maven-light);
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .artist {
  text-align: center;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .explore {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .explore {
    display: none;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .rfp {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .rfp {
    display: none;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .show-on-mobile {
  height: 48px;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: none;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .show-on-mobile .view-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .show-on-mobile .book-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .show-on-mobile {
    display: flex;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper {
  border: 1px solid var(--maven-light);
  display: none;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 35px;
  transition: all 0.3s ease-in;
  position: relative;
  bottom: 104px;
  flex: 1 1 0;
  padding: 100px 0px;
  /* .explore-hover{
       height: 48px;
       display: flex;
       justify-content: center;
       align-items: center;
       width: 100%;
       position: absolute;
       bottom: 0px;
       flex: 1 1 0;

       .book-cta{
           width:100%;
           overflow:hidden;
       }

    }*/
  /*.rfp-link {
      align-self: stretch;
      flex: 1 1 0;
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      height: 48px;
  }*/
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper {
    height: 330px;
    bottom: 48px;
    gap: 24px;
    padding: 25px 0px;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .name {
  height: 24px;
  padding: 12px;
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .artist-name {
  text-align: center;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .short-desc {
  height: 100%;
  max-width: 312px;
  width: 100%;
  margin: 0 auto;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex-direction: column;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .short-desc {
    font-size: 1rem;
    height: 100%;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 48px;
  justify-content: center;
  position: absolute;
  bottom: 0px;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .explore-hover {
  display: none;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .explore-hover {
    display: none;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .explore {
  height: 48px;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .explore .view-cta {
  flex: 1 1 0;
  width: 100%;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .explore {
    display: none;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .rfp {
  height: 48px;
  background: #EFE9E0;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .rfp .book-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .rfp {
    display: none;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .show-on-mobile {
  height: 48px;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: none;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .show-on-mobile .view-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .show-on-mobile .book-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .cta-wrapper .show-on-mobile {
    display: flex;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper figure.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-swiper-card-overlay);
  pointer-events: none;
  transition: background 0.3s ease;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover::before {
  background: var(--gradient-card-overlay-hover);
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info {
  display: flex;
  bottom: -69px;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper {
  display: flex;
}
@media (max-width: 880px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper {
    padding-top: 46px;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper .short-desc {
  height: 151px;
  max-width: 312px;
  width: 100%;
  margin: 0 auto;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex-direction: column;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper .short-desc {
    font-size: 1rem;
    height: 100%;
  }
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .parent-container {
  display: none;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-wrapper .swiper-slide-active:hover .cover {
  display: none;
}
.private-diining-acm .image-collage #private-dining-slider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%);
}
.private-diining-acm .image-collage #private-dining-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.private-diining-acm .image-collage #private-dining-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.show-on-mobile {
  height: 48px;
  border: 1px #EFE9E0 solid;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: none;
}
.show-on-mobile .view-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
.show-on-mobile .book-cta {
  flex: 1 1 0;
  width: 100%;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .show-on-mobile {
    display: flex;
  }
}

.full-slide-show-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  height: 800px;
}
@media (max-width: 640px) {
  .full-slide-show-acm {
    max-width: 100%;
    width: 100%;
    height: 280px;
  }
}
.full-slide-show-acm .slider-container {
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.full-slide-show-acm .slider-container #fullslideshow {
  width: 1440px;
  height: 800px;
  max-width: 1440px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .full-slide-show-acm .slider-container #fullslideshow {
    max-width: 100%;
    width: 100%;
    height: 280px;
  }
}
.full-slide-show-acm .slider-container #fullslideshow .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.full-slide-show-acm .slider-container #fullslideshow .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.full-slide-show-acm .slider-container #fullslideshow .rooms-nav-controller {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.full-slide-show-acm .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .full-slide-show-acm .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.full-slide-show-acm .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .full-slide-show-acm .slider-container #fullslideshow .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.full-slide-show-acm .slider-container #fullslideshow .full-photo {
  position: absolute;
  bottom: 30px;
  right: 30px;
  max-width: 60px;
  height: 60px;
  width: 100%;
}
@media (max-width: 640px) {
  .full-slide-show-acm .slider-container #fullslideshow .full-photo {
    bottom: 20px;
    right: 20px;
    max-width: 48px;
    height: 48px;
    width: 100%;
  }
}
.full-slide-show-acm .slider-container #fullslideshow .full-photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.instgram-feed-acm {
  position: relative;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 753px;
  gap: 50px;
}
@media (max-width: 640px) {
  .instgram-feed-acm {
    height: 80vh;
    max-width: 100%;
  }
}
.instgram-feed-acm .vertical-line {
  width: 140px;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 640px) {
  .instgram-feed-acm .vertical-line {
    width: 60px;
  }
}
.instgram-feed-acm .content-wrapper {
  height: 96px;
  top: 192px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 640px) {
  .instgram-feed-acm .content-wrapper {
    max-width: 100%;
    margin: auto 30px;
    left: 0px;
    top: 100px;
    height: 100%;
    width: calc(100% - 60px);
    overflow: hidden;
  }
}
.instgram-feed-acm .content-wrapper .handler-name {
  align-self: stretch;
  text-align: center;
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
  width: 100%;
}
@media (max-width: 640px) {
  .instgram-feed-acm .content-wrapper .handler-name {
    font-size: 1.5rem;
    line-height: 28px;
    max-width: 100%;
  }
}
.instgram-feed-acm .content-wrapper .content {
  max-width: 920px;
  width: 100%;
  text-align: center;
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media (max-width: 640px) {
  .instgram-feed-acm .content-wrapper .content {
    max-width: 100%;
    width: 100%;
  }
}
.instgram-feed-acm .c-instagram-feed__list {
  width: 100%;
  height: 450px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  top: 299px;
  /* gap: 40px; */
}
@media (max-width: 640px) {
  .instgram-feed-acm .c-instagram-feed__list {
    max-width: 100%;
    width: 100%;
    height: 270px;
  }
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider {
  max-width: 1520px;
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 640px) {
  .instgram-feed-acm .c-instagram-feed__list #instagram-slider {
    max-width: 100%;
    height: 360px;
    width: 100%;
  }
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  transition-property: transform;
  justify-content: flex-start;
  align-items: flex-end;
  max-width: 350px;
  height: 350px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-wrapper {
    max-width: 270px;
    height: 270px;
    width: 100%;
  }
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-wrapper .swiper-slide {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-wrapper .swiper-slide {
    max-width: 270px;
    height: 270px;
    width: 100%;
  }
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: center;
     object-fit: center;
  -o-object-position: center;
     object-position: center;
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .rooms-nav-controller {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: auto;
  height: auto;
  z-index: 9999;
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .rooms-nav-controller .swiper-btn-prev, .instgram-feed-acm .c-instagram-feed__list #instagram-slider .rooms-nav-controller .swiper-btn-next {
  cursor: pointer;
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-pagination {
  flex: 1;
  display: flex;
  justify-content: center;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  text-align: center;
  transition: 0.3s opacity;
  position: static;
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-pagination span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.instgram-feed-acm .c-instagram-feed__list #instagram-slider .swiper-pagination span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.dine-detail-hero {
  position: relative;
}
.dine-detail-hero span.breadcrumbs-container {
  display: inline-flex;
  margin-left: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  position: realtive;
  position: relative;
}
@media (max-width: 640px) {
  .dine-detail-hero span.breadcrumbs-container {
    margin-left: 16px;
    margin-top: 24px;
    font-size: 1.125rem;
  }
}
.dine-detail-hero section.dine-detail-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  top: 0px;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider {
    height: 464px;
    margin-bottom: 30px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide {
    height: 360px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(102, 102, 102, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail {
  position: absolute;
  bottom: 30px;
  display: flex;
  max-width: 793px;
  width: 100%;
  height: auto;
  border: 1px solid #efe9e0;
  margin: 0px auto 52px;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail {
    height: auto;
    background-color: var(--maven-blue);
    bottom: -155px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
}
@media (max-width: 800px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
    font-size: 1.5rem;
    line-height: 24px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .short-desc {
  padding: 12px;
  width: 100%;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  border-top: 1px solid var(--maven-light);
  border-bottom: 1px solid var(--maven-light);
  text-align: center;
  flex: 1 1 0;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .short-desc {
    font-size: 1rem;
    padding: 10px 0px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  grid-template-rows: 111px;
  /* .room-features {
  		width: 492px;
  		height: 56px;
  		text-align: center;
  		color: #efe9e0;
  		font-size: 1.125rem;
  		font-family:var(--secondary-font);
  		line-height: 32px;
  		padding: 12px 0px;
  		text-transform: capitalize;

  		@media (max-width: 800px) {
  			width:100%;
  			max-width:100%;
  			overflow: hidden;
  			font-size:1rem;
  			line-height:32px;
  			border-bottom: 1px solid #efe9e0;
  		}
  	}*/
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
    flex-direction: column;
    grid-template-rows: auto;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console {
  max-width: 753px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    grid-template-rows: auto;
  */
  color: #6f737b;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console {
    display: none;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console .picker__button_reset {
  background: none;
  color: #000 !important;
  cursor: default;
  margin: 0;
  padding: 0;
  position: relative;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console .ot-dtp-picker .nav {
  left: 0;
  position: absolute;
  right: 0;
  top: 4px;
  display: flex;
  justify-content: space-between !important;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console .wide-calendar.picker {
  top: 117%;
  width: 100%;
  left: 0.21875rem;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget {
  width: 100%;
  max-width: 100%;
  overflow: inherit !important;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard {
  background-color: transparent !important;
  width: 100%;
  max-width: 100%;
  padding: 16px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  border-radius: 0px;
  z-index: 9999;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard .ot-dtp-picker-form {
  margin: 0;
  border: 0.0625rem solid var(--otkit-color-border-default);
  border-radius: 0px;
  /* background: var(--otkit-color-background-default); */
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 7.5rem;
  grid-template-rows: auto;
  gap: 10px;
  background: transparent !important;
  justify-content: center;
  align-items: center;
  border: none !important;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard .ot-dtp-picker-form input.ot-button.ot-dtp-picker-button.en {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
  grid-column: auto;
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  font-family: var(--primary-font);
  height: 50px;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard .ot-dtp-picker-form input.ot-button.ot-dtp-picker-button.en {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard .ot-dtp-picker-form div#caf9372a-c526-4da0-ae16-30caa5d20a398 {
  background: none !important;
  border-radius: 0px !important;
  padding: 16px 0px !important;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox #reserve-console div#ot-reservation-widget .ot-dtp-picker.ot-standard .ot-dtp-picker-form .ot-dtp-picker-button {
  min-width: 100%;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px #EFE9E0 solid;
  width: 168px;
  display: none;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
    display: flex;
    height: 40px;
    border-left: none;
    width: 100%;
    max-width: 370px;
    margin: 0 10px 10px;
    padding-top: 8px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
  background: #EFE9E0;
  color: #394F71;
  text-align: center;
  width: 100%;
  line-height: unset;
}
@media (max-width: 800px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
    line-height: 16px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-italic-font);
  font-style: italic;
  font-weight: 400;
  max-width: 32px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 800px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-pagination.swiper-pagination-fraction {
    bottom: 36%;
    right: 20px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller {
  position: absolute;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  width: 100%;
  z-index: 10;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller {
    top: 35%;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  .dine-detail-hero section.dine-detail-slider div#dine-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
.dine-detail-hero section.dine-detail-slider .tagline-container {
  width: 52px;
  height: 52px;
  position: relative;
  left: 50%;
  bottom: 52px;
}
@media (max-width: 640px) {
  .dine-detail-hero section.dine-detail-slider .tagline-container {
    display: none;
  }
}
.dine-detail-hero section.dine-detail-slider .tagline-container .white-line {
  width: 100%;
  height: 0px;
  left: 0px;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #EFE9E0 solid;
}

.rundown-content-then-photo-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
.rundown-content-then-photo-acm .carry-out p {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  line-height: 32px;
  word-wrap: break-word;
}
.rundown-content-then-photo-acm .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "contentInfo columnImage" "bottomLine bottomLine";
  width: 100%;
}
@media (max-width: 1295px) {
  .rundown-content-then-photo-acm .grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "topLine" "columnImage" "contentInfo" "bottomLine";
    gap: 24px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .bottom-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: bottomLine;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .bottom-line {
    grid-column: span 1;
    height: 60px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .bottom-line .b-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 141px;
  position: absolute;
  left: 50%;
  bottom: 138px;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .bottom-line .b-line {
    width: 60px;
    top: 25px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 112px 150px;
  grid-area: columnImage;
}
@media (max-width: 1295px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-background {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 580px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50% 50% 0px 0px;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 87px;
  flex: 1;
  grid-area: contentInfo;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1295px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 97px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .sub-heading {
    padding-right: 30px;
    padding-left: 30px;
    top: 0px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 767px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 0px;
    margin-bottom: 30px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: "Goudy Old Style";
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container {
  display: grid;
  grid-template-columns: 1fr 21.25rem;
  grid-template-rows: auto;
  grid-template-areas: "airstream info";
  position: relative;
  padding-left: 97px;
}
@media (max-width: 640px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container {
    padding-left: 0px;
    margin: 0px 30px;
    grid-template-columns: 1fr;
    grid-template-areas: "info" "airstream";
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .airstream-icon {
  max-width: 191px;
  width: 100%;
  height: 115px;
  overflow: hidden;
  grid-area: airstream;
}
@media (max-width: 640px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .airstream-icon {
    max-width: 140px;
    height: 84px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .airstream-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
  flex-direction: column;
  grid-area: info;
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info .title {
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (max-width: 640px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info .title {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info .hours {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 640px) {
  .rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info .hours {
    font-size: 1rem;
    line-height: 30px;
  }
}
.rundown-content-then-photo-acm .grid-wrapper .column-with-content .airstream-container .info .hours strong {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 32px;
  word-wrap: break-word;
}

.floorplan-acm {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.floorplan-acm .floorplan-container {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  margin-top: 120px;
}
@media (max-width: 766px) {
  .floorplan-acm .floorplan-container {
    margin-top: 0px;
  }
}
.floorplan-acm .floorplan-container .vertical-line {
  width: 120px;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .floorplan-acm .floorplan-container .vertical-line {
    top: 20px;
    width: 80px;
  }
}
@media (max-width: 766px) {
  .floorplan-acm .floorplan-container .vertical-line {
    top: 20px;
    width: 60px;
  }
}
.floorplan-acm .floorplan-container .floorplan-placeholder {
  max-width: 1320px;
  width: 100%;
  height: 584px;
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 999px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder {
    max-width: 95%;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 640px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder {
    max-width: 350px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
  display: block;
  max-width: 1320px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
    max-width: 95%;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
    max-width: 350px;
    width: 100%;
    height: 154px;
  }
}
.floorplan-acm .floorplan-container .floorplan-placeholder .download-cta {
  display: flex;
  width: 100%;
  height: 40px;
  display: none;
  text-align: center;
  border: 1px solid var(--maven-blue);
}
@media (max-width: 800px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder .download-cta {
    display: flex;
  }
}
.floorplan-acm .floorplan-container .floorplan-placeholder .download-cta .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.floorplan-acm .floorplan-container .floorplan-placeholder .location {
  position: absolute;
  left: 12%;
  top: 10%;
  transform: translateX(-50%) translateY(-50%);
  width: 12px;
  height: 12px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .floorplan-acm .floorplan-container .floorplan-placeholder .location {
    display: none;
  }
}
.floorplan-acm .floorplan-container .floorplan-placeholder .location:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  border: 1px solid var(--maven-blue);
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.floorplan-acm .floorplan-container .floorplan-placeholder .location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--maven-blue);
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

.full-screen-pop-up {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.85);
  display: block;
  width: 100%;
  height: 100%;
}
.full-screen-pop-up.gone {
  display: none;
}
.full-screen-pop-up .container {
  max-width: 600px;
  background-color: #f3ece4;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  padding: 10px;
  position: relative;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .full-screen-pop-up .container {
    flex-direction: column;
    height: auto;
    margin: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container {
    max-width: 500px;
  }
}
.full-screen-pop-up .container .inner-container {
  overflow-y: auto;
  max-height: 650px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container .inner-container {
    max-height: 430px;
  }
}
.full-screen-pop-up .container .inner-container .img-slider {
  width: 100%;
  height: 280px;
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container .inner-container .img-slider {
    height: 200px;
  }
}
.full-screen-pop-up .container .inner-container .img-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-screen-pop-up .container .inner-container .content {
  padding: 30px;
}
.full-screen-pop-up .container .inner-container .content .h2 {
  margin-bottom: 20px;
  color: var(--Maven-ADA-Gold, #86704A);
  /* Desktop/Headings/S */
  font-family: "Roboto Condensed";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 125% */
  letter-spacing: -0.64px;
  text-transform: uppercase;
}
.full-screen-pop-up .container .inner-container .content .h4 {
  margin-bottom: 5px;
  color: var(--Maven-Blue, #394F71);
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.18px;
}
.full-screen-pop-up .container .inner-container .content p {
  color: var(--Maven-Blue, #394F71);
  /* Desktop/Body/Regular */
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 177.778% */
  letter-spacing: -0.18px;
  margin-bottom: 30px;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns .link-btn {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: #E2CDA9;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns .link-btn:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
.full-screen-pop-up .full-screen-close {
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background-color: var(--maven-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-screen-pop-up ::-webkit-scrollbar-thumb {
  background: var(--Maven-Tan, #E2CDA9);
}

.rfp-acm {
  display: flex;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.rfp-acm .vertical-line {
  width: 140px;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .rfp-acm .vertical-line {
    top: 20px;
    width: 80px;
  }
}
@media (max-width: 766px) {
  .rfp-acm .vertical-line {
    width: 60px;
    display: none;
  }
}
.rfp-acm .rfp-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-direction: column;
  width: 100%;
  height: 720px;
  margin-top: 140px;
  text-align: center;
}
@media (max-width: 768px) {
  .rfp-acm .rfp-container {
    height: 640px;
    margin: 60px 30px 0px;
  }
}
.rfp-acm .rfp-container .heading {
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (max-width: 990px) {
  .rfp-acm .rfp-container .heading {
    font-size: 1.5rem;
    line-height: 24px;
  }
}
.rfp-acm .rfp-container .sub-heading {
  color: #EFE9E0;
  font-size: 4.5rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 72px;
  word-wrap: break-word;
}
@media (max-width: 990px) {
  .rfp-acm .rfp-container .sub-heading {
    font-size: 3.75rem;
    line-height: 60px;
  }
}
.rfp-acm .rfp-container .sub-heading .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rfp-acm .rfp-container .sub-heading p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rfp-acm .rfp-container .content {
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media (max-width: 990px) {
  .rfp-acm .rfp-container .content {
    font-size: 1rem;
    line-height: 30px;
    max-width: 330px;
    margin: 0 auto;
  }
}
.rfp-acm .rfp-container .content .italic-content {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rfp-acm .rfp-container .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rfp-acm .rfp-container .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.rfp-acm .rfp-container .content a {
  color: #EFE9E0;
  text-decoration: underline;
}
.rfp-acm .rfp-container .cta-wrapper {
  height: 56px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.rfp-acm .rfp-container .cta-wrapper .cta {
  padding: 17px 19px;
  line-height: 18px;
  height: 100%;
  width: 100%;
  white-space: nowrap;
  background: var(--maven-light);
}
.rfp-acm .rfp-container .cta-wrapper .cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}

.two-column-detail-layout {
  position: relative;
  position: relative;
  max-width: 1440px;
  margin: 0 auto 40px;
}
.two-column-detail-layout .details-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.two-column-detail-layout .details-grid-wrapper .top-line {
  grid-column: span 2;
  height: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .top-line {
    display: none;
  }
}
.two-column-detail-layout .details-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-background {
    display: none;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  height: 100%;
  /*img{
  	width:100%;
  	height:100%;
  	object-fit: cover; //contain;
  	object-position: center;
  	clip-path: ellipse(100% 100% at 50% 0%);
  				transform: rotate(180deg);
  }*/
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
.two-column-detail-layout .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content {
  max-width: 45rem;
  width: calc(100% - 7.5rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 77px;
  flex: 1;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .breadcrumbs-container {
  display: inline-flex;
  gap: 12px;
  width: 100%;
  height: 32px;
  margin: 31px 0px 0px 40px;
  justify-content: flex-start;
  align-items: center;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .breadcrumbs-container img {
  display: block;
  max-width: 12px;
  height: 16px;
  width: 100%;
  overflow: hidden;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: 0px;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
  padding-left: 7.313rem;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    gap: 24px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .header {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .short-desc {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  max-width: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .short-desc {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    margin: 0 auto;
    width: calc(100% - 15px);
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .short-desc strong {
  font-weight: 700;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .short-desc p strong {
  font-weight: 700;
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .long-desc {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .long-desc {
    font-size: 1rem;
    line-height: 30px;
    margin: 0 auto;
  }
}
@media (max-width: 540px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .long-desc {
    font-size: 1rem;
    line-height: 30px;
    max-width: 350px;
    margin: 0 auto;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .divider {
  width: 100%;
  height: 100%;
  background: #E2CDA9;
  border: 1px solid #e2cda9;
  margin-top: 61px;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .divider {
    display: none;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .title {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  margin-bottom: 36px;
  margin-top: 51px;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .title {
    font-size: 1rem;
    line-height: 30px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile {
  display: none;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile {
    display: flex;
    margin-top: 83px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media only screen and (max-width: 767px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1000px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  clip-path: ellipse(100% 100% at 50% 0%);
  transform: rotate(180deg);
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
    height: 40px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
    padding: 12px 18px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  gap: 50px;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities {
    font-size: 1rem !important;
  }
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities [class*=rooms-icon-] {
    font-size: 1rem !important;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities .features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 100%;
  gap: 12px;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities .features {
    font-size: 1rem;
    line-height: 30px;
  }
}
.two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities .rooms-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  -moz-column-gap: 24px;
  column-gap: 24px;
  row-gap: 24px;
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
}
@media (max-width: 800px) {
  .two-column-detail-layout .details-grid-wrapper .column-with-content .content .feature-amenities .rooms-amenities {
    font-size: 1rem;
    line-height: 30px;
  }
}

.form-fields {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-align: left;
  gap: 24px;
}
.form-fields label {
  width: 100%;
  line-height: 1.2;
  margin: 0px;
  float: left;
  text-align: left;
  color: #1A3752;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.form-fields p {
  max-width: 100%;
  width: 100%;
  margin-bottom: 0px;
}
.form-fields input[type=text], .form-fields .form input[type=date], .form-fields .form textarea, .form-fields .form select, .form-fields .form .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 100%;
  max-width: 100%;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
}
.form-fields span.dateInput.dateOnlyInput {
  position: relative;
  width: 100%;
}
.form-fields span.dateInput.dateOnlyInput .datepicker-input-wrapper {
  float: left;
  width: 100%;
}
.form-fields span.dateInput.dateOnlyInput .ui-datepicker-trigger {
  position: absolute;
  margin: 13px 0 0 6px;
  right: 10%;
}
.form-fields input[type=text], .form-fields input[type=date], .form-fields textarea, .form-fields select, .form-fields .input-overlay {
  background: #fff;
  color: #53565a;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 100%;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
  min-width: 100%;
}
.form-fields select {
  min-width: 500px;
  max-width: 500px;
  width: 100%;
}
.form-fields textarea {
  height: 120px;
}
.form-fields .ui-datepicker-title {
  color: var(--maven-blue);
}
.form-fields a, .form-fields input[type=submit], .form-fields button, .form-fields .button {
  cursor: pointer;
  transition: color 100ms, background-color 100ms, border-color 100ms;
  background-color: #E2CDA9;
  text-align: left;
}
.form-fields input:not([type=checkbox]):not([type=radio]), .form-fields textarea {
  border-radius: 0;
  border: none;
}
.form-fields .g-recaptcha {
  height: 66px;
}
.form-fields .controls p {
  padding: 0px;
  width: auto;
  color: var(--maven-blue);
}
.form-fields .controls p {
  padding: 0px !important;
  width: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.custom-form-submit input.cta {
  background-color: #E2CDA9 !important;
  color: var(--maven-blue) !important;
}
@media (max-width: 900px) {
  .custom-form-submit input.cta {
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    text-align: center;
  }
}

.custom-form-submit input.cta:hover {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
}

label.tos-text.required a {
  text-decoration: underline;
  background: none;
}

.newsletterSignup-submit input.cta {
  background-color: #E2CDA9 !important;
  color: var(--maven-blue) !important;
}

.newsletterSignup-submit input.cta:hover {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
}

.art-intro-block {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .art-intro-block {
    margin: 40px auto 0px;
  }
}
.art-intro-block .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "contentInfo columnImage";
  width: 100%;
}
@media (max-width: 1000px) {
  .art-intro-block .grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "contentInfo" "topLine" "columnImage";
    gap: 24px;
  }
}
.art-intro-block .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
    margin-top: 40px;
  }
}
.art-intro-block .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.art-intro-block .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 112px 150px;
  grid-area: columnImage;
}
@media (max-width: 1000px) {
  .art-intro-block .grid-wrapper .column-with-background {
    width: 100%;
    max-width: 100%;
    height: 100%;
  }
}
@media (max-width: 580px) {
  .art-intro-block .grid-wrapper .column-with-background {
    height: 100%;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.art-intro-block .grid-wrapper .column-with-background .column-inner-stats {
  max-width: 25rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-background .column-inner-stats {
    max-width: 17.875rem;
    width: 100%;
    gap: 16px;
  }
}
.art-intro-block .grid-wrapper .column-with-background .column-inner-stats .stat-info {
  color: var(--maven-light);
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-background .column-inner-stats .stat-info {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.art-intro-block .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 87px;
  flex: 1;
  grid-area: contentInfo;
  position: relative;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1000px) {
  .art-intro-block .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.art-intro-block .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 97px;
  position: relative;
  top: -19px;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-content .sub-heading {
    padding-right: 30px;
    padding-left: 30px;
    top: 0px;
  }
}
.art-intro-block .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.art-intro-block .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.art-intro-block .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 71px;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
  }
}
.art-intro-block .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
.art-intro-block .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}
.art-intro-block .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.art-intro-block .grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.art-intro-block .grid-wrapper .column-with-content .content .call-out {
  display: grid;
  grid-template-columns: 3.13px 1fr;
  grid-template-rows: auto;
  width: 100%;
  gap: 30px;
}
.art-intro-block .grid-wrapper .column-with-content .content .call-out .callout-vline {
  width: 100%;
  height: 100%;
  background: #394F71;
}
.art-intro-block .grid-wrapper .column-with-content .content .call-out .callout-content {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-content .content .call-out .callout-content {
    font-size: 1rem;
    line-height: 30px;
  }
}
.art-intro-block .grid-wrapper .column-with-content .content .additional-info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-intro-block .grid-wrapper .column-with-content .content .additional-info strong {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 32px;
  word-wrap: break-word;
}
.art-intro-block .grid-wrapper .column-with-content .content .additional-info p strong {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 32px;
  word-wrap: break-word;
}
.art-intro-block .grid-wrapper .column-with-content .content .additional-info p a {
  text-decoration: underline;
  font-weight: 500;
}
.art-intro-block .grid-wrapper .column-with-content .content .additional-info a {
  text-decoration: underline;
  font-weight: 500;
}
.art-intro-block .grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: -40px;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-content .gif-container {
    margin: 0px auto;
    right: 6px;
    bottom: -108px;
  }
}
.art-intro-block .grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .art-intro-block .grid-wrapper .column-with-content .gif-container img {
    max-width: 200px;
    height: 176px;
    width: 100%;
  }
}

.featured-block-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .featured-block-acm {
    max-width: 100%;
    width: 100%;
    margin: 40px auto 0px;
  }
}
.featured-block-acm .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "columnbackground content";
  width: 100%;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    grid-template-areas: "content" "topLine" "columnbackground";
  }
}
.featured-block-acm .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.featured-block-acm .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.featured-block-acm .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 600px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  grid-area: columnbackground;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper .column-with-background {
    height: 50vh;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .featured-block-acm .grid-wrapper .column-with-background {
    height: 330px;
    width: 100%;
    max-width: 100%;
  }
}
.featured-block-acm .grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.featured-block-acm .grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.featured-block-acm .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  grid-area: content;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.featured-block-acm .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-right: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper .column-with-content .sub-heading {
    top: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-content .sub-heading {
    padding-right: 30px;
    top: 0px;
  }
}
.featured-block-acm .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.featured-block-acm .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.featured-block-acm .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 71px;
}
@media (max-width: 1185px) {
  .featured-block-acm .grid-wrapper .column-with-content .content {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px;
  }
}
.featured-block-acm .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-content .content .header {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    width: calc(100%);
    overflow: hidden;
    margin: 0 auto;
  }
}
.featured-block-acm .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 35px;
}
.featured-block-acm .grid-wrapper .column-with-content .content .info p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .featured-block-acm .grid-wrapper .column-with-content .content .info {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.featured-block-acm .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.featured-block-acm .grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.featured-block-acm .grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.featured-block-acm .grid-wrapper .column-with-content .content .info em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.featured-block-acm .grid-wrapper .column-with-content .content a {
  text-decoration: underline;
  font-weight: 500;
}
.featured-block-acm .grid-wrapper .column-with-content .content a {
  text-decoration: underline;
  font-weight: 500;
}

.featured-block-content-img-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm {
    max-width: 100%;
    width: 100%;
    margin: 40px auto 0px;
  }
}
.featured-block-content-img-acm .grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "topLine topLine" "contentInfo columnbackground";
  width: 100%;
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas: "contentInfo" "topLine" "columnbackground";
    gap: 24px;
  }
}
.featured-block-content-img-acm .grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  grid-area: topLine;
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper .top-line {
    grid-column: span 1;
    height: 60px;
  }
}
.featured-block-content-img-acm .grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 140px;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  grid-area: columnbackground;
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-background {
    height: 50vh;
    width: 100%;
    max-width: 100%;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-background .column-inner-image {
  max-width: 421px;
  width: 100%;
  overflow: hidden;
  height: 512px;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
    height: 328px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-background .column-inner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-background .column-inner-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 67px;
  flex: 1;
  grid-area: contentInfo;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .sub-heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 97px;
  position: relative;
  top: -19px;
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .sub-heading {
    top: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .sub-heading {
    padding-left: 30px;
    top: 0px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .sub-heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .sub-heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content {
  width: 100%;
  padding-left: 97px;
  padding-right: 122px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 71px;
}
@media (max-width: 1185px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .content {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 0px;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .header {
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .content .header {
    font-size: 2.5rem;
    line-height: 50px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .featured-block-content-img-acm .grid-wrapper .column-with-content .content .info {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
  }
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info ul {
  list-style: disc;
  line-height: 32px;
  margin-left: 25px;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content .info a {
  text-decoration: underline;
  font-weight: 500;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.featured-block-content-img-acm .grid-wrapper .column-with-content .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}

.art-floorplan-acm {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.art-floorplan-acm .floorplan-container {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}
.art-floorplan-acm .floorplan-container .vertical-line {
  width: 80px;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .art-floorplan-acm .floorplan-container .vertical-line {
    top: 20px;
    width: 80px;
  }
}
@media (max-width: 766px) {
  .art-floorplan-acm .floorplan-container .vertical-line {
    top: 20px;
    width: 60px;
  }
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder {
  max-width: 1320px;
  width: 100%;
  height: 917px;
  overflow: hidden;
  margin-top: 80px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex: 1;
}
@media (max-width: 999px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder {
    max-width: 95%;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 640px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder {
    max-width: 350px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
  display: block;
  max-width: 1320px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
    max-width: 95%;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder .placeholder-img {
    max-width: 350px;
    width: 100%;
    height: 242px;
  }
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .download-cta {
  display: flex;
  width: 100%;
  height: 40px;
  display: none;
  text-align: center;
  border: 1px solid var(--maven-blue);
}
@media (max-width: 800px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder .download-cta {
    display: flex;
  }
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .download-cta .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .location {
  position: absolute;
  left: 12%;
  top: 10%;
  transform: translateX(-50%) translateY(-50%);
  width: 12px;
  height: 12px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .art-floorplan-acm .floorplan-container .floorplan-placeholder .location {
    display: none;
  }
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .location:before {
  content: "";
  position: relative;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 45px;
  border: 1px solid var(--maven-blue);
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.art-floorplan-acm .floorplan-container .floorplan-placeholder .location:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--maven-blue);
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

.full-screen-pop-up {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.85);
  display: block;
  width: 100%;
  height: 100%;
}
.full-screen-pop-up.gone {
  display: none;
}
.full-screen-pop-up .container {
  max-width: 600px;
  background-color: #f3ece4;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
  top: 50%;
  padding: 10px;
  position: relative;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .full-screen-pop-up .container {
    flex-direction: column;
    height: auto;
    margin: 20px;
  }
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container {
    max-width: 500px;
  }
}
.full-screen-pop-up .container .inner-container {
  overflow-y: auto;
  max-height: 650px;
  height: auto;
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container .inner-container {
    max-height: 430px;
  }
}
.full-screen-pop-up .container .inner-container .img-slider {
  width: 100%;
  height: 280px;
}
@media screen and (max-width: 1440px) {
  .full-screen-pop-up .container .inner-container .img-slider {
    height: 200px;
  }
}
.full-screen-pop-up .container .inner-container .img-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.full-screen-pop-up .container .inner-container .content {
  padding: 30px;
}
.full-screen-pop-up .container .inner-container .content .h2 {
  margin-bottom: 0px;
  color: var(--Maven-ADA-Gold, #86704A);
  /* Desktop/Headings/S */
  font-family: "Roboto Condensed";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px;
  /* 125% */
  letter-spacing: -0.64px;
  text-transform: uppercase;
}
.full-screen-pop-up .container .inner-container .content .h4 {
  margin-bottom: 20px;
  color: var(--Maven-Blue, #394F71);
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.18px;
}
.full-screen-pop-up .container .inner-container .content p {
  color: var(--Maven-Blue, #394F71);
  /* Desktop/Body/Regular */
  font-family: "Roboto Condensed";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  /* 177.778% */
  letter-spacing: -0.18px;
  margin-bottom: 30px;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns .link-btn {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0%;
  font-size: 1rem;
  line-height: 16px;
  padding: 12px 24px;
  background-color: #E2CDA9;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
}
.full-screen-pop-up .container .inner-container .content .bottom-btns .link-btn:hover {
  background-color: var(--maven-blue);
  color: var(--maven-light);
}
.full-screen-pop-up .full-screen-close {
  position: absolute;
  top: -30px;
  right: -30px;
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  height: 46px;
  width: 46px;
  border-radius: 50%;
  background-color: var(--maven-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-screen-pop-up ::-webkit-scrollbar-thumb {
  background: var(--Maven-Tan, #E2CDA9);
}

.art-collection-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  height: 870px;
  width: 100%;
}
@media (max-width: 1020px) {
  .art-collection-acm {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 640px) {
  .art-collection-acm {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    height: 647px;
  }
}
.art-collection-acm .fill-background {
  max-width: 1200px;
  width: 100%;
  height: 870px;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  position: absolute;
  background: linear-gradient(0deg, #E2CDA9 0%, #E2CDA9 100%);
}
@media (max-width: 1020px) {
  .art-collection-acm .fill-background {
    max-width: 100%;
    width: 100%;
    margin: 0px auto 0px;
    height: 100%;
    top: 4%;
  }
}
.art-collection-acm .vertical-line {
  width: 225px;
  height: 0px;
  left: 50%;
  top: -42px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (max-width: 999px) {
  .art-collection-acm .vertical-line {
    width: 180px;
  }
}
@media (max-width: 766px) {
  .art-collection-acm .vertical-line {
    width: 120px;
  }
}
.art-collection-acm .container-content-wrapper {
  left: 50%;
  top: 217px;
  transform: translate(-50%);
  width: 100%;
  max-width: 1000px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
}
@media (max-width: 1020px) {
  .art-collection-acm .container-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    height: auto;
    flex: 1 1 0;
  }
}
@media (max-width: 768px) {
  .art-collection-acm .container-content-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    top: 75px;
    height: auto;
    flex: 1 1 0;
  }
}
.art-collection-acm .container-content-wrapper .heading {
  align-self: stretch;
  text-align: center;
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (max-width: 664px) {
  .art-collection-acm .container-content-wrapper .heading {
    font-size: 2.5rem;
    padding-top: 29px;
    line-height: 50px;
  }
}
.art-collection-acm .container-content-wrapper .content {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  color: var(--maven-blue);
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (max-width: 664px) {
  .art-collection-acm .container-content-wrapper .content {
    max-width: 330px;
    width: 100%;
    overflow: hidden;
    height: 100%;
    top: 70%;
    font-size: 2.5rem;
    line-height: 50px;
    margin: 0 auto;
  }
}
.art-collection-acm .image-collage {
  max-width: 1437px;
  width: 100%;
  height: 500px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
@media (max-width: 999px) {
  .art-collection-acm .image-collage {
    top: 49%;
    max-width: 100%;
  }
}
@media (max-width: 640px) {
  .art-collection-acm .image-collage {
    max-width: 100%;
    overflow: hidden;
    height: 647px;
    top: 37%;
  }
}
.art-collection-acm .image-collage #art-collection-slider {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 640px) {
  .art-collection-acm .image-collage #art-collection-slider {
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
  }
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  justify-content: flex-start;
  align-items: flex-end;
  /* .swiper-slide.swiper-slide-active {
          width: 466px;
          max-width: 100%;
          height: 400px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }

      .swiper-slide.swiper-slide-prev {
          width: 373px; //279px;
          max-width:100%;
          height: 320px; //240px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }

      .swiper-slide.swiper-slide-next {
          width: 373px; //279px;
          max-width:100%;
          height:320px; // 240px;

          @media (max-width: 640px) {
              max-width:270px;
              width:100%;
              overflow:hidden;
              height:232px;
          }

          img{
              display:block;
              width:100%;
              max-width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

          .dairy-block-video{
              max-width: 100%;
              //max-height: 100%;
              width:100%;
              height:100%;
              object-fit: cover;
              overflow:hidden;
          }

      }*/
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 453px;
  height: 453px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*span.gradient-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  */
}
@media (max-width: 640px) {
  .art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide {
    max-width: 350px;
    width: 100%;
    overflow: hidden;
    height: 350px;
    top: 70%;
  }
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide .dairy-block-video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px;
  max-width: 453px;
  width: 100%;
  height: 387px;
  color: var(--maven-light);
  margin: 0 auto;
  bottom: -113px;
  /*
  .cta-wrapper{
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 48px;
      justify-content: center;


       .explore-hover{
          display:none;

          @media (max-width: 640px) {
              display:none
          }

       }


       .explore{
         // flex: 1 1 0; 
          height: 48px; 
         // padding-left: 24px; 
         // padding-right: 24px; 
         // padding-top: 12px; 
         // padding-bottom: 12px; 
          border: 1px #EFE9E0 solid; 
          justify-content: center; 
          align-items: center; 
          gap: 10px; 
          display: flex;

          .view-cta{
              flex: 1 1 0;
              width:100%;
          }

          @media (max-width: 640px) {
              display:none
          }
       }



       .rfp{
         // flex: 1 1 0; 
          height: 48px;
          // padding-left: 24px; 
         //  padding-right: 24px; 
          // padding-top: 12px; 
          // padding-bottom: 12px; 
           background: #EFE9E0; 
           border: 1px #EFE9E0 solid; 
           justify-content: center; 
           align-items: center; 
           gap: 10px; 
           display: flex;

           .book-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
           }

           @media (max-width: 640px) {
              display:none
          }

       }

       .show-on-mobile{
          // flex: 1 1 0; 
          height: 48px; 
         // padding-left: 24px; 
         // padding-right: 24px; 
         // padding-top: 12px; 
         // padding-bottom: 12px; 
          border: 1px #EFE9E0 solid; 
          justify-content: center; 
          align-items: center; 
          gap: 10px; 
          display: none;

          .view-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
          }

          .book-cta{
              flex: 1 1 0;
              width:100%;
              white-space: nowrap;
           }

           @media (max-width: 640px) {
              display:flex;
          }
       }

  }*/
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container {
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  grid-template-rows: auto;
  max-width: 405px;
  width: 100%;
  height: 96px;
  border: 1px solid var(--maven-light);
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .name {
  grid-column: 1/-1;
  padding: 12px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--maven-light);
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .artist {
  text-align: center;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .parent-container .cta-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper {
  border: 1px solid var(--maven-light);
  display: none;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease-in;
  position: relative;
  bottom: 104px;
  height: 405px;
  flex: 1 1 0;
  padding: 100px 0px;
  /*.rfp-link {
      align-self: stretch;
      flex: 1 1 0;
      width: 100%;
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      height: 48px;
  }*/
}
@media (max-width: 640px) {
  .art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper {
    height: 330px;
    bottom: 48px;
    gap: 24px;
    padding: 25px 0px;
  }
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .name {
  height: 24px;
  padding: 12px;
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .artist-name {
  text-align: center;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .short-desc {
  height: 151px;
  max-width: 312px;
  width: 100%;
  margin: 0 auto;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex-direction: column;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(32px * 4);
}
@media (max-width: 640px) {
  .art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .short-desc {
    font-size: 1rem;
    height: 100%;
  }
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .explore-hover {
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
  flex: 1 1 0;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide figcaption.dining-info .content-wrapper .explore-hover .book-cta {
  width: 100%;
  overflow: hidden;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper figure.swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-swiper-card-overlay);
  pointer-events: none;
  transition: background 0.3s ease;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover::before {
  background: var(--gradient-card-overlay-hover);
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover .dining-info {
  display: flex;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper {
  display: flex;
}
@media (max-width: 880px) {
  .art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover .dining-info .content-wrapper {
    padding-top: 46px;
  }
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover .cover {
  display: none;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-wrapper .swiper-slide-active:hover .parent-container {
  display: none;
}
.art-collection-acm .image-collage #art-collection-slider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%);
}
.art-collection-acm .image-collage #art-collection-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0px;
  left: auto;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-collection-acm .image-collage #art-collection-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.diary-history-block-acm {
  display: flex;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
@media (width <= 1023px) {
  .diary-history-block-acm {
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
}
.diary-history-block-acm .parent-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.diary-history-block-acm .parent-wrapper .vertical-line {
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  height: 0px;
  left: 50%;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper .vertical-line {
    width: 60px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider {
  position: relative;
  height: 898px;
  width: calc(100% - 118px);
  max-width: 1322px;
  margin: auto 0px auto 118px;
  overflow: hidden;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider {
    height: 987px;
    max-width: 100%;
    width: 100%;
    margin: 60px 0px 0px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-wrapper {
  overflow: hidden;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-wrapper .header-container {
  max-width: 660px;
  width: 100%;
  left: 0px;
  top: 200px;
  position: absolute;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  display: inline-flex;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-wrapper .header-container {
    max-width: 100%;
    width: calc(100% - 30px);
    margin: 35px 0px 0px 30px;
    top: 484px;
    box-sizing: border-box;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-wrapper .header-container .header {
  color: #86704A;
  font-family: var(--primary-font);
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-wrapper .header-container .hl {
  flex: 1 1 0;
  height: 0px;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide {
  display: grid;
  grid-template-columns: 1fr 45rem;
  grid-template-rows: auto;
  grid-template-areas: "info slider";
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide {
    grid-template-columns: 1fr;
    grid-template-areas: "slider" "info";
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide .slider-container {
  max-width: 45rem;
  width: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 817px;
  left: 0px;
  top: 80px;
  position: absolute;
  background: linear-gradient(0deg, #394F71 0%, #394F71 100%);
  grid-area: slider;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide .slider-container {
    max-width: 100%;
    width: 100%;
    left: 0px;
    height: 100%;
    top: 0px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide .slider-container img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide .slider-container .slider-caption {
  width: 640px;
  left: 40px;
  top: 755px;
  position: absolute;
  text-align: right;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  padding-right: 40px;
  height: 28px;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide .slider-container .slider-caption {
    font-size: 1rem;
    height: 100%;
    max-width: 200px;
    width: 100%;
    top: 444px;
    left: 37%;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption {
  position: absolute;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  grid-area: info;
  opacity: 0;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption {
    max-width: 100%;
    width: 100%;
    left: 0px;
    height: 100%;
    top: 0px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content {
  height: 100%;
  flex: 1;
  left: 2px;
  top: 317px;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 35px;
  display: inline-flex;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content {
    height: 100%;
    max-width: 100%;
    width: calc(100% - 30px);
    padding: 0px 0px 0px 30px;
    box-sizing: border-box;
    gap: 24px;
    top: 71px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content p {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content p a {
  text-decoration: underline;
  font-weight: 500;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .year {
  color: #394F71;
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (width <= 640px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .year {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title {
  color: #394F71;
  font-size: 3.75rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title {
    font-size: 1.7rem;
    line-height: normal;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title p a {
  text-decoration: underline;
  font-weight: 500;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .title a {
  text-decoration: underline;
  font-weight: 500;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content {
  max-width: 380px;
  width: 100%;
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  flex: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content {
    font-size: 1rem;
    line-height: 30px;
    max-width: 100%;
    width: 100%;
    height: 100%;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content p em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content p a {
  text-decoration: underline;
  font-weight: 500;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content em {
  font-family: var(--secondary-italic-font);
  font-style: italic;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide figcaption .slider-content .content a {
  text-decoration: underline;
  font-weight: 500;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .swiper-slide-active figcaption {
  opacity: 1;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper {
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: inline-flex;
  position: absolute;
  bottom: 104px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10%;
  max-width: 100%;
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper {
    width: 100%;
    padding: 0px 30px;
    bottom: 18px;
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  margin-top: 20px;
  left: 50%;
  transform: translate(-50%);
}
@media (width <= 1023px) {
  .diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper .rooms-nav-controller {
    left: 9%;
    transform: translate(0px);
  }
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper .rooms-nav-controller .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper .rooms-nav-controller .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.diary-history-block-acm .parent-wrapper div#dairy-block-slider .pagination-wrapper .rooms-nav-controller .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}

.art-at-dairy-block-slider-acm {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .top-line {
  grid-column: span 2;
  height: 140px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .top-line {
    grid-column: span 1;
    height: 34px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .top-line .t-line {
    width: 60px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider {
  max-width: 4506.25%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  overflow: hidden;
  flex: 1;
  padding-top: 80px;
}
@media (max-width: 880px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider {
    height: 519px;
    width: 100%;
    max-width: 100%;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image {
  max-width: 100%;
  width: 100%;
  height: 620px;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image {
    max-width: 100%;
    width: 100%;
    height: 465px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider {
  width: 100%;
  overflow: hidden;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper {
  max-width: 100%;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide {
  min-width: 453px;
  max-width: 453px !important;
  width: 100%;
  overflow: hidden;
  height: 453px;
  margin: 0;
  position: relative;
}
@media (max-width: 880px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide {
    min-width: 100%;
    max-width: 100% !important;
    width: 100%;
    height: 350px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper {
  position: absolute;
  bottom: 0;
  color: var(--maven-light);
  font-family: "Roboto Condensed", sans-serif;
  /* text-transform: uppercase;
   border:1px solid #EFE9E0;
    display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
   margin: 0px 24px 24px 24px;
   max-width: 418px;*/
  width: 100%;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .content {
  width: 100%;
  height: 96px;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 0.25fr;
  grid-template-rows: auto;
  grid-template-areas: "title title" "artist cta-wrapper";
  border: 1px solid var(--maven-light);
  max-width: 405px;
  margin: 0 auto 24px;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .content .title {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 1.5rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
  word-wrap: break-word;
  grid-area: title;
  grid-column: 1/-1;
  padding: 12px 0px;
  border-bottom: 1px solid var(--maven-light);
  width: 100%;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .content .artist-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
  white-space: normal;
  height: 100%;
  grid-area: artist;
}
@media (width <= 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .content .artist-name {
    font-size: 1rem;
    line-height: 32px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .content .cta {
  line-height: 20px;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0px;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .heading {
  display: inline-flex;
  flex: 110;
  /* padding: 12px 0px; */
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide .content-wrapper .top-section .content {
  display: inline-flex;
  flex: 110;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-transform: none;
  font-size: 1.125rem;
  line-height: 24px;
  display: none;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: absolute;
  right: 130px;
  margin-top: 20px;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: var(--maven-blue);
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: var(--maven-blue);
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-slider .column-inner-image #artDairyBlock-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: var(--maven-blue);
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 76px;
  flex: 1;
  position: relative;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media (width <= 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: -19px;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    padding-left: 30px;
    top: 0px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-right: 100px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
}
@media (max-width: 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  /*
  .italic-content{
      font-family:var(--secondary-italic-font);
      font-style: italic;
  }

  p{
      em{
       font-family:var(--secondary-italic-font);
      font-style: italic;
      }
  }
  */
}
@media (max-width: 880px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info {
    gap: 16px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info .stats-info .count {
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (width <= 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info .stats-info .count {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info .stats-info .stats {
  color: #394F71;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
}
@media (width <= 1023px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .content .info .stats-info .stats {
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .gif-container {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  bottom: 1px;
  right: -40px;
}
@media only screen and (max-width: 767px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .gif-container {
    margin: 0px auto;
    right: 6px;
    bottom: -108px;
  }
}
.art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .gif-container img {
  max-width: 315px;
  width: 100%;
  height: 209px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .art-at-dairy-block-slider-acm .dairyblock-grid-wrapper .column-with-content .gif-container img {
    max-width: 200px;
    height: 176px;
    width: 100%;
  }
}

.video-block-acm {
  position: relative;
  max-width: 1440px;
  margin: 0px auto;
}
.video-block-acm .video-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 800px;
  position: relative;
  margin-top: 140px;
}
@media (width <= 640px) {
  .video-block-acm .video-container {
    max-width: 100%;
    width: 100%;
    height: 280px;
    margin-top: 60px;
  }
}
.video-block-acm .video-container .play-video {
  max-width: 11px;
  width: 100%;
  overflow: hidden;
  display: block;
  height: 16px;
  bottom: 40px;
  right: 40px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
  display: none;
}
@media (width <= 1023px) {
  .video-block-acm .video-container .play-video {
    max-width: 60px;
    width: 100%;
    overflow: hidden;
    height: 60px;
    top: 50%;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -50%);
  }
}
.video-block-acm .video-container .pause-video {
  max-width: 11px;
  width: 100%;
  overflow: hidden;
  display: block;
  height: 16px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
}
@media (width <= 1023px) {
  .video-block-acm .video-container .pause-video {
    max-width: 60px;
    width: 100%;
    overflow: hidden;
    height: 60px;
    top: 50%;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -50%);
  }
}
.video-block-acm .video-container .placeholder, .video-block-acm .video-container .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures the image/video covers the container */
  cursor: pointer;
}
.video-block-acm .video-container .video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  overflow: hidden;
}
.video-block-acm .video-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
  top: 0;
  left: 0;
}
.video-block-acm .vertical-line {
  display: block;
  width: 140px;
  height: 0px;
  transform: rotate(90deg) translate(-50%);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  left: 50%;
  position: absolute;
  top: -70px;
}
@media (width <= 640px) {
  .video-block-acm .vertical-line {
    width: 60px;
    top: -28px;
  }
}

.menu-acm {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.menu-acm .menu-tabs {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  height: 40px;
  display: inline-flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
}
.menu-acm .menu-tabs li {
  flex: 1 1 0;
}
.menu-acm .menu-container {
  max-width: 58.438rem;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex: 1;
  /*
      .menu-info{
          width:100%;
          height:100%;
      }*/
}
@media (width <= 1023px) {
  .menu-acm .menu-container {
    max-width: 100%;
    width: 100%;
  }
}
.menu-acm .menu-container .yext-menu,
.menu-acm .menu-container .yext-base-theme,
.menu-acm .menu-container .yext-reset {
  font-size: 1.125rem !important;
  font-family: var(--primary-font) !important;
  color: var(--maven-blue) !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 100% !important;
  height: 100% !important;
  border-color: #bebebe;
  margin: 0 auto;
  overflow: visible !important;
  background-color: inherit !important;
  margin: 0 auto !important;
  box-sizing: border-box;
  max-width: 935px;
  min-width: 935px;
  padding: 0px !important;
  /* .yext-menu-section-items.half.first{
            margin-right: 4%;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            gap: 41px;


                .yext-menu-item-details {
                zoom: 1;
                word-break: break-word;
                word-wrap: break-word;
                line-height: 1.28em;
                margin-bottom: 1.8em;
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;

                .yext-menu-item-info-wrapper {
                        float: none;
                        width: 100%;
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                        flex-direction: column;

                        .yext-menu-item-info {
                            display: flex;
                            justify-content: flex-start;
                            align-items: flex-start;
                            flex-direction: column;

                            span.yext-menu-item-name.yext-accentcolor {
                                color: var(--maven-blue) !important;
                                font-size: 1.125rem;
                                font-family: var(--primary-font);
                                font-weight: 700 !important;
                                line-height: 32px;
                                word-wrap: break-word;
                            }

                            .yext-menu-item-price, .yext-menu .yext-menu-item-option-price {
                                font-weight:500;
                            }
                        }


                    }
            }



        }*/
  /*
            .yext-menu-section-items.half {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            gap: 41px;


                .yext-menu-item-details {
                zoom: 1;
                word-break: break-word;
                word-wrap: break-word;
                line-height: 1.28em;
                margin-bottom: 1.8em;
                display: flex;
                justify-content: flex-start;
                align-items: flex-start;

                .yext-menu-item-info-wrapper {
                        float: none;
                        width: 100%;
                        display: flex;
                        justify-content: flex-start;
                        align-items: flex-start;
                        flex-direction: column;

                        .yext-menu-item-info {
                            display: flex;
                            justify-content: flex-start;
                            align-items: flex-start;
                            flex-direction: column;

                            span.yext-menu-item-name.yext-accentcolor {
                                color: var(--maven-blue) !important;
                                font-size: 1.125rem;
                                font-family: var(--primary-font);
                                font-weight: 700 !important;
                                line-height: 32px;
                                word-wrap: break-word;
                            }

                            .yext-menu-item-price, .yext-menu .yext-menu-item-option-price {
                                font-weight:500;
                            }
                        }


                    }
            }



        }*/
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu,
.menu-acm .menu-container .yext-base-theme,
.menu-acm .menu-container .yext-reset {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    padding: 0px;
  }
}
.menu-acm .menu-container .yext-menu .left-hr,
.menu-acm .menu-container .yext-base-theme .left-hr,
.menu-acm .menu-container .yext-reset .left-hr {
  display: none !important;
}
.menu-acm .menu-container .yext-menu .right-hr,
.menu-acm .menu-container .yext-base-theme .right-hr,
.menu-acm .menu-container .yext-reset .right-hr {
  display: none !important;
}
.menu-acm .menu-container .yext-menu .yext-menus-list,
.menu-acm .menu-container .yext-base-theme .yext-menus-list,
.menu-acm .menu-container .yext-reset .yext-menus-list {
  text-align: center;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: sticky;
  top: 90px;
  z-index: 1000;
  background: #efe9e0 !important;
  padding: 20px 0px !important;
  border-bottom: 1px solid var(--maven-blue) !important;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menus-list,
.menu-acm .menu-container .yext-base-theme .yext-menus-list,
.menu-acm .menu-container .yext-reset .yext-menus-list {
    max-width: 100%;
    width: 100%;
    top: 95px;
    overflow: scroll;
  }
}
@media (width <= 767px) {
  .menu-acm .menu-container .yext-menu .yext-menus-list,
.menu-acm .menu-container .yext-base-theme .yext-menus-list,
.menu-acm .menu-container .yext-reset .yext-menus-list {
    top: 73px;
  }
}
.menu-acm .menu-container .yext-menu .bullet-divider,
.menu-acm .menu-container .yext-base-theme .bullet-divider,
.menu-acm .menu-container .yext-reset .bullet-divider {
  display: none !important;
}
.menu-acm .menu-container .yext-menu .yext-menu-title,
.menu-acm .menu-container .yext-base-theme .yext-menu-title,
.menu-acm .menu-container .yext-reset .yext-menu-title {
  line-height: 1.8em;
  padding-bottom: 0;
  vertical-align: middle;
  color: var(--maven-blue) !important;
  font-size: 1rem !important;
  font-family: var(--primary-font);
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 16px !important;
  word-wrap: break-word;
  background: none;
  border: none;
  flex: 1 1 0;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 0px !important;
  vertical-align: auto !important;
  text-align: center !important;
}
.menu-acm .menu-container .yext-menu .yext-active,
.menu-acm .menu-container .yext-base-theme .yext-active,
.menu-acm .menu-container .yext-reset .yext-active {
  color: var(--maven-blue) !important;
  text-decoration: underline;
  text-underline-offset: 22px;
  text-decoration-thickness: 3px;
}
.menu-acm .menu-container .yext-menu .yext-menus-list li:hover,
.menu-acm .menu-container .yext-base-theme .yext-menus-list li:hover,
.menu-acm .menu-container .yext-reset .yext-menus-list li:hover {
  opacity: 1 !important;
}
.menu-acm .menu-container .yext-menu .yext-menu-content,
.menu-acm .menu-container .yext-base-theme .yext-menu-content,
.menu-acm .menu-container .yext-reset .yext-menu-content {
  max-width: 935px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content,
.menu-acm .menu-container .yext-base-theme .yext-menu-content,
.menu-acm .menu-container .yext-reset .yext-menu-content {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0px 30px;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  width: 58.438rem;
  -moz-column-gap: 135px;
       column-gap: 135px;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section {
    grid-template-columns: 1fr;
    max-width: 100%;
    width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header {
  margin: 2.7em 0;
  grid-column: 1/-1;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header {
    grid-column: 1;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title {
  font-size: 3.75rem !important;
  color: var(--maven-blue) !important;
  display: table-cell;
  text-transform: none !important;
  font-weight: 400 !important;
  background-color: inherit !important;
  white-space: nowrap;
  vertical-align: middle;
  line-height: 70px;
  font-family: var(--secondary-font) !important;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-title {
    font-size: 2.5rem !important;
    line-height: 50px;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc {
  font-size: 1.125rem !important;
  color: var(--maven-blue) !important;
  margin-top: 1em;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-header .yext-menu-section-desc {
    width: 100%;
    max-width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half {
  /* margin-right: 4%; */
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 41px;
  width: 100% !important;
  max-width: 100% !important;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half {
    width: 100%;
    max-width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details {
  zoom: 1;
  word-break: break-word;
  word-wrap: break-word;
  line-height: 1.28em;
  margin-bottom: 1.8em;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper {
  float: none;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info {
    width: 100%;
    max-width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor {
  color: var(--maven-blue) !important;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 700 !important;
  line-height: 32px;
  word-wrap: break-word;
  text-transform: uppercase;
}
@media (width <= 1023px) {
  .menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info span.yext-menu-item-name.yext-accentcolor {
    width: 100%;
    max-width: 100%;
  }
}
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-menu .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-base-theme .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half.first .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu-item-price,
.menu-acm .menu-container .yext-reset .yext-menu-content .yext-menu-section .yext-menu-section-items.half .yext-menu-item-details .yext-menu-item-info-wrapper .yext-menu-item-info .yext-menu .yext-menu-item-option-price {
  font-weight: 500;
}

.vertical-line-acm {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0px auto 50px;
  height: 100px;
}
@media (width <= 900px) {
  .vertical-line-acm {
    max-width: 100%;
    margin: 0px auto 25px;
    height: 60px;
  }
}
.vertical-line-acm .line {
  width: 100px;
  height: 0px;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  left: 50%;
  position: absolute;
  top: 0px;
}
@media (width <= 900px) {
  .vertical-line-acm .line {
    width: 60px;
  }
}

.open-table-widget-acm {
  position: relative;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 880px) {
  .open-table-widget-acm {
    max-width: 100%;
  }
}
.open-table-widget-acm .open-table-container {
  max-width: 100%;
  height: 100%;
  width: 100%;
  display: inline;
  width: 100%;
}
.open-table-widget-acm .open-table-container .wide-calendar.picker {
  top: 117%;
  width: 100%;
  left: 0.21875rem;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget {
  width: 100%;
  max-width: 100%;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form {
  margin: 0;
  border: 0.0625rem solid var(--otkit-color-border-default);
  border-radius: 0px;
  /* background: var(--otkit-color-background-default); */
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 30px;
  background: transparent !important;
  justify-content: center;
  align-items: center;
  border: none !important;
}
@media (max-width: 880px) {
  .open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form .ot-dtp-picker .ot-dtp-picker-selector {
  position: relative;
  margin: 0;
  width: 100%;
  height: 48px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  max-width: 100%;
  float: none !important;
  gap: 10px;
  background: #fff;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form .ot-dtp-picker .ot-dtp-picker-selector .select-wrapper {
  max-width: 100%;
  width: 100%;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form .ot-dtp-picker .ot-dtp-picker-selector .select-wrapper select {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form input.ot-button.ot-dtp-picker-button.en {
  background: var(--maven-blue) !important;
  color: var(--maven-light) !important;
  grid-column: 2;
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  font-family: var(--primary-font);
  height: 56px;
}
@media (max-width: 880px) {
  .open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-standard .ot-dtp-picker-form input.ot-button.ot-dtp-picker-button.en {
    grid-column: 1;
  }
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-time-picker.ot-dtp-picker-selector {
  background: #fff !important;
  min-width: 100% !important;
  height: 50px;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-date-picker.ot-dtp-picker-selector {
  background: #fff !important;
  min-width: 100% !important;
  height: 50px;
}
.open-table-widget-acm .open-table-container div#ot-reservation-widget .ot-party-size-picker.ot-dtp-picker-selector {
  background: #fff !important;
  width: 100%;
  max-width: 100%;
  min-width: 100% !important;
  overflow: hidden;
  height: 50px;
}
.open-table-widget-acm .open-table-container h1.ot-title {
  display: none;
}
@media (width <= 880px) {
  .open-table-widget-acm .open-table-container .ot-dtp-picker.ot-standard.wide {
    width: 100%;
    align-items: normal;
  }
}

.capacity-chart-acm {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 80px;
  display: flex;
  overflow: hidden;
}
@media (width <= 1023px) {
  .capacity-chart-acm {
    max-width: 100%;
    width: calc(100% - 60px);
    margin: 0px 30px;
    overflow: hidden;
  }
}
.capacity-chart-acm .vertical-line {
  width: 100px;
  height: 0px;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media (width <= 990px) {
  .capacity-chart-acm .vertical-line {
    width: 60px;
  }
}
.capacity-chart-acm .capacity-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (width <= 800px) {
  .capacity-chart-acm .capacity-container {
    margin-top: 60px;
  }
}
.capacity-chart-acm .capacity-container .title {
  color: #86704A;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 40px;
  word-wrap: break-word;
  padding: 52px 0px;
}
@media (width <= 800px) {
  .capacity-chart-acm .capacity-container .title {
    padding: 35px 0px;
    font-size: 1.5rem;
    line-height: 28px;
  }
}
.capacity-chart-acm .capacity-container .table-container {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.capacity-chart-acm .capacity-container .table-container table {
  width: 100%;
  border-collapse: collapse;
}
.capacity-chart-acm .capacity-container .table-container th, .capacity-chart-acm .capacity-container .table-container td {
  border: 1px solid #86704A;
  padding: 8px;
  text-align: center;
  height: 80px;
}
.capacity-chart-acm .capacity-container .table-container th {
  background-color: #86704A;
  color: #EFE9E0;
  font-size: 1.375rem;
  font-family: var(--primary-font);
  font-weight: 700;
  line-height: 25px;
  word-wrap: break-word;
  padding: 36px 21px;
  text-align: left;
}
@media (width <= 990px) {
  .capacity-chart-acm .capacity-container .table-container th {
    font-size: 1rem;
    line-height: 24px;
  }
}
.capacity-chart-acm .capacity-container .table-container td {
  color: #86704A;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 25px;
  word-wrap: break-word;
  text-align: left;
  padding: 28px;
}
.capacity-chart-acm .capacity-container .table-container tr {
  background: #fff;
}

.capacitychart-detail-hero {
  position: relative;
  max-width: 100%;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  overflow: hidden;
  height: 100vh;
  top: 0px;
}
@media (width <= 800px) {
  .capacitychart-detail-hero {
    height: 500px;
    width: 100%;
  }
}
.capacitychart-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5);
}
.capacitychart-detail-hero .tagline-container {
  width: 52px;
  height: 52px;
  position: relative;
  left: 50%;
  bottom: 41px;
}
.capacitychart-detail-hero .tagline-container .white-line {
  width: 100%;
  height: 0px;
  left: 0px;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #EFE9E0 solid;
}
@media (width <= 990px) {
  .capacitychart-detail-hero .tagline-container {
    display: none;
  }
}
.capacitychart-detail-hero div#venue-homeslider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* span.gradient-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
   }*/
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider {
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper {
  position: relative;
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: hidden;
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption {
  position: absolute;
  bottom: 113px;
  left: 50%;
  transform: translate(-50%);
  max-width: 660px;
  width: 100%;
  height: 112px;
  border: 1px solid var(--maven-light);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  margin-bottom: 40px;
  transform: translate3d(-50%, 100%, 0);
  opacity: 0;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption {
    height: 164px;
    background: var(--maven-blue);
    max-width: 100%;
    margin-bottom: 0px;
    bottom: 164px;
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-name {
  border-bottom: 1px solid var(--maven-light);
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  color: var(--maven-light);
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-name {
    line-height: 24px;
    font-size: 1.5rem;
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox {
  display: grid;
  grid-template-columns: 492px 1fr;
  grid-template-rows: auto;
  height: 56px;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-features {
  width: 100%;
  color: var(--maven-light);
  padding: 12px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid var(--maven-light);
  display: -webkit-inline-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-align: center;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-features {
    border-left: 0px;
    border-bottom: 1px solid var(--maven-light);
    padding: 3px 0px;
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  height: 56px;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas {
    padding: 10px;
    gap: 8px;
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas .view-cta {
  background: var(--maven-light);
  color: var(--maven-blue);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /* &:hover{
       background:var(--maven-blue);
       color:var(--maven-light);

   }*/
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas .view-cta {
    border: 1px solid var(--maven-light);
    background: none;
    color: var(--maven-light);
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas .book-cta {
  background: var(--maven-blue);
  color: var(--maven-light);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /* &:hover{
       background:var(--maven-light);
       color:var(--maven-blue);

   }*/
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide figcaption.roomcaption .room-featurebox .room-ctas .book-cta {
    background: var(--maven-light);
    color: var(--maven-blue);
  }
}
.capacitychart-detail-hero div#venue-homeslider #meetings-homepageslider .swiper-wrapper .swiper-slide-active figcaption.roomcaption {
  opacity: 1;
  transform: translate3d(--maven-darker-blue, 0px, 0px);
}
.capacitychart-detail-hero div#venue-homeslider figure.venue.swiper-slide.venue-slides.swiper-slide-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%),
                      linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%); */
  pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(102, 102, 102, 0.2) 100%);
}
.capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller {
    top: 39%;
  }
}
.capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (width <= 990px) {
  .capacitychart-detail-hero div#venue-homeslider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.capacitychart-detail-hero div#venue-homeslider .swiper-pagination.swiper-pagination-fraction {
  position: absolute;
  right: 60px;
  left: auto;
  color: var(--maven-light);
  width: 100px;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  max-width: 32px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 800px) {
  .capacitychart-detail-hero div#venue-homeslider .swiper-pagination.swiper-pagination-fraction {
    bottom: 163px;
    right: 30px;
  }
}
.capacitychart-detail-hero div#venue-homeslider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.capacitychart-detail-hero div#venue-homeslider figure.venue.swiper-slide.venue-slides.swiper-slide-active .swiper-slide figcaption.roomcaption {
  opacity: 1;
}

.alert-bar-layout-acm {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 19px 21px;
  height: 56px;
  z-index: 10000;
  color: var(--maven-blue);
  background: var(--maven-tan);
  border-bottom: 1px solid var(--maven-tan);
  line-height: 16px;
  font-size: 1rem;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .alert-bar-layout-acm {
    height: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .alert-bar-layout-acm {
    height: 100px;
    padding: 10px 30px 10px 10px;
    letter-spacing: 0px;
  }
}
.alert-bar-layout-acm.visible {
  display: block;
}
.alert-bar-layout-acm .content {
  display: inline-flex;
  color: #394F71;
  font-size: 1rem;
  font-family: var(--primary-secondary);
  font-weight: 400;
  line-height: 24px;
  word-wrap: break-word;
  /* height: 92px; */
  width: 100%;
  gap: 12px;
  /* flex: 1; */
  max-width: 710px;
  margin: 0 auto;
  height: 32px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (width <= 800px) {
  .alert-bar-layout-acm .content {
    flex-direction: column;
    max-width: 100%;
    height: 100%;
    width: 100%;
    padding: 16px 20px;
    gap: 12px;
    justify-content: center;
    align-items: center;
  }
}
.alert-bar-layout-acm .content em,
.alert-bar-layout-acm .content strong {
  font-weight: 700;
  text-transform: uppercase;
}
.alert-bar-layout-acm .content .info {
  max-width: 600px;
  width: 100%;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media (width <= 800px) {
  .alert-bar-layout-acm .content .info {
    max-width: 310px;
    min-height: 50px;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.alert-bar-layout-acm .content .cta-wrapper {
  max-width: 100px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -17%;
}
.alert-bar-layout-acm .content .cta-wrapper .cta {
  background-color: #f8ebdc;
  padding: 8px 12px;
  font-size: 0.875rem;
  width: 100%;
}
.alert-bar-layout-acm .content .cta-wrapper .cta:hover {
  background: var(--maven-blue);
  color: #f8ebdc;
}
.alert-bar-layout-acm .link {
  color: var(--maven-blue);
}
.alert-bar-layout-acm .link:hover {
  color: var(--maven-blue);
}
.alert-bar-layout-acm .close {
  position: absolute;
  right: 15px;
  top: 15px;
  text-indent: -1000px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  color: var(--maven-light);
  display: block;
  z-index: 2;
  /*
          &:after,
          &:before {
              content: "";
              position: absolute;
              top: 50%;
              left: 50%;
              background: var(--maven-blue);
          }

          &:after {
              width: 20px;
              height: 1px;
              transform: translate(-50%, -50%) rotate(-45deg);
          }

          &:before {
              width: 1px;
              height: 20px;
              transform: translate(-50%, -50%) rotate(-45deg);
          }
  */
}
.alert-bar-layout-acm .close img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.art-detail-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  /*
  section.art-detail-slider {
      position: relative;
      width: 100%;
      max-width: 100%;
      height: 100vh;
      top: 0px;
  */
}
@media (max-width: 640px) {
  .art-detail-hero {
    height: 464px;
  }
}
.art-detail-hero span.breadcrumbs-container {
  display: inline-flex;
  margin-left: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  position: realtive;
  position: relative;
}
@media (max-width: 640px) {
  .art-detail-hero span.breadcrumbs-container {
    margin-left: 16px;
    margin-top: 24px;
    font-size: 1.125rem;
  }
}
.art-detail-hero div#art-detail-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.art-detail-hero div#art-detail-slider .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .swiper-slide {
    height: 360px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%), linear-gradient(0deg, rgba(102, 102, 102, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.art-detail-hero div#art-detail-slider .swiper-slide .gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail {
  position: absolute;
  bottom: 0px;
  display: flex;
  max-width: 793px;
  width: 100%;
  height: auto;
  border: 1px solid #efe9e0;
  margin: 0px auto 52px;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail {
    height: auto;
    background-color: var(--maven-blue);
    bottom: -155px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
  flex: 1 1 0;
  text-align: center;
  color: #EFE9E0;
  font-size: 2rem;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 32px;
  word-wrap: break-word;
  padding: 12px 0px;
}
@media (max-width: 800px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-name {
    font-size: 1.5rem;
    line-height: 24px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .short-desc {
  padding: 12px;
  width: 100%;
  color: #EFE9E0;
  font-size: 1.125rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  border-top: 1px solid var(--maven-light);
  border-bottom: 1px solid var(--maven-light);
  text-align: center;
  flex: 1 1 0;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .short-desc {
    font-size: 1rem;
    padding: 10px 0px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  grid-template-rows: 111px;
  /* .room-features {
  		width: 492px;
  		height: 56px;
  		text-align: center;
  		color: #efe9e0;
  		font-size: 1.125rem;
  		font-family:var(--secondary-font);
  		line-height: 32px;
  		padding: 12px 0px;
  		text-transform: capitalize;

  		@media (max-width: 800px) {
  			width:100%;
  			max-width:100%;
  			overflow: hidden;
  			font-size:1rem;
  			line-height:32px;
  			border-bottom: 1px solid #efe9e0;
  		}
  	}*/
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox {
    flex-direction: column;
    grid-template-rows: auto;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  border-left: 1px #EFE9E0 solid;
  width: 168px;
  display: none;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas {
    display: flex;
    height: 40px;
    border-left: none;
    width: 100%;
    max-width: 370px;
    margin: 0 10px 10px;
    padding-top: 8px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
  background: #EFE9E0;
  color: #394F71;
  text-align: center;
  width: 100%;
  line-height: unset;
}
@media (max-width: 800px) {
  .art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta {
    line-height: 16px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-slide figcaption.rooms-detail .room-featurebox .room-ctas .book-cta:hover {
  background: var(--maven-blue);
  color: var(--maven-light);
}
.art-detail-hero div#art-detail-slider .swiper-pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 5%;
  color: #fff;
  right: 60px;
  color: white;
  font-size: 0.875rem;
  font-family: var(--secondary-italic-font);
  font-style: italic;
  font-weight: 400;
  max-width: 32px;
  width: 100%;
  overflow: hidden;
  left: auto;
}
@media (max-width: 800px) {
  .art-detail-hero div#art-detail-slider .swiper-pagination.swiper-pagination-fraction {
    bottom: 36%;
    right: 20px;
  }
}
.art-detail-hero div#art-detail-slider .swiper-pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: white;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-detail-hero div#art-detail-slider .rooms-nav-controller {
  position: absolute;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  top: 50%;
  width: 100%;
  z-index: 10;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .rooms-nav-controller {
    top: 35%;
  }
}
.art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-prev {
  margin-left: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-prev {
    margin-left: 20px;
  }
}
.art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  .art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-prev .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
.art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-next {
  margin-right: 40px;
  cursor: pointer;
}
@media (max-width: 640px) {
  .art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-next {
    margin-right: 20px;
  }
}
.art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
  max-width: 112px;
  width: 100%;
  height: 49px;
}
@media (max-width: 800px) {
  .art-detail-hero div#art-detail-slider .rooms-nav-controller .swiper-btn-next .control-icon {
    max-width: 60px;
    height: 30px;
  }
}
.art-detail-hero .tagline-container {
  width: 52px;
  height: 52px;
  position: relative;
  left: 50%;
  bottom: 52px;
}
@media (max-width: 640px) {
  .art-detail-hero .tagline-container {
    display: none;
  }
}
.art-detail-hero .tagline-container .white-line {
  width: 100%;
  height: 0px;
  left: 0px;
  top: 0px;
  position: absolute;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #EFE9E0 solid;
}

.art-details-columns-acm {
  position: relative;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}
.art-details-columns-acm .details-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.art-details-columns-acm .details-grid-wrapper .top-line {
  grid-column: span 2;
  height: 0px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .top-line {
    display: none;
  }
}
.art-details-columns-acm .details-grid-wrapper .top-line .t-line {
  height: 0;
  transform: rotate(90deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 0px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .top-line .t-line {
    width: 60px;
    top: 25px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 112px 150px;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .thumb-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
  background: var(--maven-light);
  color: var(--maven-blue);
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 500px;
  overflow: hidden;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .swiper-wrapper .swiper-slide img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .swiper-wrapper .swiper-slide img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .rooms-nav-controller {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .rooms-nav-controller .swiper--pagination.swiper-pagination-fraction {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  width: auto;
  bottom: 0;
  left: auto;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .rooms-nav-controller .swiper--pagination.swiper-pagination-fraction span.swiper-pagination-current {
  color: #fff;
  font-size: 1.5rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
}
.art-details-columns-acm .details-grid-wrapper .column-with-background .column-inner-image #art-detaillayout-slider .rooms-nav-controller .swiper--pagination.swiper-pagination-fraction span.swiper-pagination-total {
  color: #fff;
  font-size: 0.875rem;
  font-family: var(--secondary-font);
  font-style: italic;
  font-weight: 400;
}
.art-details-columns-acm .details-grid-wrapper .column-with-content {
  max-width: 4506.25%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 77px;
  flex: 1;
  /*
  .heading::before{
      content:'';
      width: 100%;
       height: 100%;
        transform: rotate(-180deg); 
        transform-origin: 0 0; 
        border: 1px #394F71 solid;
  }*/
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content {
    max-width: 100%;
    width: 100%;
    height: 100%;
    gap: 24px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .breadcrumbs-container {
  display: inline-flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  height: 32px;
  margin: 31px 0px 0px 40px;
  justify-content: flex-start;
  align-items: center;
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .breadcrumbs-container img {
  display: block;
  max-width: 12px;
  height: 16px;
  width: 100%;
  overflow: hidden;
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .heading {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-left: 117px;
  position: relative;
  top: 120px;
  margin-bottom: 77px;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .heading {
    padding-right: 0px;
    top: 0px;
    padding-left: 30px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .heading .line {
  height: 0;
  transform: rotate(0deg);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  flex: 1 1 0;
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .heading .heading-info {
  /* width: 100%; */
  height: 40px;
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content {
  width: 100%;
  padding-right: 100px;
  padding-left: 120px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  max-width: 100%;
  margin-bottom: 11px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content {
    padding-left: 30px;
    padding-right: 30px;
    text-align: left;
    gap: 24px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .short-desc {
  color: #394F71;
  font-size: 3.25rem;
  font-family: var(--secondary-font);
  font-weight: 400;
  line-height: 70px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .short-desc {
    font-size: 2.5rem;
    line-height: 50px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .long-desc {
  color: #394F71;
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 32px;
  word-wrap: break-word;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .long-desc {
    font-size: 1rem;
    line-height: 30px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  height: 40px;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .cta-wrapper {
    flex-wrap: wrap;
  }
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .cta-wrapper .submit-rfp {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    text-align: center;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .divider {
  width: 100%;
  height: 100%;
  background: #E2CDA9;
  border: 1px solid #e2cda9;
  margin-top: 61px;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .divider {
    display: none;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .title {
  color: var(--maven-blue);
  font-size: 1.125rem;
  font-family: var(--primary-font);
  font-weight: 400;
  line-height: 43px;
  word-wrap: break-word;
  margin-bottom: 36px;
  margin-top: 51px;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .title {
    font-size: 1rem;
    line-height: 30px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile {
  display: none;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile {
    display: flex;
    margin-top: 83px;
    width: 100%;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
  max-width: 4506.25%;
  width: 100%;
  height: 872px;
  background-image: url("../images/Background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 112px 150px;
  position: sticky;
  z-index: 9;
  top: 93px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background {
    height: 420px;
    width: 100%;
    max-width: 100%;
    padding: 46px 60px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image {
    max-width: 270px;
    width: 100%;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
  max-width: 438px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image {
    max-width: 100%;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 13.125rem 13.125rem 0px 0px;
}
@media only screen and (max-width: 767px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .thumb-image img {
    border-radius: 8.75rem 8.75rem 0px 0px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
  flex-direction: column;
  display: inline-flex;
  /* flex: 1 1 0; */
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  height: 60px;
  position: relative;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper {
    height: 40px;
  }
}
.art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
  width: 100%;
  max-width: 100%;
  text-align: center;
  position: absolute;
  padding: 20px 18px;
  line-height: 18px;
}
@media (max-width: 800px) {
  .art-details-columns-acm .details-grid-wrapper .column-with-content .content .show-on-mobile .column-with-background .column-inner-image .cta-wrapper .cta {
    padding: 12px 18px;
  }
}

.video-iframe-block-acm {
  position: relative;
  max-width: 1440px;
  margin: 0px auto;
}
.video-iframe-block-acm .video-iframe-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 800px;
  position: relative;
  margin-top: 140px;
}
@media (width <= 640px) {
  .video-iframe-block-acm .video-iframe-container {
    max-width: 100%;
    width: 100%;
    height: 280px;
    margin-top: 60px;
  }
}
.video-iframe-block-acm .video-iframe-container .play-video {
  max-width: 11px;
  width: 100%;
  overflow: hidden;
  display: block;
  height: 16px;
  bottom: 40px;
  right: 40px;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
  display: none;
}
@media (width <= 1023px) {
  .video-iframe-block-acm .video-iframe-container .play-video {
    max-width: 60px;
    width: 100%;
    overflow: hidden;
    height: 60px;
    top: 50%;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -50%);
  }
}
.video-iframe-block-acm .video-iframe-container .pause-video {
  max-width: 11px;
  width: 100%;
  overflow: hidden;
  display: block;
  height: 16px;
  position: absolute;
  bottom: 40px;
  right: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.7);
}
@media (width <= 1023px) {
  .video-iframe-block-acm .video-iframe-container .pause-video {
    max-width: 60px;
    width: 100%;
    overflow: hidden;
    height: 60px;
    top: 50%;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, -50%);
  }
}
.video-iframe-block-acm .video-iframe-container .placeholder, .video-iframe-block-acm .video-iframe-container .video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures the image/video covers the container */
  cursor: pointer;
}
.video-iframe-block-acm .video-iframe-container .video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
  overflow: hidden;
}
.video-iframe-block-acm .video-iframe-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.32) 100%);
  pointer-events: none;
  top: 0;
  left: 0;
}
.video-iframe-block-acm .vertical-line {
  display: block;
  width: 140px;
  height: 0px;
  transform: rotate(90deg) translate(-50%);
  transform-origin: 0 0;
  border: 1px #394F71 solid;
  left: 50%;
  position: absolute;
  top: -70px;
}
@media (width <= 640px) {
  .video-iframe-block-acm .vertical-line {
    width: 60px;
    top: -28px;
  }
}
