@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: 16px;
  background: rgb(255, 255, 255);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09), 0 6px 6px rgba(0, 0, 0, 0.12);
  z-index: 10;
  /* Tablet Landscape */
}
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: #194459;
}

.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.ui-datepicker-prev, .ui-datepicker-next.ui-datepicker-prev {
  background-image: url("../images/arrow-L.svg");
  background-repeat: no-repeat;
}
.ui-datepicker-prev.ui-datepicker-next, .ui-datepicker-next.ui-datepicker-next {
  background-image: url("../images/arrow-R.svg");
  background-repeat: no-repeat;
}

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

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

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
  /* Tablet Landscape */
}
@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: #000;
  text-transform: uppercase;
}
.ui-datepicker-calendar td {
  font-size: 12px;
  color: #000;
}
.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: #ccc;
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #194459;
  color: #fff;
}

.ui-datepicker-trigger {
  float: left;
  margin: 13px 0 0 8px;
  width: 17px;
  height: 15px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/sprite.svg") 0 -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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.blog-post-author {
  position: relative;
  margin-bottom: 30px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "PtSans", 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: "PtSans", sans-serif;
  position: absolute;
  right: 0;
  top: 100px;
  width: 160px;
  min-height: 600px;
  overflow: hidden;
  /* Tablet Landscape */
}
.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;
}

.acm.layout.spa-contact-block .wrapper .content-area {
  padding: 30px 20px;
}
.acm.layout.spa-contact-block .wrapper .content-area h2 {
  font: 400 30px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 30px;
  color: #222222;
}
.acm.layout.spa-contact-block .wrapper .link a {
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
  width: 100%;
  z-index: 0;
}
.acm.layout.spa-contact-block .wrapper .button {
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
  width: 100%;
}

.menu-tabs-block-acm .header h2 {
  padding-block: 20px;
}
.menu-tabs-block-acm .content {
  width: 66%;
  padding: 10px 0 30px 0;
}
.menu-tabs-block-acm .content p {
  text-transform: initial;
  line-height: 24px;
}
.menu-tabs-block-acm .tabs {
  position: relative;
  z-index: 100;
  padding-block: 20px;
}
.menu-tabs-block-acm .tabs-titles {
  position: relative;
  margin: 0 0 70px;
  z-index: 200;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles {
    border: 1px solid #C09951;
  }
}
.menu-tabs-block-acm .tabs-titles ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
  flex-direction: row;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles ul {
    gap: 5px;
  }
}
.menu-tabs-block-acm .tabs-titles li.tab-title {
  order: 2;
  display: block;
  padding: 0;
  list-style-type: none;
  transition: all 0.4s;
  /* Tablet Landscape */
}
.menu-tabs-block-acm .tabs-titles li.tab-title::after {
  display: none;
}
@media only screen and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles li.tab-title.tab-title-all {
    display: none;
  }
}
.menu-tabs-block-acm .tabs-titles li.tab-title button {
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #194459;
  padding: 14px 30px;
  /* Tablet Landscape */
}
.menu-tabs-block-acm .tabs-titles li.tab-title.active button {
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles li.tab-title.active button {
    background: none;
    color: #194459;
    visibility: visible;
    width: 100%;
    text-align: left;
  }
}
.menu-tabs-block-acm .tabs-titles .button {
  margin: 0 5px 10px;
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-titles {
    height: 40px;
  }
  .menu-tabs-block-acm .tabs-titles ul {
    position: relative;
    flex-direction: column;
  }
  .menu-tabs-block-acm .tabs-titles ul::after {
    content: "";
    position: absolute;
    top: 10px;
    right: 20px;
    display: block;
    width: 12px;
    height: 12px;
    border-right: 1px solid #1A2D3E;
    border-bottom: 1px solid #1A2D3E;
    transform: rotate(45deg);
    pointer-events: none;
    z-index: 201;
  }
  .menu-tabs-block-acm .tabs-titles li.tab-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    /* Tablet Landscape */
  }
}
@media only screen and (max-width: 767px) and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles li.tab-title {
    visibility: hidden;
  }
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-titles li.tab-title.active {
    order: 1;
    position: relative !important;
    z-index: 10;
    visibility: hidden;
  }
  .menu-tabs-block-acm .tabs-titles .button {
    margin: 0;
    width: 100%;
  }
  .menu-tabs-block-acm .tabs-titles.opened ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Tablet Landscape */
  }
}
@media only screen and (max-width: 767px) and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles.opened ul {
    background-color: #FFFFFF;
    border: 1px solid #C09951;
  }
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .tabs-titles.opened li.tab-title {
    position: relative;
    top: auto;
    z-index: 10;
    /* Tablet Landscape */
  }
}
@media only screen and (max-width: 767px) and (max-width: 1023px) {
  .menu-tabs-block-acm .tabs-titles.opened li.tab-title {
    visibility: visible;
  }
}
.menu-tabs-block-acm .tabs-content {
  position: relative;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: 100;
  overflow: hidden;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.4s;
}
.menu-tabs-block-acm .tabs-content .tabs-content-item.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  z-index: 100;
}
.menu-tabs-block-acm .menu-block {
  width: 46%;
  min-width: 400px;
  margin-right: auto;
  padding: 0 1% 1% 0;
  text-align: left;
  margin-bottom: 2%;
  border-bottom: 1px solid #C09951;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .menu-tabs-block-acm .menu-block {
    width: 100%;
    min-width: auto;
  }
}
.menu-tabs-block-acm .menu-block h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  font: 300 28px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  padding-bottom: 5px;
}
.menu-tabs-block-acm .menu-block .price {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  color: #C09951;
}
.menu-tabs-block-acm .menu-block .price b, .menu-tabs-block-acm .menu-block .price strong {
  font-weight: bold;
}

.room-amenities-acm {
  position: relative;
  display: flex;
  max-width: 1440px;
  gap: 114px;
  margin: auto;
  overflow: hidden;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-amenities-acm {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .room-amenities-acm {
    flex-direction: column;
    gap: 30px;
  }
}
.room-amenities-acm .room-info-left-side {
  width: 55%;
  padding-inline: 50px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.room-amenities-acm .room-info-left-side .header {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  margin-bottom: 24px;
}
.room-amenities-acm .room-info-left-side .boxed-text {
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid #C09951;
  display: inline-block;
  padding: 6px 10px;
}
.room-amenities-acm .room-info-left-side .description {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-amenities-acm .room-info-left-side {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .room-amenities-acm .room-info-left-side {
    width: 100%;
    padding-inline: 10px;
    text-align: left;
  }
}
.room-amenities-acm .room-right-side {
  width: 45%;
  display: block;
  justify-content: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-amenities-acm .room-right-side {
    width: 87%;
    display: block;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 767px) {
  .room-amenities-acm .room-right-side {
    width: 100%;
    display: block;
    margin: 20px auto;
    padding-inline: 10px;
  }
}
.room-amenities-acm .room-right-side h4 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.room-amenities-acm .room-right-side .room-side-amenities-info {
  background: #F3E4CB;
  padding: 32px 24px;
  max-width: 416px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-amenities-acm .room-right-side .room-side-amenities-info {
    max-width: initial;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-amenities-acm .room-right-side .room-side-amenities-info {
    max-width: 100%;
  }
}
.room-amenities-acm .room-right-side .amenities li {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.room-amenities-acm .room-right-side .amenities li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  background: #222222;
  border-radius: 100%;
}
.room-amenities-acm .room-right-side .amenities li:hover:before {
  background-color: #C09951;
}
.room-amenities-acm .room-right-side .room-see-more-btn {
  background: #48633D;
  width: 416px;
  height: 50px;
  color: white;
  text-transform: uppercase;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-amenities-acm .room-right-side .room-see-more-btn {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-amenities-acm .room-right-side .room-see-more-btn {
    width: 100%;
  }
}
.room-amenities-acm .room-right-side .room-see-more-btn:hover {
  background-color: #C09951;
  color: #222222;
  transition: 350ms ease-in-out;
}
.room-amenities-acm .rooms-info {
  display: block;
}

.two-column-acm .content-wrapper {
  max-width: 1150px;
  margin: 96px auto 77px auto;
  text-align: left;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 0 3rem;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .two-column-acm .content-wrapper {
    padding: 0 28px;
    width: 100%;
    flex-direction: column;
    margin: 40px auto 38px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .two-column-acm .content-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
.two-column-acm .content-wrapper .header-container {
  width: 58%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .two-column-acm .content-wrapper .header-container {
    width: 100%;
  }
}
.two-column-acm .content-wrapper .header-container .header {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .two-column-acm .content-wrapper .header-container .header {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .two-column-acm .content-wrapper .header-container .header {
    width: 100%;
    margin-bottom: 24px;
  }
}
.two-column-acm .content-wrapper .header-container .button-container {
  display: flex;
  gap: 30px;
  margin-top: 27px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .two-column-acm .content-wrapper .header-container .button-container {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 24px;
  }
}
.two-column-acm .content-wrapper .header-container .button-container .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
}
.two-column-acm .content-wrapper .header-container .button-container .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.two-column-acm .content-wrapper .content {
  width: 50%;
  margin-left: 60px;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: left;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .two-column-acm .content-wrapper .content {
    width: 100%;
    margin-left: 0px;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .two-column-acm .content-wrapper .content {
    width: 100%;
    margin-left: 0px;
    text-align: center;
  }
}

.one-column-acm.margin-half .content-wrapper {
  margin: 50px auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .one-column-acm.margin-half .content-wrapper {
    margin: 20px auto 28px auto;
  }
}
.one-column-acm .content-wrapper {
  max-width: 892px;
  margin: 103px auto 100px auto;
  text-align: left;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 0 3rem;
  flex-direction: column;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content-wrapper {
    width: 100%;
    flex-direction: column;
    margin: 40px auto 56px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .one-column-acm .content-wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
}
.one-column-acm .content-wrapper.thick-column {
  max-width: 1200px;
}
.one-column-acm .content-wrapper .header {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  text-align: center;
  margin-bottom: 29px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content-wrapper .header {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
    margin-bottom: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .one-column-acm .content-wrapper .header {
    width: 100%;
    margin-bottom: 22px;
  }
}
.one-column-acm .content-wrapper .content {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .one-column-acm .content-wrapper .content {
    width: 100%;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .one-column-acm .content-wrapper .content {
    width: 100%;
    margin-left: 0px;
  }
}
.one-column-acm.header-only .header {
  margin-bottom: 0;
}

.accordions-acm .header {
  font-family: "Museo Sans", sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  text-align: center;
  padding: 70px 30px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .header {
    padding: 43px 40px 48px 40px;
    font-size: 22px;
    font-style: normal;
    line-height: 28px;
    letter-spacing: 0.44px;
  }
}
.accordions-acm .accordions {
  color: #222222;
  mix-blend-mode: multiply;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.accordions-acm .accordions .faq-holder {
  max-width: 1124px;
  margin: 83px auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .accordions .faq-holder {
    margin: 40px auto 100px auto;
  }
}
.accordions-acm .accordions .faq-section-item {
  padding: 0 42px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .accordions .faq-section-item {
    padding: 0 28px;
  }
}
.accordions-acm .accordions .faq-section-item:not(:first-child) {
  padding-top: 18px;
}
.accordions-acm .accordions .faq-section-item .faq-section-question {
  position: relative;
  cursor: pointer;
  padding: 20px 0 35px 59px;
  margin-bottom: 0;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  margin: auto;
  color: #48633D;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .accordions .faq-section-item .faq-section-question {
    font-size: 14px;
    padding: 20px 0 20px 59px;
  }
}
.accordions-acm .accordions .border {
  border-bottom: 1px solid #D9D9D9;
}
.accordions-acm .accordions .faq-section-question .icon {
  position: absolute;
  left: 0;
  top: 30px;
  height: 48px;
  width: 48px;
  transform: translateY(-50%);
  transition: 350ms ease-in-out;
  bottom: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .accordions .faq-section-question .icon {
    height: 32px;
    width: 32px;
    top: 34px;
  }
}
.accordions-acm .accordions .faq-section-item.active .faq-section-question .icon {
  transform: translateY(-50%) rotate(180deg);
}
.accordions-acm .accordions .faq-section-item .faq-section-answer {
  display: none;
  overflow: hidden;
  padding: 0 0 32px 59px;
  margin: auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .accordions-acm .accordions .faq-section-item .faq-section-answer {
    padding: 0 0 26px 59px;
  }
}
.accordions-acm .accordions .descr p {
  color: #222222;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.accordions-acm .accordions .faq-section-item .faq-section-answer .descr {
  overflow: hidden;
}
.accordions-acm .accordions .carousel-section-item .carousel-section-answer ol,
.accordions-acm .accordions ul {
  list-style: initial;
}
.accordions-acm .accordions .carousel-section-item .carousel-section-answer ol,
.accordions-acm .accordions ol {
  list-style: decimal;
}
.accordions-acm .accordions .carousel-section-item .carousel-section-answer p,
.accordions-acm .accordions em {
  font-style: italic;
  /* Italics for list items */
}

.property-search-slider.second {
  background-color: #F3E4CB;
  overflow: unset;
  margin: 150px 0;
  padding: 75px 0 67px 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .property-search-slider.second {
    margin: 120px 0 40px 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second {
    margin: 82px 0 40px 0;
  }
}
.property-search-slider.second .primary-font-extra-bold {
  margin-top: -116px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .property-search-slider.second .primary-font-extra-bold {
    margin-top: -160px;
  }
}
@media only screen and (max-width: 1023px) {
  .property-search-slider.second .primary-font-extra-bold {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "MuseoSansCondensed", sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 57px;
    text-transform: uppercase;
    padding-bottom: 38px;
    text-align: center;
  }
}
.property-search-slider.second .special-slider {
  justify-content: center;
  flex-direction: column;
}
.property-search-slider.second .special-slider .slideshow-event {
  width: 100%;
}
.property-search-slider.second .special-slider .slideshow-event .slide {
  width: 566px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .slideshow-event .slide {
    width: 100%;
  }
}
.property-search-slider.second .special-slider .slideshow-event .slide:after {
  left: 28px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .slideshow-event .slide:after {
    content: unset;
  }
}
.property-search-slider.second .special-slider .slideshow-event .slide .thumbnail {
  width: 566px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .slideshow-event .slide .thumbnail {
    width: 100%;
  }
}
.property-search-slider.second .special-slider .slideshow-event .slide.category-hide {
  display: none;
}
.property-search-slider.second .special-slider .slideshow-event .slide.filter-hide {
  display: none;
}
.property-search-slider.second .special-slider .slideshow-event .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 1;
}
.property-search-slider.second .special-slider .search-container {
  max-width: 1440px;
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 0 26px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .search-container {
    padding: 0 16px;
  }
}
.property-search-slider.second .special-slider .search-container #destination-search {
  max-width: 808px;
}
.property-search-slider.second .special-slider .search-container #destination-search .subtitle {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap {
  margin-bottom: 46px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap {
    margin-bottom: 11px;
  }
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap:after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  text-indent: -9999px;
  background: url(../images/magnifying-glass.svg) no-repeat;
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap input#search-your-destination {
  font-family: "Museo Sans", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 32px 10px 0;
  width: 100%;
  max-width: 808px;
  border-bottom: 1px solid #222222;
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap #search-your-destination::-moz-placeholder {
  color: black;
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap #search-your-destination::placeholder {
  color: black;
}
.property-search-slider.second .special-slider .search-container #destination-search .search-input-wrap .search-icon {
  position: relative;
  top: 8px;
  left: -32px;
}
.property-search-slider.second .special-slider .search-container .buttons-container {
  margin-bottom: 34px;
  display: flex;
  justify-content: space-between;
  max-width: 1112px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .special-slider .search-container .buttons-container {
    display: none;
  }
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side {
  display: flex;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side label {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 15px;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group {
  gap: 34px;
  display: flex;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #48633D;
  opacity: 1;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button:hover:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button.active {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .special-slider .search-container .buttons-container .left-side .button-group .category-button.active:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .slideshow {
  min-height: 545px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .property-search-slider.second .slideshow {
    overflow: hidden;
  }
}
.property-search-slider.second .slideshow .slide .sub-title {
  color: #222222;
}
.property-search-slider.second .slider-button-container {
  max-width: 1440px;
  margin: auto;
  display: flex;
}
.property-search-slider.second .slider-button-container .slider-button-parent {
  width: 100%;
  display: flex;
  justify-content: end;
  max-width: 1156px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .slider-button-container .slider-button-parent {
    justify-content: center;
  }
}
.property-search-slider.second .slider-button-container .slider-button {
  margin: initial;
  padding-right: 16px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .slider-button-container .slider-button {
    padding: 0;
    top: 0px;
  }
}
.property-search-slider.second .black-link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.property-search-slider.second .black-link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #48633D;
  opacity: 1;
}
.property-search-slider.second .black-link:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .black-link:hover:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}
.property-search-slider.second .black-link.mobile-only {
  display: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .property-search-slider.second .black-link.mobile-only {
    display: block;
    margin: 26px auto 0 auto;
  }
}

#lightbox-topbanner {
  display: none;
  position: fixed;
  overflow-y: auto;
  max-height: 100vh;
}
#lightbox-topbanner.lightbox-visible {
  display: block;
  z-index: 101;
  top: 150px;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner.lightbox-visible {
    top: 0;
  }
}
#lightbox-topbanner .container.center-column {
  max-width: 738px;
  padding: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .container.center-column {
    padding: 23px 28px;
  }
}
#lightbox-topbanner .image-block {
  background-color: #FFFFFF;
  max-height: initial;
  padding: 0;
  margin-bottom: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block {
    flex-direction: column;
  }
}
#lightbox-topbanner .image-block:after {
  left: 18px;
  width: calc(100% - 36px);
  height: calc(100% + 30px);
  top: -15px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block:after {
    height: calc(100% - 30px);
    top: 15px;
  }
}
#lightbox-topbanner .image-block .thumbnail {
  max-width: 358px;
  left: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .thumbnail {
    max-width: initial;
    width: 100%;
  }
}
#lightbox-topbanner .image-block .thumbnail img {
  max-height: initial;
  width: 100%;
  max-width: 358px;
  position: absolute;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .thumbnail img {
    position: relative;
    max-width: initial;
    max-height: 315px;
  }
}
#lightbox-topbanner .image-block span.lightbox-topbanner-close {
  align-self: end;
  right: 38px;
  position: relative;
  cursor: pointer;
  transition: 350ms ease-in-out;
  opacity: 1;
  /* Tablet Landscape */
}
#lightbox-topbanner .image-block span.lightbox-topbanner-close:hover {
  opacity: 0.8;
  transition: 350ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block span.lightbox-topbanner-close {
    position: absolute;
    top: -10px;
    right: -6px;
    background-color: #FFFFFF;
    padding: 12px 16px;
    border-radius: 50%;
  }
  #lightbox-topbanner .image-block span.lightbox-topbanner-close:hover {
    background-color: #C09951;
    opacity: 1;
    transition: 350ms ease-in-out;
  }
  #lightbox-topbanner .image-block span.lightbox-topbanner-close svg {
    position: relative;
    top: 5px;
  }
}
#lightbox-topbanner .image-block .right {
  padding: 20px 0 52px 30px;
  width: initial;
  text-align: center;
  gap: initial;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .right {
    padding: 20px 30px 52px 30px;
    position: initial;
    margin: 0;
  }
}
#lightbox-topbanner .image-block .right .subtitle {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
#lightbox-topbanner .image-block .right h2 {
  margin-bottom: 11px;
  color: #48633D;
  width: 90%;
  text-transform: uppercase;
  padding: 0 30px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .right h2 {
    width: 100%;
    padding: 0 23px;
  }
}
#lightbox-topbanner .image-block .right .buttons-container {
  display: flex;
  justify-content: center;
  gap: 44px;
  max-width: 400px;
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .right .buttons-container {
    width: 100%;
    max-width: initial;
  }
}
#lightbox-topbanner .image-block .right .buttons-container .link {
  align-self: center;
}
#lightbox-topbanner .image-block .right p {
  margin-bottom: 50px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #lightbox-topbanner .image-block .right p {
    max-width: initial;
    width: 100%;
  }
}

#lightbox-topbanner[style*="display: block"] {
  opacity: 1;
}

.gray-wall-visible {
  overflow: hidden;
}

.gray-wall {
  display: none;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #222222;
  overflow: hidden;
  position: fixed;
  z-index: 100;
}
.gray-wall-visible .gray-wall {
  display: block;
}

.alert-bar {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #000000;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar {
    height: 120px;
  }
}
.alert-bar.visible {
  display: block;
}
.alert-bar.white {
  background-color: #FFFFFF;
}
.alert-bar.white .content {
  height: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar.white .content {
    padding: 16px 32px;
  }
}
.alert-bar.white .content .descr {
  color: #222222;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar.white .content .descr {
    margin-bottom: 12px;
  }
}
.alert-bar.white button {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar.white button {
    top: calc(50% - 8px);
    right: 16px;
  }
}
.alert-bar.white button svg {
  position: relative;
  top: 4px;
  left: 4px;
}
.alert-bar.white button:hover svg path {
  fill: #222222;
  transition: 350ms ease-in-out;
}
.alert-bar.white .close:before,
.alert-bar.white .close:after {
  content: none;
}
.alert-bar .content {
  padding: 10px 30px;
  letter-spacing: 0.02em;
  text-align: center;
  align-content: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar .content {
    padding: 18px 40px;
    font-size: 12px;
    flex-direction: column;
  }
}
.alert-bar .content .descr {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #FFFFFF;
  justify-content: center;
  display: flex;
  align-items: center;
  padding-right: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar .content .descr {
    padding-right: 0;
    margin-bottom: 16px;
  }
}
.alert-bar h2 {
  width: 90%;
  font-size: 16px;
  margin-bottom: 5px;
}
.alert-bar .link {
  color: inherit;
  text-transform: uppercase;
}
.alert-bar .link:hover {
  text-decoration: underline;
  color: #48633D;
  transition: 350ms ease-in-out;
}
.alert-bar .button {
  margin-right: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar .button {
    margin-right: 0;
  }
}
.alert-bar .close {
  position: relative;
  right: 10px;
  top: 0;
  text-indent: -1000px;
  overflow: hidden;
  max-width: 28px;
  width: 100%;
  height: 28px;
  display: flex;
  z-index: 2;
  background-color: #222222;
  border-radius: 50%;
  transition: 350ms ease-in-out;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .alert-bar .close {
    position: absolute;
    right: 6px;
    top: 6px;
  }
}
.alert-bar .close:after, .alert-bar .close:before {
  content: "";
  position: relative;
  top: 50%;
  left: 50%;
  background: #FFFFFF;
}
.alert-bar .close:after {
  width: 20px;
  height: 1px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.alert-bar .close:before {
  width: 1px;
  height: 20px;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.alert-bar .close:hover {
  background-color: #C09951;
  transition: 350ms ease-in-out;
}
.alert-bar .close:hover:before, .alert-bar .close:hover:after {
  background: #222222;
}

.with-alert-bar #header {
  margin-top: 48px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .with-alert-bar #header {
    margin-top: 120px;
  }
}
.with-alert-bar.gray-wall-visible .alert-bar {
  display: none;
}

.contact-layout {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 74px;
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 3rem;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .contact-layout {
    margin: 40px auto;
    gap: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  .contact-layout {
    flex-direction: column;
  }
}
.contact-layout [id*=form_form_] fieldset[id] h2, .contact-layout .form fieldset[id] h2 {
  width: initial;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .contact-layout [id*=form_form_] fieldset[id] h2, .contact-layout .form fieldset[id] h2 {
    text-align: left;
    width: 100%;
  }
}
.contact-layout [id*=form_form_] fieldset[id] .form-builder-group, .contact-layout .form fieldset[id] .form-builder-group {
  width: initial;
  margin: 0;
}
.contact-layout [id*=form_form_] fieldset[id], .contact-layout .form fieldset[id] {
  flex-direction: column;
}
.contact-layout p {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.contact-layout .left-side,
.contact-layout .right-side {
  flex: 1;
  max-width: 50%;
  box-sizing: border-box;
  z-index: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .contact-layout .left-side,
  .contact-layout .right-side {
    width: 100%;
    max-width: initial;
  }
}
.contact-layout .left-side .hotel-location-map {
  margin-top: 20px;
}
.contact-layout .left-side h2 {
  margin-bottom: 30px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .contact-layout .left-side h2 {
    margin-bottom: 22px;
  }
}

#header .main-menu .menu.level-1 > li .parent:first-child() {
  margin-left: 0;
  padding-left: 0;
}

@media only screen and (max-width: 767px) {
  html.hamburger-navigation-visible {
    overflow: hidden;
  }
}
/* Tablet Landscape */
#hamburger-navigation {
  display: none;
  position: fixed;
  right: -100%;
  top: 0;
  padding-top: 130px;
  height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #222222;
  transition: right 200ms, visibility 200ms;
  text-align: center;
  z-index: 60;
  visibility: hidden;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media (max-device-width: 1200px) {
  #hamburger-navigation {
    display: block;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  right: 0;
  visibility: visible;
  display: block;
}
#hamburger-navigation .top-menu {
  z-index: 4;
  position: relative;
  top: auto;
  right: auto;
  width: 90%;
  margin: 0 auto;
  /* Tablet Landscape */
}
@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;
  text-decoration: none;
}
#hamburger-navigation .top-menu a:hover, #hamburger-navigation .top-menu a.active {
  color: #222222;
}
#hamburger-navigation .main-menu {
  position: relative;
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
  justify-content: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu {
    max-width: 90%;
  }
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
  background-color: #222222;
}
#hamburger-navigation .main-menu .menu a {
  display: block;
  padding: 4px 32px;
}
#hamburger-navigation .main-menu .parent > a {
  padding: 0;
  margin: 4px 32px;
}
#hamburger-navigation .main-menu .menu.level-1 {
  padding-top: 25px;
  text-align: left;
  overflow: hidden;
  width: 100%;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a {
  color: #FFFFFF;
  font-family: "Museo Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-decoration: none;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a:hover, #hamburger-navigation .main-menu .menu.level-1 > li > a.active {
  color: #C09951;
}
#hamburger-navigation .main-menu .menu.level-1 > li > .plus {
  top: 4px;
  margin-left: 50px;
}
#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 {
  color: #FFFFFF;
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-decoration: none;
  margin-left: 30px;
}
#hamburger-navigation .main-menu .menu.submenu a:hover, #hamburger-navigation .main-menu .menu.submenu a.active {
  color: #C09951;
}
#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: 10px;
  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);
  top: 0;
  height: 12px;
  width: 12px;
  border-top: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(225deg);
  right: 0;
  top: -1px;
  cursor: pointer;
}
#hamburger-navigation .main-menu .plus .horizontal {
  width: 8px;
  height: 2px;
  margin-left: 12px;
  margin-top: 15px;
}
#hamburger-navigation .main-menu .plus .vertical {
  margin-left: 15px;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(45deg);
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
}

@media only screen and (max-width: 767px) {
  html.booking-visible {
    overflow: hidden;
  }
}
/* Tablet Landscape */
#booking {
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #booking {
    position: fixed;
    top: 0;
    left: -101%;
    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;
  }
  #booking .column {
    margin-right: 0;
    width: 100%;
  }
  #booking .column.adults, #booking .column.children {
    width: 48%;
  }
  #booking .column.children {
    margin-left: 4%;
  }
  #booking input[type=text], #booking input[type=date], #booking select, #booking .input-overlay {
    width: 100%;
  }
  #booking .input-overlay {
    display: block;
  }
  #booking #booking-dates {
    width: 100%;
  }
  #booking input[type=submit] {
    margin-top: 20px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #booking {
    display: none;
  }
}
#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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #booking .close {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #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;
  left: -20px;
  bottom: -282px;
  z-index: 7;
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) {
  .booking-datepicker-under #booking-datepicker {
    bottom: auto;
  }
}
#booking-datepicker.visible {
  display: block;
}
.booking-visible #booking-datepicker {
  display: block;
  position: relative;
  bottom: auto;
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease-in-out;
  left: 0;
}
.booking-visible #booking-datepicker.visible {
  max-height: 500px;
}
#booking-datepicker .arrival-departure-status {
  overflow: hidden;
  white-space: nowrap;
  background: #194459;
  text-align: center;
  /* Tablet Landscape */
}
@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 "InsigniaProRoman", 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;
  /* Tablet Landscape */
}
#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;
  /* Tablet Landscape */
}
@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;
  top: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-prev {
    left: 26px;
  }
}
#booking-datepicker .ui-datepicker-next {
  right: 20px;
  top: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #booking-datepicker .ui-datepicker-next {
    right: 26px;
  }
}
#booking-datepicker .ui-datepicker-calendar {
  /* Tablet Landscape */
}
@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: #222222;
  font-size: 7px;
  line-height: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
}
#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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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%;
  /* Tablet Landscape */
}
@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 "InsigniaProRoman", sans-serif;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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: #54baba;
  border-bottom-color: #54baba;
  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: "Museo Sans", sans-serif;
  font-weight: normal;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.promos-position-a .promo h3 a {
  color: inherit;
  text-decoration: none;
}
.promos-position-a .promo p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 20px;
}
.promos-position-a .promo .price {
  font: 15px/32px "Museo Sans", sans-serif;
  margin-bottom: 20px;
}
.promos-position-a .promo .price strong {
  font-weight: bold;
  font-size: 20px;
}
.promos-position-a .promo .promo-button {
  display: block;
  font-size: 18px;
  margin-top: 14px;
  line-height: 24px;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}
.promos-position-a .promo .promo-button:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .promos-position-a .promo {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .promos-position-a .promo {
    width: 83%;
  }
}
.promos-position-a .slideshow-pagination {
  margin-top: 20px;
  text-align: center;
  font-size: 0;
  /* Tablet Landscape */
}
@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: #194459;
  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;
}

.hamburger-navigation-visible #merchandising-tile,
.hamburger-navigation-visible .merchandising-open-btn,
.gray-wall-visible #merchandising-tile,
.gray-wall-visible .merchandising-open-btn {
  z-index: 59;
}

#merchandising-tile {
  position: fixed;
  bottom: 3%;
  right: -600px;
  width: 525px;
  z-index: 9000;
  background: transparent;
  color: #FFFFFF;
  height: 202px;
  transition: right 1s, bottom 1s;
  z-index: 100;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #merchandising-tile {
    height: 206px;
  }
}
@media (prefers-reduced-motion) {
  #merchandising-tile {
    transition: none;
  }
}
.admin .preview-item #merchandising-tile {
  position: relative;
  right: auto;
  bottom: auto;
  transform: none;
  display: block !important;
}
#merchandising-tile .img-overlay {
  width: 525px;
  height: 202px;
  background-size: cover !important;
  background-position: center !important;
  background: no-repeat;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  z-index: -1;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #merchandising-tile .img-overlay {
    height: 206px;
  }
}
@media only screen and (max-width: 1023px) {
  #merchandising-tile .img-overlay {
    bottom: 0;
    transform: none;
  }
}
#merchandising-tile .img-overlay .color-overlay {
  background-color: rgba(34, 34, 34, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#merchandising-tile .promo-name {
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  line-height: 24px; /* 120% */
  letter-spacing: 1px;
  padding: 0 24px 10px 24px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "InsigniaProRoman", sans-serif;
}
#merchandising-tile .promo-text {
  font-size: 15px;
  line-height: 1.5;
  padding: 0 24px 20px 24px;
  text-align: center;
  font-family: "Museo Sans", sans-serif;
  color: #FFFFFF;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #merchandising-tile .promo-text {
    padding: 0 24px 16px 24px;
  }
}
#merchandising-tile .promo-content {
  text-align: center;
  padding: 0 40px 0 0;
  height: 202px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #merchandising-tile .promo-content {
    height: 206px;
  }
}
.admin .preview-item #merchandising-tile .promo-content {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  padding-right: 0;
}
#merchandising-tile .promo-content .button {
  text-transform: uppercase;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  box-shadow: none;
  box-sizing: border-box;
  vertical-align: top;
  box-sizing: border-box;
}
.admin .preview-item #merchandising-tile .promo-content .button {
  box-shadow: none;
  text-shadow: none;
}
#merchandising-tile.merchandising-tile-active {
  right: 0;
  bottom: 20%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #merchandising-tile.merchandising-tile-active {
    width: 100%;
    bottom: 3%;
  }
  #merchandising-tile.merchandising-tile-active .img-overlay {
    width: 100%;
  }
}

.merchandising-open-btn {
  width: 40px;
  height: 202px;
  background-color: #C09951;
  position: fixed;
  bottom: 3%;
  right: 0;
  z-index: 110;
  float: right;
  transition: bottom 1s;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .merchandising-open-btn {
    height: 206px;
  }
}
@media (prefers-reduced-motion) {
  .merchandising-open-btn {
    transition: none;
  }
}
.merchandising-open-btn.active {
  bottom: 20%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .merchandising-open-btn.active {
    bottom: 3%;
  }
}
.admin .preview-item .merchandising-open-btn {
  display: none;
}
.merchandising-open-btn .arrow-rotate {
  position: absolute;
  top: calc(50% - 12px);
  left: 50%;
  width: 24px;
  height: 24px;
  left: 8px;
  transform: rotate(180deg);
  transition: transform 0.5s;
}
@media (prefers-reduced-motion) {
  .merchandising-open-btn .arrow-rotate {
    transition: none;
  }
}
.merchandising-open-btn .active-rotate {
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

#events {
  position: relative;
  overflow: hidden;
  text-align: center;
  top: 80px;
  padding-block: 50px;
}
#events .slideshow {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}
#events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .events-slider {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .events-slider {
    display: grid;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider {
    display: grid;
    margin-bottom: 50px;
  }
}
#events .events-slider .logo-thumbnail {
  width: 21%;
  text-align: center;
  line-height: 36px;
  left: 30px;
  top: 120px;
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#events .events-slider .logo-thumbnail .section-title {
  text-transform: uppercase;
  font: 300 32px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 36px;
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail {
    width: 22%;
    top: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail {
    width: 22%;
    top: 50px;
    left: 15%;
  }
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .section-title {
    width: 70%;
    position: relative;
    text-align: start;
    left: 27%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail .section-title {
    width: 70%;
    position: relative;
    text-align: start;
    left: 27%;
  }
}
#events .events-slider .logo-thumbnail img {
  width: 155px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail img {
    display: none;
  }
}
#events .events-slider .logo-thumbnail h1 {
  font-size: 36px;
  text-transform: uppercase;
}
#events .events-slider .logo-thumbnail a {
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#events .events-slider .logo-thumbnail a:after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #C09951;
  opacity: 1;
  bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail a {
    position: relative;
    bottom: 75px;
  }
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail a {
    position: relative;
    bottom: 75px;
  }
}
#events .events-slider .logo-thumbnail .slider-button {
  position: relative;
  top: 30px;
  display: block;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .slider-button {
    top: 250% !important;
    left: 5%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail .slider-button {
    top: 230% !important;
  }
}
#events .events-slider .logo-thumbnail .slider-button #numberSlides {
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail .slider-button #numberSlides {
    bottom: 60px;
    left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .slider-button #numberSlides {
    bottom: 110px;
  }
}
#events .events-slider .logo-thumbnail .slideshow-button {
  text-indent: -100em;
  cursor: pointer;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .slideshow-button {
    display: block;
  }
}
#events .events-slider .logo-thumbnail .slideshow-button.previous {
  background: url("../images/arrow-L.svg") 0 0 no-repeat;
  position: relative;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  overflow: hidden;
  right: 25px;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  #events .events-slider .logo-thumbnail .slideshow-button.previous {
    right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail .slideshow-button.previous {
    left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .slideshow-button.previous {
    left: 35%;
    z-index: 101;
  }
}
#events .events-slider .logo-thumbnail .slideshow-button.next {
  background: url("../images/arrow-R.svg") 0 0 no-repeat;
  position: relative;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  overflow: hidden;
  right: 25px;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  #events .events-slider .logo-thumbnail .slideshow-button.next {
    left: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .events-slider .logo-thumbnail .slideshow-button.next {
    left: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #events .events-slider .logo-thumbnail .slideshow-button.next {
    left: 60%;
    bottom: 50px;
    z-index: 101;
  }
}
#events .events-slider .slideshow-event {
  width: 75%;
}
#events .event {
  position: relative;
  display: inline-block;
  width: calc(45.33% - 10px);
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
  margin: 0 10px;
  padding-block: 30px;
  padding-inline: 20px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#events .event:after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 8px;
  left: 40px;
  top: 0px;
  height: 100%;
  width: calc(100% - 80px);
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #events .event {
    width: 100vw;
  }
}
@media only screen and (max-width: 767px) {
  #events .event {
    width: 100vw;
    margin: 0;
  }
}
#events .event .thumbnail {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  /* Tablet Landscape */
}
@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: #54baba;
  border-bottom-color: #54baba;
  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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .event .date {
    margin: 20px 0;
  }
}
#events .event .date a {
  color: inherit;
  text-decoration: none;
  position: relative;
  z-index: 99;
  color: #27647F;
}
#events .event .date a:hover {
  text-decoration: underline;
  border-bottom: 1px solid #27647F;
}
#events .event h3 {
  font: 200 24px/1.33 "Museo Sans", sans-serif;
  color: #222222;
  margin-bottom: 24px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .event h3 {
    font-size: 20px;
  }
}
#events .event p {
  font-size: 15px;
  line-height: 1.33;
  color: #27647F;
  padding-block: 25px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #events .event p {
    font-size: 14px;
  }
}
#events .event .copy {
  padding: 0 20px;
  /* Tablet Landscape */
}
@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%);
}

.rooms-slideshow {
  position: relative;
  padding: 7vh 0 0;
  overflow: hidden;
  z-index: 10;
  margin-top: 5vh;
  margin-bottom: 0vh;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow {
    padding: 7vh 0 0px;
    margin-top: 0vh;
  }
}
.rooms-slideshow.starred .rooms-heading.primary-font-extra-bold {
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  .rooms-slideshow.starred .rooms-heading.primary-font-extra-bold {
    top: 40px;
  }
}
.rooms-slideshow.general-slideshow {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow.general-slideshow {
    padding: 0;
    margin: 40px 0 0 0;
  }
}
.rooms-slideshow .button-controls {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  bottom: 65px;
  align-items: center;
  gap: 20px;
}
.rooms-slideshow .button-controls .img-slide-num {
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #194459;
  text-wrap: nowrap;
}
.rooms-slideshow .rooms-heading {
  opacity: 1;
  color: #27647F;
  color: #C09951;
  font-style: normal;
  text-align: left;
  position: absolute;
  text-transform: uppercase;
  z-index: 50;
  left: 50px;
  bottom: 80%;
  top: 45px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .rooms-heading {
    top: auto;
    left: auto;
    bottom: auto;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-bottom: -24px;
    font-family: "MuseoSansCondensed", sans-serif;
    font-size: 58px;
    font-weight: 250;
    line-height: 57px;
  }
}
.rooms-slideshow h2 {
  font: 200 36px/1.2 "Museo Sans", sans-serif;
  margin-bottom: 30px;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}
.rooms-slideshow .slideshow {
  width: 100% !important;
  margin: 0 auto;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-slideshow .slideshow {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow .slideshow {
    width: calc(100% - 60px);
  }
}
.rooms-slideshow .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
  /* Tablet Landscape */
}
.rooms-slideshow .slide {
  position: relative;
  display: flex;
  vertical-align: top;
  white-space: normal;
  text-align: start;
  color: #525252;
  font-size: 16px;
  line-height: 26px;
  align-items: center;
  padding-inline: 5.5%;
  padding-block: 3rem;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide {
    flex-direction: column-reverse;
    padding-block: 3rem;
    padding-inline: 3.5%;
  }
}
.rooms-slideshow .slide::after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 149px;
  top: 0px;
  height: 100%;
  width: calc(94% - 143px);
  z-index: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide::after {
    right: 30px;
    top: 0px;
    width: calc(100% - 60px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-slideshow .slide::after {
    right: 50px;
    top: 0px;
    width: calc(100% - 98px);
  }
}
.rooms-slideshow .slide .slide-thumbnail {
  overflow: hidden;
  width: 51%;
  right: 10px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide .slide-thumbnail {
    width: 100%;
    right: auto;
  }
}
.rooms-slideshow .slide .slide-thumbnail img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow .slide .slide-thumbnail img {
    width: 100%;
    height: auto;
  }
}
.rooms-slideshow .slide .side-content {
  padding-inline: 4% 4%;
  width: 46%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow .slide .side-content {
    margin-top: 5%;
    width: 100%;
  }
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide .side-content {
    margin-top: 5%;
    width: 100%;
    padding-inline: 9% 9%;
  }
}
.rooms-slideshow .slide .side-content h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-bottom: 16px;
  color: #222222;
}
.rooms-slideshow .slide .side-content p {
  text-align: left;
  vertical-align: top;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  line-height: 24px;
  padding-bottom: 24px;
  color: #222222;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-slideshow .slide .side-content p {
    letter-spacing: 2px;
    line-height: 1.5;
    padding-bottom: 33px;
  }
}
.rooms-slideshow .slide .side-content nav {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 24px;
}
.rooms-slideshow .slide .side-content nav .room-book-now-btn {
  text-decoration: none;
  background: #27647f;
  font: 700 14px/1 "roboto";
  padding: 8px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.rooms-slideshow .slide .side-content nav .room-info-btn {
  position: relative;
  z-index: 20;
  zoom: 1;
  z-index: 2;
  overflow: hidden;
}
.rooms-slideshow .slide .side-content nav .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
}
.rooms-slideshow .slide .side-content nav .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.rooms-slideshow .slide .side-content nav .black-link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.rooms-slideshow .slide .side-content nav .black-link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #48633D;
  opacity: 1;
}
.rooms-slideshow .slide .side-content nav .black-link:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.rooms-slideshow .slide .side-content nav .black-link:hover:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}
.rooms-slideshow .slide .side-content.review-content {
  padding-inline: 3% 4%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide .side-content.review-content {
    padding-inline: 9% 9%;
  }
}
.rooms-slideshow .slide .side-content.review-content h3 {
  padding-bottom: 24px;
  color: #222222;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide .side-content.review-content h3 {
    padding-bottom: 16px;
  }
}
.rooms-slideshow .slide .side-content.review-content .review-author {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222222;
  padding-bottom: 16px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide .side-content.review-content .review-author {
    padding-bottom: 43px;
  }
}
.rooms-slideshow .slide .copy {
  margin-top: 25px;
}
.rooms-slideshow .slide .copy * {
  display: inline;
}
.rooms-slideshow .slide .name {
  margin-top: 25px;
  font-weight: 700;
}
.rooms-slideshow .slide.flip {
  flex-direction: row-reverse;
  justify-content: left;
  padding-inline: 4.5%;
  padding-block: 2rem 1rem;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide.flip {
    flex-direction: column-reverse;
    padding-inline: 3.5%;
  }
}
.rooms-slideshow .slide.flip .slide-thumbnail {
  width: 46%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .slide.flip .slide-thumbnail {
    width: 100%;
  }
}
.rooms-slideshow .slide.flip .slide-content {
  width: 47%;
}
.rooms-slideshow .current-slide-number {
  position: absolute;
  left: 48.7%;
  color: #194459;
}
.rooms-slideshow .current-slide-number .slideshow-pagination .swiper-pagination-bullet {
  color: #194459;
  font: 700 11px/1 "Montserrat";
  display: none;
}
.rooms-slideshow .current-slide-number .slideshow-pagination .swiper-pagination-bullet.active {
  display: block;
}
.rooms-slideshow .slideshow-button-text {
  border-bottom: 0;
  z-index: 10;
  transition: border-color 350ms ease-in-out;
  margin: 0 auto;
  text-align: center;
  display: block;
  position: relative;
  top: -60px;
  color: #194459;
  font: 700 11px/1 "Montserrat";
}
.rooms-slideshow .slideshow-button-text span {
  text-align: center;
  padding: 0 1px;
}
.rooms-slideshow .button-controls {
  position: absolute;
  left: calc(50% - 83px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 166px;
  margin: 0 auto;
  margin-bottom: -9px;
}
.rooms-slideshow .button-controls .img-slide-num {
  font: 300 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #194459;
  text-wrap: nowrap;
}
.rooms-slideshow .button-controls .slideshow-button {
  border-bottom: 0;
  border-left: 0;
  height: 15px;
  overflow: hidden;
  top: auto;
  width: 15px;
  z-index: 10;
  transition: border-color 350ms ease-in-out;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .button-controls .slideshow-button {
    position: relative;
    left: auto;
    top: auto;
  }
}
.rooms-slideshow .button-controls .slideshow-button:hover {
  border-color: #aaa;
}
.rooms-slideshow .button-controls .slideshow-button.previous {
  left: 46.5%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .button-controls .slideshow-button.previous {
    left: auto;
    right: auto;
  }
}
.rooms-slideshow .button-controls .slideshow-button.next {
  right: 47%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms-slideshow .button-controls .slideshow-button.next {
    left: auto;
    right: auto;
  }
}

.rooms-bg-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding-block-start: 130px;
  padding-block-end: 100px;
  background: #F3E4CB;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-bg-img {
    padding-block-start: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms-bg-img {
    padding-block-start: 80px;
  }
}
.rooms-bg-img .center-column {
  overflow-x: clip;
}

.room-info-btn {
  position: relative;
  pointer-events: all;
  z-index: 101;
  letter-spacing: 2px;
}

.room-book-now-btn {
  position: relative;
  pointer-events: all;
  z-index: 101;
  letter-spacing: 2px;
}

.top-bar-content {
  width: 54%;
  float: right;
  position: relative;
  bottom: 64px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .top-bar-content {
    width: 100%;
    display: flex;
    justify-content: center;
    top: -2rem;
    bottom: auto;
  }
}
.top-bar-content .section-title {
  padding: 0% 18% 0% 0%;
  font: 400 16px/1 "RobotoCondensed-Light; Regular";
  color: #FFFFFF;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: left;
  vertical-align: top;
  font: 400 16px/24px "Crimson Text", serif;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: #194459 !important;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .top-bar-content .section-title {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .top-bar-content .section-title {
    display: none;
  }
}
.top-bar-content .section-all-room-btn {
  float: right;
  position: relative;
  right: 18%;
  top: 25px;
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  transition: 350ms ease-in-out;
  /* Tablet Landscape */
}
.top-bar-content .section-all-room-btn:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.top-bar-content .section-all-room-btn:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  .top-bar-content .section-all-room-btn {
    float: none;
    top: auto;
    right: 0px;
  }
}
.top-bar-content .black-link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.top-bar-content .black-link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #48633D;
  opacity: 1;
}
.top-bar-content .black-link:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.top-bar-content .black-link:hover:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}

.bluebg.extract-element-from-content .rooms-bg-img {
  background-color: #27647F;
  background: url("../images/blue-bg.png") left top repeat;
  background-size: 60%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-bg-img {
    background-size: 233%;
  }
}
.bluebg.extract-element-from-content .top-bar-content .section-title {
  color: #FFFFFF !important;
}
.bluebg.extract-element-from-content .top-bar-content .section-all-room-btn {
  color: #FFFFFF !important;
}
.bluebg.extract-element-from-content .rooms-slideshow {
  top: auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-slideshow {
    padding-bottom: 3rem;
  }
}
.bluebg.extract-element-from-content .rooms-slideshow .slideshow {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-slideshow .slideshow {
    padding-bottom: 8rem;
  }
}
.bluebg.extract-element-from-content .rooms-slideshow .slide {
  padding-left: 0%;
  padding-block: 2%;
}
.bluebg.extract-element-from-content .rooms-slideshow .slide h3, .bluebg.extract-element-from-content .rooms-slideshow .slide p {
  color: #FFFFFF !important;
}
.bluebg.extract-element-from-content .rooms-slideshow .slide .room-info-btn {
  background: none;
  font: 600 12px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  padding-left: 0;
}
.bluebg.extract-element-from-content .rooms-slideshow .slide .room-info-btn:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.bluebg.extract-element-from-content .rooms-slideshow .slide .slide-thumbnail {
  width: 50%;
  right: -10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-slideshow .slide .slide-thumbnail {
    width: 100%;
    right: auto;
  }
}
.bluebg.extract-element-from-content .rooms-slideshow .slide::after {
  display: none;
}
.bluebg.extract-element-from-content .rooms-slideshow .slide .side-content {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-slideshow .slide .side-content {
    padding-left: 0;
  }
}
.bluebg.extract-element-from-content .rooms-slideshow .rooms-bg-img {
  padding-block: 20px;
}
.bluebg.extract-element-from-content .rooms-slideshow .button-controls {
  position: absolute;
  display: flex;
  justify-content: space-evenly;
  bottom: 58px;
  align-items: center;
  margin: 0 auto;
  left: 51.2%;
  gap: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .bluebg.extract-element-from-content .rooms-slideshow .button-controls {
    position: relative;
    left: auto;
  }
}
.bluebg.extract-element-from-content .rooms-slideshow .button-controls .arrow {
  background: #FFFFFF;
  height: 2px;
  width: 15px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
  top: 0px;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  bottom: 30px;
  align-items: center;
}
.bluebg.extract-element-from-content .rooms-slideshow .button-controls .img-slide-num {
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-wrap: nowrap;
  color: #FFFFFF;
}

/* 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: #194459;
  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: #194459;
}
.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 {
  gap: 46px;
  display: flex;
  flex-direction: column;
}
.rooms .categories-descr.single-categories .categories-page {
  display: none;
}
.rooms .categories-descr.single-categories .category-descr .category-content .single-image-text-n-header {
  padding: 0 0 15px 0;
}
.rooms .categories-descr .rooms-heading {
  line-height: initial;
  position: relative;
  top: -58px;
  padding-left: 56px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms .categories-descr .rooms-heading {
    top: -29px;
    left: auto;
    bottom: auto;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    position: relative;
    margin-bottom: 25px;
    padding-left: 0px;
    width: 100vw;
    overflow-x: hidden;
  }
}
.rooms .categories-descr h1 {
  font: 300 32px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 24px;
}
.rooms .categories-descr h2 {
  font: 300 24px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 24px;
  margin-top: 0px;
}
.rooms .categories-descr p {
  font: 300 16px/1 "Montserrat";
  letter-spacing: 0.4px;
  line-height: 24px;
}
.rooms .categories-descr .category-descr {
  display: none;
  margin-bottom: 146px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms .categories-descr .category-descr {
    margin-bottom: 50px;
  }
}
.rooms .categories-descr .category-descr:last-child {
  margin-bottom: 0;
}
.rooms .categories-descr .category-descr.active {
  display: block;
}
.rooms .categories-descr .category-descr:nth-child(odd) {
  background-color: #F3E4CB;
}
.rooms .categories-descr .category-descr:nth-child(even) {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .rooms .categories-descr .category-descr:nth-child(even) {
    margin-bottom: -40px;
  }
}
.rooms .categories-descr .category-descr .category-content {
  padding-bottom: 35px;
}
.rooms .categories-descr .category-descr .category-content .single-image-text-n-header {
  padding: 0 0 50px 0;
}
.rooms .categories-descr .category-descr .categories-wise-room {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  margin-top: 2%;
  margin-bottom: 4%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .categories-descr .category-descr .categories-wise-room {
    display: grid;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .categories-descr .category-descr .categories-wise-room {
    display: grid;
  }
}
.rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail {
  width: 50%;
  display: block;
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail {
    width: 100%;
  }
}
.rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail img {
  width: 100%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .categories-descr .category-descr .categories-wise-room .room-thumbnail img {
    width: 100%;
    height: 100%;
  }
}
.rooms .categories-descr .category-descr .categories-wise-room .description {
  width: 50%;
  padding-inline: 6%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms .categories-descr .category-descr .categories-wise-room .description {
    width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .rooms .categories-descr .category-descr .categories-wise-room .description {
    width: 100%;
  }
}
.rooms .categories-descr .category-descr .categories-wise-room .description .room-slideshow-book-now {
  padding-inline: 0px;
  justify-content: flex-start;
  z-index: 11 !important;
  position: relative;
}
.rooms .categories-descr .category-descr .categories-wise-room .description .room-slideshow-book-now a {
  font: 700 14px/1 "Montserrat";
  text-transform: uppercase;
  padding-block: 10px;
}
.rooms .categories-descr .category-descr .categories-wise-room .description .room-slideshow-book-now a:last-child {
  font: 400 14px/1 "Montserrat";
  text-decoration: none;
  margin-inline: 50px;
  color: #000000;
  display: inline-block;
}
.rooms .categories-descr .category-descr .categories-wise-room .description .room-slideshow-book-now a:last-child:after {
  content: "";
  position: relative;
  border: 1px solid #C09951;
  width: 100%;
  height: 100%;
  display: block;
}

.room .amenities {
  clear: both;
  margin: 30px 0;
}
.room .amenities .rooms-icon {
  display: 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%;
  /* Tablet Landscape */
}
@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: #194459;
}
@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: #194459;
}
@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: #194459;
  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: "InsigniaProRoman", 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: rgb(0, 0, 0);
  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: rgb(0, 0, 0);
  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;
}

.header:has(.rooms-header) {
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .header:has(.rooms-header) {
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .header:has(.rooms-header) {
    margin-bottom: 24px;
  }
}

.rooms-header,
.rooms-subheader {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-header,
  .rooms-subheader {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
  }
}

.rooms {
  position: relative;
  margin-top: 100px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms {
    margin-top: 29px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .rooms {
    margin-top: 29px;
  }
}
.rooms .hide {
  display: none !important;
}

.room-showcase {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  margin-top: 2%;
  margin-bottom: 4%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-showcase {
    display: grid;
    margin-top: 15%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-showcase {
    display: grid;
    margin-top: 15%;
  }
}
.room-showcase:after {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-showcase:after {
    height: 580px;
    left: 10px;
    bottom: auto;
    width: calc(100% - 24px);
  }
}
.room-showcase .thumbnail {
  width: 50%;
  display: block;
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-showcase .thumbnail {
    width: 100%;
    margin: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-showcase .thumbnail {
    width: 100%;
    margin: 0px;
  }
}
.room-showcase .thumbnail img {
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  .room-showcase .thumbnail img {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .room-showcase .thumbnail img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-showcase .thumbnail img {
    width: 100%;
    height: 100%;
  }
}
.room-showcase .description {
  width: 50%;
  padding-inline: 6%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-showcase .description {
    width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .room-showcase .description {
    width: 100%;
  }
}
.room-showcase .description .slideshow-book-now {
  padding-inline: 0px;
  justify-content: flex-start;
  z-index: 11 !important;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-showcase .description .slideshow-book-now {
    justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-showcase .description .slideshow-book-now {
    justify-content: center;
  }
}
.room-showcase .description .slideshow-book-now a {
  font: 700 14px/1 "Montserrat";
  text-transform: uppercase;
  padding-block: 10px;
}
.room-showcase .description .slideshow-book-now a:last-child {
  font: 400 14px/1 "Montserrat";
  text-decoration: none;
  margin-inline: 50px;
  color: #222222;
}
.room-showcase .description .slideshow-book-now a:last-child:after {
  content: "";
  position: relative;
  border: 1px solid #27647F;
  width: 100%;
  height: 100%;
  display: block;
}

.rooms-showcase:after {
  content: "";
  position: absolute;
  border: 1px solid #27647F;
  width: calc(100% - 100px);
  height: calc(100% - 50px);
  top: 50px;
  left: 49px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .rooms-showcase:after {
    width: calc(100% - 30px);
    height: calc(100% - 34px);
    top: 50px;
    left: 15px;
  }
}

.room-content {
  max-width: 1140px;
  margin: 0 auto;
  text-align: left;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-bottom: 4%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-content {
    display: grid;
    width: 100%;
    justify-content: start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-content {
    display: grid;
    width: 100%;
    justify-content: start;
  }
}
.room-content .room-left-content {
  width: 50%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.room-content .room-left-content h2 {
  font: 400 40px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 40px;
  color: #222222;
  text-transform: capitalize;
  padding-inline: 0 8%;
}
@media only screen and (max-width: 767px) {
  .room-content .room-left-content {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-content .room-left-content {
    width: 100%;
    text-align: center;
  }
}
.room-content .room-right-content {
  width: 50%;
  margin-left: 60px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-content .room-right-content {
    width: 100%;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .room-content .room-right-content {
    width: 100%;
    margin-left: 0px;
    text-align: center;
  }
}
.room-content .room-right-content p {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  line-height: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .room-content .room-right-content p {
    display: flex;
    justify-content: center;
  }
}
.room-content .room-right-content p a {
  background: none;
  color: #222222;
  font: 400 14px/1 "Montserrat";
}
.room-content .room-right-content p a:after {
  content: "";
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid #27647F;
}

.single-rooms-info {
  position: relative;
  display: flex;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-rooms-info {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .single-rooms-info {
    display: grid;
  }
}
.single-rooms-info .room-info-left-side {
  width: 55%;
  padding-inline: 50px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.single-rooms-info .room-info-left-side h1 {
  font: 300 32px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 36px;
  text-transform: uppercase;
}
.single-rooms-info .room-info-left-side h2 {
  font: 300 24px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 36px;
  text-transform: uppercase;
}
.single-rooms-info .room-info-left-side p {
  font: 300 16px/1 "Montserrat";
  letter-spacing: 0.4px;
  line-height: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-rooms-info .room-info-left-side {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-rooms-info .room-info-left-side {
    width: 100%;
    padding-inline: 10px;
    text-align: left;
  }
}
.single-rooms-info .room-right-side {
  width: 45%;
  display: grid;
  justify-content: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-rooms-info .room-right-side {
    width: 87%;
    display: block;
    margin: 20px auto;
  }
}
@media only screen and (max-width: 767px) {
  .single-rooms-info .room-right-side {
    width: 100%;
    display: block;
    margin: 20px auto;
    padding-inline: 10px;
  }
}
.single-rooms-info .room-right-side h4 {
  margin-left: 30px;
  font: 300 24px/1 "Montserrat";
  text-transform: uppercase;
  color: #222222;
  letter-spacing: 1px;
  line-height: 28px;
}
.single-rooms-info .room-right-side .room-side-amenities-info {
  background: #F6F6F6;
  padding-top: 38px;
}
.single-rooms-info .room-right-side .amenities li {
  font: 300 16px/1 "Montserrat";
  letter-spacing: 0.4px;
  line-height: 24px;
}
.single-rooms-info .room-right-side .room-see-more-btn {
  background: #27647f;
  width: 416px;
  height: 50px;
  color: white;
  letter-spacing: 2px;
  line-height: 12px;
  text-transform: uppercase;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-rooms-info .room-right-side .room-see-more-btn {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-rooms-info .room-right-side .room-see-more-btn {
    width: -webkit-fill-available;
  }
}
.single-rooms-info .rooms-info {
  display: block;
}

#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 "Museo Sans", sans-serif;
  margin: 40px 0;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#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;
  }
}
#home-gallery span.photo {
  /* Tablet Landscape */
}
@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 "Museo Sans", sans-serif;
  color: #fff;
  text-transform: uppercase;
  z-index: 2;
  /* Tablet Landscape */
}
#home-gallery span.photo .text a {
  margin-top: 6px;
  padding: 0 20px;
  /* Tablet Landscape */
}
#home-gallery .all-photos {
  display: none;
  /* Tablet Landscape */
}
@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 "Museo Sans", sans-serif;
  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: #54baba;
  border-bottom-color: #54baba;
  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 "InsigniaProRoman", 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 "InsigniaProRoman", sans-serif;
  text-align: left;
  color: #ffffff;
  /* Tablet Landscape */
}
@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: "InsigniaProRoman", 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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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.no-room-amenities .background {
  left: 450px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1.no-room-amenities .background {
    left: 0;
  }
}
.venue.template1.no-room-amenities .background .venue-thumb {
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1.no-room-amenities .background .venue-thumb {
    right: 0;
  }
}
.venue.template1.no-room-amenities .background .amenities-sliders {
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1.no-room-amenities .background .amenities-sliders {
    right: 0;
  }
}
.venue.template1.no-room-amenities .content {
  width: 450px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1.no-room-amenities .content {
    width: 100%;
  }
}
.venue.template1.no-room-amenities .buttons {
  left: 100%;
}
.venue.template1 .background {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 390px;
  /* Tablet Landscape */
}
@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;
  right: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: 1;
  overflow: hidden;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background .venue-thumb {
    right: 60px;
  }
}
.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 .venue-thumb img.placeholder-image {
  width: 50%;
  height: auto;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background .venue-thumb img.placeholder-image {
    left: calc(50% - 30px);
  }
}
.venue.template1 .background .amenities-sliders {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 60px);
  height: 100%;
  z-index: 2;
  overflow: hidden;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .background .amenities-sliders {
    right: 60px;
  }
}
.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;
  width: auto;
  white-space: nowrap;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons {
    position: static;
    margin-top: 10px;
  }
}
.venue.template1 .buttons a {
  display: inline-block;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .venue.template1 .buttons a {
    width: auto;
  }
}
.venue.template1 .buttons a + a {
  margin-left: 1px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  min-height: 360px;
  padding: 40px 25px 15px 30px;
  color: #524a48;
  font-size: 16px;
  line-height: 22px;
  background: #fff;
  font-weight: 200;
  position: relative;
  /* Tablet Landscape */
}
@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;
    min-height: auto;
  }
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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%;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
.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;
}
.venue.template1 .layouts.expand span > .rooms-icon-text {
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
}
.venue.template2 .tab-buttons span .hide-on-mobile {
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.venue.template2 .content .tabs .layouts span:before {
  vertical-align: middle;
  margin-right: 20px;
  font-size: 40px;
  color: #aa9b7c;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
}
.venue.template3 .content-wrapper .content .amenities {
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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: "InsigniaProRoman", 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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
}

.blog-page.template-1 #content #main-content > .page-content[role=main] .content-wrapper .header h1 {
  font: 400 64px/1 "Crimson Text", serif;
  letter-spacing: -1px;
  padding-bottom: 20px;
}
.blog-page.template-1 #content #main-content > .page-content[role=main] .content-wrapper.full .content {
  width: 84%;
  margin: 0px auto;
}
.blog-page.template-1 #content .back-to-blog {
  display: flex;
  justify-content: start;
  top: 39px;
  left: -21px;
  position: relative;
  font-size: 11px;
  color: #C09951;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 #content .back-to-blog {
    top: -40px;
    left: auto;
  }
}
.blog-page.template-1 #photos {
  /* Tablet Landscape */
}
@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 .blog-container {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: center;
  /* Tablet Landscape */
}
.blog-page.template-1 .blog-container .blog-content {
  width: 100%;
  max-width: 850px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .blog-container .blog-content {
    width: 100%;
  }
}
.blog-page.template-1 .blog-container .blog-content .no-records {
  font-size: 2rem;
  margin: 3rem 0;
  text-align: center;
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post {
  margin-bottom: 176px;
  padding: 0 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post {
    padding: 0 16px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .breadcrumb-acm-parent {
  padding-bottom: 32px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post .breadcrumb-acm-parent {
    padding-bottom: 18px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .breadcrumb-acm-parent.corporate .home {
  padding-left: 0;
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .post-image {
  margin-bottom: 32px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post .post-image {
    margin-bottom: 21px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .post-image img {
  display: flex;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post .post-image img {
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .blog-date {
  margin-bottom: 20px;
  color: #48633D;
  font-family: "Museo Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post .blog-date {
    margin-bottom: 9px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post h1 {
  margin-bottom: 32px;
  color: #222222;
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post p {
  margin-bottom: 40px;
  color: #222222;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .blog-container .blog-content .single-blog-post p {
    margin-bottom: 39px;
  }
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .share-title {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 20px;
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .share-block {
  display: flex;
  align-items: center;
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .share-block .share-icon-container {
  display: flex;
  gap: 16px;
}
.blog-page.template-1 .blog-container .blog-content .single-blog-post .share-block .share-icon-container a:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
.blog-page.template-1 .recent-posts {
  padding-bottom: 50px;
}
.blog-page.template-1 .recent-posts-container, .blog-page.template-1 .related-posts-container {
  display: flex;
  flex-flow: wrap;
  flex-direction: row;
  justify-content: space-between;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .recent-posts-container, .blog-page.template-1 .related-posts-container {
    flex-direction: column;
    gap: 20px;
  }
}
.blog-page.template-1 .recent-posts-container .post, .blog-page.template-1 .related-posts-container .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 49%;
  box-sizing: border-box;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .recent-posts-container .post, .blog-page.template-1 .related-posts-container .post {
    width: 100%;
  }
}
.blog-page.template-1 .recent-posts-container .post .overlay, .blog-page.template-1 .related-posts-container .post .overlay {
  position: absolute;
  height: -webkit-fill-available;
  opacity: 1;
  background-size: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  width: -webkit-fill-available;
  transition: 0.5s ease;
}
.blog-page.template-1 .recent-posts-container .post .overlay:hover, .blog-page.template-1 .related-posts-container .post .overlay:hover {
  opacity: 0;
}
.blog-page.template-1 .recent-posts-container .post .category-name, .blog-page.template-1 .related-posts-container .post .category-name {
  display: block;
  width: -moz-max-content;
  width: max-content;
  background-color: #27647f;
  color: #FFFFFF;
  padding: 7px 10px;
  position: absolute;
  z-index: 9;
}
.blog-page.template-1 .recent-posts-container .post .category-name a, .blog-page.template-1 .related-posts-container .post .category-name a {
  color: #FFFFFF;
  text-decoration: none;
}
.blog-page.template-1 .recent-posts-container .post .category-name a:hover, .blog-page.template-1 .related-posts-container .post .category-name a:hover {
  text-decoration: underline;
}
.blog-page.template-1 .recent-posts-container .post .post-image, .blog-page.template-1 .related-posts-container .post .post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 358px;
}
.blog-page.template-1 .recent-posts-container .post .post-image img, .blog-page.template-1 .related-posts-container .post .post-image img {
  z-index: 0;
  position: relative;
  display: block;
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper, .blog-page.template-1 .related-posts-container .post .post-content-wrapper {
  position: relative;
  z-index: 9;
  padding-block: 20px;
  padding-bottom: 40px;
  color: #194459;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .recent-posts-container .post .post-content-wrapper, .blog-page.template-1 .related-posts-container .post .post-content-wrapper {
    padding-right: 0;
    width: 100%;
    justify-content: normal;
  }
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper a, .blog-page.template-1 .related-posts-container .post .post-content-wrapper a {
  text-decoration: none;
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-date, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-date {
  display: block;
  line-height: 1.2;
  margin-bottom: 10px;
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #194459;
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-date .date, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-date .date {
  color: #194459;
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-title, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-title {
  flex-wrap: nowrap;
  color: #194459;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-title a, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-title a {
  text-decoration: none;
  color: #194459;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-title, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-title, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-title {
    margin: 0 0 15px;
  }
}
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-text,
.blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-text p, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-text,
.blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #194459;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-text,
  .blog-page.template-1 .recent-posts-container .post .post-content-wrapper .post-text p, .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-text,
  .blog-page.template-1 .related-posts-container .post .post-content-wrapper .post-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.blog-page.template-1 .recent-posts-container .slideshow-controls, .blog-page.template-1 .related-posts-container .slideshow-controls {
  /* Tablet Landscape */
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button, .blog-page.template-1 .related-posts-container .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;
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button:after, .blog-page.template-1 .related-posts-container .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;
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button.previous, .blog-page.template-1 .related-posts-container .slideshow-controls .slideshow-button.previous {
  left: 0;
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button.previous:after, .blog-page.template-1 .related-posts-container .slideshow-controls .slideshow-button.previous:after {
  transform: rotate(-135deg);
  margin-top: -8px;
  margin-left: -5px;
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button.next, .blog-page.template-1 .related-posts-container .slideshow-controls .slideshow-button.next {
  right: 0;
}
.blog-page.template-1 .recent-posts-container .slideshow-controls .slideshow-button:hover, .blog-page.template-1 .related-posts-container .slideshow-controls .slideshow-button:hover {
  background: #003E66;
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .recent-posts-container .slideshow-controls, .blog-page.template-1 .related-posts-container .slideshow-controls {
    display: none;
  }
}
.blog-page.template-1 .recent-posts-container .slideshow-pagination, .blog-page.template-1 .related-posts-container .slideshow-pagination {
  margin-top: 10px;
  text-align: center;
  font-size: 0;
}
.blog-page.template-1 .recent-posts-container .slideshow-pagination > *, .blog-page.template-1 .related-posts-container .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;
}
.blog-page.template-1 .recent-posts-container .slideshow-pagination > *:hover, .blog-page.template-1 .recent-posts-container .slideshow-pagination > *.active, .blog-page.template-1 .related-posts-container .slideshow-pagination > *:hover, .blog-page.template-1 .related-posts-container .slideshow-pagination > *.active {
  background: #5990B4;
}
.blog-page.template-1 .single-post-page {
  display: inline;
}
.blog-page.template-1 .single-post-page .share-block {
  display: inline;
}
.blog-page.template-1 .single-post-page .share-block p {
  font-family: "Museo Sans", sans-serif;
  display: inline;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.blog-page.template-1 .share-icon-container {
  display: inline;
}
.blog-page.template-1 .share-icon-container a {
  text-indent: -99999px;
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
}
.blog-page.template-1 .share-icon-container a.facebook {
  background-image: url("../images/icon/facebook-share.svg");
}
.blog-page.template-1 .share-icon-container a.instagram {
  background-image: url("../images/icon/instagram-share.svg");
}
.blog-page.template-1 .share-icon-container a.twitter {
  background-image: url("../images/icon/Facebook@3x.svg#twitter");
}
.blog-page.template-1 .share-icon-container a.email {
  background-image: url("../images/icon/email-share.svg");
}
.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;
  /* Tablet Landscape */
}
.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 .widget-title {
  font: 400 30px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 30px;
  color: #222222;
  color: #194459;
  margin-bottom: 30px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .widget-title {
    font-size: 24px;
  }
}
.blog-page.template-1 .sidebar-wrap {
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .sidebar-wrap {
    width: 100%;
  }
}
.blog-page.template-1 .sidebar-wrap .blog-search-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: 48px;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid #C09951;
  /* Tablet Landscape */
}
@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;
  outline: none;
  font: 300 13px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  text-transform: initial;
  color: #194459;
  /* Tablet Landscape */
}
.blog-page.template-1 .sidebar-wrap .blog-search-form label .search-field::-moz-placeholder {
  color: #194459;
  text-transform: capitalize;
}
.blog-page.template-1 .sidebar-wrap .blog-search-form label .search-field::placeholder {
  color: #194459;
  text-transform: capitalize;
}
.blog-page.template-1 .sidebar-wrap .blog-search-form .search-submit {
  width: 48px;
  height: 100%;
  border-radius: 0;
  background-color: #C09951;
  border: none;
  cursor: pointer;
  color: transparent;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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: 17px;
  top: 10px;
  display: block;
  pointer-events: none;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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 .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;
  /* Tablet Landscape */
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin: 0 10px 20px 0;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li:first-child:before {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background: #C09951;
  margin-bottom: 15.5px;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  height: 1px;
  background: #C09951;
  margin-top: 15.5px;
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a {
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #194459;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: block;
  text-indent: 10px;
  /* Tablet Landscape */
}
.blog-page.template-1 .sidebar-wrap .blog-categories ul li a:hover, .blog-page.template-1 .sidebar-wrap .blog-categories ul li a.active {
  color: #C09951;
}
.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 "Museo Sans", sans-serif;
  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 "Museo Sans", sans-serif;
  color: #54baba;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: auto;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
.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 "Museo Sans", sans-serif;
  color: #54baba;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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-1 .pagination {
  padding-top: 20px;
}
.blog-page.template-1 .pagination .pagination-wrapper {
  text-align: center;
  gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog-page.template-1 .pagination .pagination-wrapper a {
  font: 300 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #222222;
  padding: 0 10px;
  bottom: 3px;
  position: relative;
}
.blog-page.template-1 .pagination .pagination-wrapper a.active {
  color: #48633D;
  padding: 6px 10px;
  border: 1px solid #C09951;
}
.blog-page.template-1 .pagination .pagination-wrapper .previous {
  padding-right: 10px;
  top: 0px;
}
.blog-page.template-1 .pagination .pagination-wrapper .gray-out {
  opacity: 0.4;
  pointer-events: none;
}
.blog-page.template-1 .pagination .pagination-wrapper .next {
  padding-left: 10px;
  top: 0px;
}
.blog-page.template-1 .featured-posts-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.blog-page.template-1 .featured-posts-wrapper .post {
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .featured-posts-wrapper .post {
    width: 100%;
  }
}
.blog-page.template-1 .featured-posts-wrapper .post .overlay {
  position: absolute;
  height: -webkit-fill-available;
  opacity: 1;
  background-size: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  width: -webkit-fill-available;
  transition: 0.5s ease;
}
.blog-page.template-1 .featured-posts-wrapper .post .overlay:hover {
  opacity: 0;
}
.blog-page.template-1 .featured-posts-wrapper .post .category-name {
  display: block;
  width: -moz-max-content;
  width: max-content;
  background-color: #27647f;
  color: #FFFFFF;
  padding: 7px 10px;
  position: absolute;
  z-index: 9;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 160px;
  max-height: 128px;
  margin-right: 4%;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-image img {
  z-index: 0;
  position: relative;
  display: block;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper {
  position: relative;
  z-index: 9;
  padding-block: 20px;
  padding-bottom: 40px;
  color: #194459;
  width: 60%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper {
    padding-right: 0;
    width: 100%;
    justify-content: normal;
  }
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper a {
  text-decoration: none;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-date {
  display: block;
  line-height: 1.2;
  margin-bottom: 10px;
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #194459;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-date .date {
  color: #194459;
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-title {
  flex-wrap: nowrap;
  color: #194459;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-title a {
  text-decoration: none;
  color: #194459;
}
@media only screen and (max-width: 1023px) {
  .blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-title {
    margin: 0 0 15px;
  }
}
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-text,
.blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #194459;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-text,
  .blog-page.template-1 .featured-posts-wrapper .post .post-content-wrapper .post-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.blog-page.template-1 #hamburger-navigation-trigger {
  bottom: 10px;
}
.blog {
  text-align: center;
  display: flex;
  justify-content: space-between;
  max-width: 1064px;
  margin: 96px auto 171px auto;
  padding: 0 16px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog {
    margin: 40px auto 167px auto;
  }
}
@media only screen and (max-width: 1023px) {
  .blog {
    flex-direction: column;
  }
}
.blog .left-side {
  width: 100%;
  max-width: 298px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side {
    max-width: initial;
  }
}
.blog .left-side .blog-title {
  font-family: "InsigniaProRoman", sans-serif;
  color: #48633D;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 26px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .blog-title {
    text-align: center;
  }
}
.blog .left-side .blog-subtitle {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 7px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .blog-subtitle {
    padding: 0 16px;
  }
}
.blog .left-side .category-selector {
  text-align: left;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .category-selector {
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .blog .left-side .category-selector {
    padding: 0 12px;
    margin-bottom: 47px;
  }
}
.blog .left-side .category-selector .button, .blog .left-side .category-selector .button.active {
  display: none;
}
.blog .left-side .sidebar-wrap {
  text-align: left;
}
.blog .left-side .select-wrapper {
  display: inline-block;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .select-wrapper {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 40px;
  }
}
.blog .left-side .select-wrapper select {
  border-left: unset;
  border-right: unset;
  border-top: unset;
  border-bottom: 1px solid #48633D;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 0;
  height: 28px;
  color: #222222;
  min-width: 206px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .select-wrapper select {
    width: 100%;
  }
}
.blog .left-side .select-wrapper select option {
  padding-left: 10px;
}
.blog .left-side .select-wrapper .select-icon {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .left-side .select-wrapper .select-icon {
    right: 18px;
  }
}
.blog .right-side {
  max-width: 754px;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .blog .right-side {
    max-width: initial;
  }
}
.blog .right-side .top-right-text {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: left;
  padding-left: 10px;
  margin-bottom: 68px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .blog .right-side .top-right-text {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .blog .right-side .top-right-text {
    display: none;
  }
}
.blog .right-side .blog-group {
  display: flex;
  flex-direction: column;
}
.blog .right-side .single-image-text-n-header .blog-item {
  vertical-align: top;
  width: 100%;
  margin: 15px 10px 20px 10px;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog .right-side .single-image-text-n-header .blog-item {
    width: 100%;
    margin: 10px 0;
    overflow: visible;
    flex-direction: column-reverse;
    align-items: center;
  }
}
.blog .right-side .single-image-text-n-header .blog-item .content-side {
  text-align: left;
  padding: 34px 24px 24px 24px;
  width: 92%;
  z-index: 1;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog .right-side .single-image-text-n-header .blog-item .content-side {
    text-align: center;
    padding: 26px 28px;
  }
}
.blog .right-side .single-image-text-n-header .blog-item .content-side .category-date {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog .right-side .single-image-text-n-header .blog-item .content-side .category-date {
    display: none;
  }
}
.blog .right-side .single-image-text-n-header .blog-item .content-side h2 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog .right-side .single-image-text-n-header .blog-item .content-side p {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  text-align: left;
}
.blog .right-side .single-image-text-n-header .blog-item .content-side .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  /* Tablet Landscape */
}
.blog .right-side .single-image-text-n-header .blog-item .content-side .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .blog .right-side .single-image-text-n-header .blog-item .content-side .link {
    margin: auto;
  }
}
.blog .right-side .single-image-text-n-header .blog-item .thumbnail {
  margin: 0;
  display: flex;
  align-items: center;
}
.blog .right-side .single-image-text-n-header .blog-item .thumbnail img {
  max-height: 236px;
}
.blog .right-side .single-image-text-n-header .blog-item h4 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.blog .right-side .single-image-text-n-header .blog-item time {
  color: #54baba;
  display: block;
  margin: 5px 0;
}
.blog .right-side .single-image-text-n-header .blog-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px 20px 20px;
}
.blog .right-side .single-image-text-n-header .blog-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.blog .right-side .single-image-text-n-header .blog-item .description p {
  color: #fff;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 0;
}
.blog .right-side .single-image-text-n-header .blog-item .pdf {
  color: #54baba;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.blog .right-side .single-image-text-n-header .blog-item .pdf:hover {
  color: #fff;
}
.blog .right-side .single-image-text-n-header .blog-item .view-gallery {
  margin-top: 20px;
}
.blog .right-side .single-image-text-n-header .blog-item.image-block:after {
  left: 0;
  width: calc(100% - 1.5vw);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .blog .right-side .single-image-text-n-header .blog-item.image-block:after {
    left: 15px;
    width: calc(100% - 30px);
  }
}

html.single-blog-post #photos-parent,
html.pressroom-post #photos-parent {
  display: none;
}
html.single-blog-post #content,
html.pressroom-post #content {
  margin-top: 186px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  html.single-blog-post #content,
  html.pressroom-post #content {
    margin-top: 144px;
  }
}

.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "PtSans", 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;
  /* Tablet Landscape */
}
@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;
  }
}
/* Tablet Landscape */
#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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  text-decoration: none;
  color: #003E66;
  position: relative;
  text-transform: uppercase;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#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;
  /* Tablet Landscape */
}
@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: "Museo Sans", sans-serif;
  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;
  /* Tablet Landscape */
}
@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;
}

.acm-featured-posts {
  margin-block: 4% 0;
  padding-block: 5%;
}
.acm-featured-posts .header {
  text-align: left;
  display: flex;
  justify-content: space-between;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .header {
    display: block;
    text-align: center;
  }
}
.acm-featured-posts .header h2 {
  margin-bottom: 40px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .header h2 {
    margin-bottom: 0px;
  }
}
.acm-featured-posts .header a {
  padding-block: 16px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .header a {
    display: block;
    margin: 0 auto;
  }
}
.acm-featured-posts .featured-posts-wrapper {
  display: flex;
  flex-flow: wrap;
  flex-direction: row;
  justify-content: space-between;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .featured-posts-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.acm-featured-posts .featured-posts-wrapper .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 32.2%;
  box-sizing: border-box;
  height: auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .featured-posts-wrapper .post {
    width: 100%;
  }
}
.acm-featured-posts .featured-posts-wrapper .post .overlay {
  position: absolute;
  height: -webkit-fill-available;
  opacity: 1;
  background-size: 100%;
  background-color: rgba(16, 16, 16, 0.5);
  width: -webkit-fill-available;
  transition: 0.5s ease;
}
.acm-featured-posts .featured-posts-wrapper .post .overlay:hover {
  opacity: 0;
}
.acm-featured-posts .featured-posts-wrapper .post .category-name {
  display: block;
  width: -moz-max-content;
  width: max-content;
  background-color: #27647f;
  color: #FFFFFF;
  padding: 7px 10px;
  position: absolute;
  z-index: 9;
}
.acm-featured-posts .featured-posts-wrapper .post .post-image {
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
}
.acm-featured-posts .featured-posts-wrapper .post .post-image img {
  z-index: 0;
  position: relative;
  display: block;
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper {
  position: absolute;
  bottom: 0;
  z-index: 9;
  padding-block: 20px;
  padding-inline: 10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper {
    padding-right: 0;
    width: 100%;
    justify-content: normal;
  }
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper a {
  color: #FFFFFF;
  text-decoration: none;
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-date {
  display: block;
  line-height: 1.2;
  margin-bottom: 10px;
  font: 300 11px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  color: #FFFFFF;
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-title {
  flex-wrap: nowrap;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-title a {
  text-decoration: none;
}
@media only screen and (max-width: 1023px) {
  .acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-title {
    margin: 0 0 15px;
  }
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-text,
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-text,
  .acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .post-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.acm-featured-posts .featured-posts-wrapper .post .post-content-wrapper .read-more-link {
  color: #E04E39;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-controls {
  /* Tablet Landscape */
}
.acm-featured-posts .featured-posts-wrapper .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;
}
.acm-featured-posts .featured-posts-wrapper .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;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-controls .slideshow-button.previous {
  left: 0;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-controls .slideshow-button.previous:after {
  transform: rotate(-135deg);
  margin-top: -8px;
  margin-left: -5px;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-controls .slideshow-button.next {
  right: 0;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-controls .slideshow-button:hover {
  background: #003E66;
}
@media only screen and (max-width: 767px) {
  .acm-featured-posts .featured-posts-wrapper .slideshow-controls {
    display: none;
  }
}
.acm-featured-posts .featured-posts-wrapper .slideshow-pagination {
  margin-top: 10px;
  text-align: center;
  font-size: 0;
}
.acm-featured-posts .featured-posts-wrapper .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;
}
.acm-featured-posts .featured-posts-wrapper .slideshow-pagination > *:hover, .acm-featured-posts .featured-posts-wrapper .slideshow-pagination > *.active {
  background: #5990B4;
}

.acm-things-to-do {
  margin: 85px auto;
}
.acm-things-to-do.margin-half {
  margin: 42px auto;
}
.acm-things-to-do .header {
  text-align: left;
  display: flex;
  justify-content: space-between;
}
.acm-things-to-do .header h2 {
  margin-bottom: 40px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .acm-things-to-do .header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.acm-things-to-do .header a {
  padding-block: 16px;
}
.acm-things-to-do .wrapper {
  display: flex;
  margin: auto;
  max-width: 810px;
  flex-flow: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-things-to-do .wrapper {
    flex-direction: column;
    display: flex;
  }
}
.acm-things-to-do .wrapper .post {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  height: auto;
  min-height: 240px;
  overflow: hidden;
  max-width: 394px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .acm-things-to-do .wrapper .post {
    padding: 0;
    width: 100%;
    justify-content: center;
    max-width: unset;
  }
}
.acm-things-to-do .wrapper .post .overlay {
  position: absolute;
  height: -webkit-fill-available;
  opacity: 1;
  background-size: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  width: -webkit-fill-available;
  transition: 0.5s ease;
}
.acm-things-to-do .wrapper .post .overlay:hover {
  opacity: 0;
}
.acm-things-to-do .wrapper .post .post-image {
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.acm-things-to-do .wrapper .post .post-image img {
  z-index: 0;
  position: relative;
  display: block;
}
.acm-things-to-do .wrapper .post .post-content-wrapper {
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 48px 20px;
  /* Tablet Landscape */
}
.acm-things-to-do .wrapper .post .post-content-wrapper .post-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.acm-things-to-do .wrapper .post .post-content-wrapper h3 {
  color: #FFFFFF;
  text-transform: uppercase;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .subtitle {
  color: #FFFFFF;
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .buttons-container {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .buttons-container .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  color: #FFFFFF;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .buttons-container .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .buttons-container .link:hover {
  color: #C09951;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .buttons-container .button {
  padding: 10px 14px;
  color: #222222;
}
.acm-things-to-do .wrapper .post .post-content-wrapper .post-text,
.acm-things-to-do .wrapper .post .post-content-wrapper .post-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .acm-things-to-do .wrapper .post .post-content-wrapper .post-text,
  .acm-things-to-do .wrapper .post .post-content-wrapper .post-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}
.acm-things-to-do .wrapper .post .post-content-wrapper .read-more-link {
  color: #E04E39;
}

.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 "PtSans", sans-serif;
  color: #003E66;
  box-sizing: border-box;
  margin-bottom: 50px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  text-align: center;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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: "PtSans", 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;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  margin: 5px 0 20px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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-bottom: 40px;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  color: #5990B4;
  text-transform: uppercase;
}
.related-posts .page-content h2 {
  font: normal 50px/1.2 "PtSans", sans-serif;
  text-align: center;
  color: #003E66;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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: "PtSans", sans-serif;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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 "PtSans", sans-serif;
  color: #fff;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: left;
  text-transform: uppercase;
  /* Tablet Landscape */
}
.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: "PtSans", sans-serif;
}
.footer-blog .footer-top-bar {
  padding-top: 50px;
  padding-bottom: 20px;
  background-color: #5990B4;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.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%;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .footer-blog .footer-bottom-bar-wrapper {
    justify-content: center;
  }
}
.footer-blog .footer-bottom-bar-wrapper .logos-wrapper {
  margin-right: 40px;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .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 .footer-links {
  background-color: #000000;
}
#footer .footer-links ul {
  display: flex;
  gap: 32px;
  font-family: "Museo Sans", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: center;
  padding: 0 10px;
  text-align: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .footer-links ul {
    flex-direction: column;
    gap: 16px;
    padding: 32px 0;
  }
}
#footer .footer-links ul li {
  padding: 11px 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .footer-links ul li {
    padding: 0;
  }
}
#footer .footer-links ul li a {
  text-decoration: none;
  color: #FFFFFF;
}
#footer .footer-top {
  padding: 36px 0 49px 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-top {
    padding-top: 38px;
    padding-bottom: 71px;
  }
}
#footer .footer-top .center-column {
  padding: 0 155px 0 90px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .footer-top .center-column {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #footer .footer-top .center-column {
    padding: 0 10px;
  }
}
#footer .footer-top .space-between {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-top .space-between {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
#footer .footer-top .footer-address p {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  padding-bottom: 14px;
  color: #FFFFFF;
  line-height: 24px;
}
#footer .footer-top .footer-address p a {
  color: #FFFFFF;
  text-decoration: none;
}
#footer .footer-top .footer-logo {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-top .footer-logo {
    padding-bottom: 34px;
  }
}
#footer .footer-top #footer-menu {
  font-size: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-top #footer-menu {
    padding: 0 10px;
    text-align: center;
  }
}
#footer .footer-top #footer-menu li {
  display: block;
  padding-bottom: 10px;
}
#footer .footer-top #footer-menu a {
  display: block;
  margin: 0 15px;
  font: 400 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #222222;
  text-decoration: none;
  color: #FFFFFF;
  text-transform: capitalize;
}
#footer .footer-top #footer-menu a:hover, #footer .footer-top #footer-menu a.active {
  color: #FFFFFF;
}
#footer .footer-top .section-4 img {
  height: 72px;
}
#footer .footer-top .section-4 img:nth-child(odd) {
  padding-right: 25px;
}
#footer .footer-top .section-2 {
  color: #FFFFFF;
  padding: 0 71px 0 57px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-top .section-2 {
    padding: 0;
    text-align: center;
  }
}
#footer .footer-top .section-2 .offices-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .footer-top .section-2 .offices-info {
    flex-direction: column;
    row-gap: 22px;
    margin-bottom: 23px;
  }
}
#footer .footer-top .section-2 .offices-info .office {
  width: 221px;
}
#footer .footer-top .section-2 .offices-info .office-name {
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 9px;
  /* Tablet Landscape */
}
#footer .footer-top .section-2 .offices-info .office-address {
  font-family: "Museo Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
#footer .footer-top .section-2 .header,
#footer .footer-top .section-3 .header {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
  white-space: nowrap;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .footer-top .section-2 .header,
  #footer .footer-top .section-3 .header {
    margin-bottom: 30px;
  }
}
#footer .footer-bottom {
  background-color: #000000;
}
#footer .footer-bottom .space-between {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-bottom .space-between {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 30px;
  }
}
#footer .footer-bottom .section-1 {
  margin: auto;
}
#footer .footer-bottom .copyright {
  color: #FFFFFF;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  padding: 32px 32px 24px 32px;
  text-align: center;
}
#footer .footer-bottom .section-2 img {
  height: 56px;
}
#footer .footer-bottom #footer-menu-2 {
  padding-block: 73px;
  font-size: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-bottom #footer-menu-2 {
    padding-block: 10px;
  }
}
#footer .footer-bottom #footer-menu-2 li {
  display: inline-block;
  padding-bottom: 10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #footer .footer-bottom #footer-menu-2 li {
    display: block;
    text-align: center;
  }
}
#footer .footer-bottom #footer-menu-2 a {
  display: block;
  margin: 0 15px;
  font: 300 11px "Montserrat", serif;
  letter-spacing: 0.3;
  color: #fff;
  text-decoration: none;
  color: #FFFFFF;
  text-transform: capitalize;
}
#footer .footer-bottom #footer-menu-2 a:hover, #footer .footer-bottom #footer-menu-2 a.active {
  color: #FFFFFF;
}
#footer-contacts {
  margin-bottom: 30px;
}
#footer-contacts h2 {
  margin-bottom: 10px;
  font-family: "Museo Sans", sans-serif;
  font-size: 18px;
  line-height: 1.2;
  text-transform: uppercase;
}
#footer-contacts .footer-header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer-contacts .footer-header {
    display: grid;
  }
}
#footer-contacts .footer-header .footer-logo {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer-contacts .footer-header .footer-logo {
    position: relative;
    bottom: 85px;
  }
}
#footer-contacts .footer-header .address {
  color: #222222;
  font: 400 14px/1 "Montserrat";
  letter-spacing: 0.4px;
  line-height: 34px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer-contacts .footer-header .address {
    position: relative;
    top: 90px;
  }
}
#footer-contacts .footer-header .footer-info {
  position: relative;
  bottom: 45px;
  color: #222222;
  font: 400 14px/1 "Montserrat";
}
#footer-contacts .footer-header .footer-info a {
  color: #222222;
  font: 400 14px/1 "Montserrat";
  letter-spacing: 0.4px;
  line-height: 24px;
}

#footer .socials {
  display: flex;
  flex-wrap: wrap;
  width: 94px;
  justify-content: start;
  margin: auto;
  row-gap: 16px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .socials {
    justify-content: center;
  }
}
@media only screen and (max-width: 1023px) {
  #footer .socials {
    position: relative;
    top: 0;
    text-align: center;
  }
}
#footer .socials li {
  display: inline-block;
}
#footer .socials a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  text-indent: -9999px;
  overflow: hidden;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #footer .socials a {
    display: inline-block;
  }
}
#footer .socials a.facebook {
  background: url("../images/sample/Facebook@3x.svg") 0 0 no-repeat;
}
#footer .socials a.twitter {
  background: url("../images/sample/Twitter@3x.svg") 0 0 no-repeat;
}
#footer .socials a.instagram {
  background: url("../images/sample/Instagram@3x.svg") 0 0 no-repeat;
}
#footer .socials a.tripadvisor {
  background: url("../images/sample/TripAdvisor@3x.svg") 0 0 no-repeat;
}
#footer .socials a.pininterest {
  background: url("../images/sample/Pininterest@3x.svg") 0 0 no-repeat;
}
#footer .socials a.googleplus {
  background: url("../images/sample/Googleplus@3x.svg") 0 0 no-repeat;
}
#footer .socials a.youtube {
  background-position: -121px -347px;
}
#footer .socials a.flickr {
  background-position: -361px -347px;
}
#footer .socials a.pinterest {
  background-position: -241px -347px;
}
#footer .socials a:hover {
  opacity: 0.8;
  transition: 350ms ease-in-out;
}

#newsletter-section {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 108px 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #newsletter-section {
    padding: 62px 0 128px 0;
  }
}
#newsletter-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
#newsletter-section .newsletter-bg-image {
  width: 100%;
}
#newsletter-section .newsletter-bg-image img {
  width: 100%;
  height: 100%;
}
#newsletter-section .newsletter-bg-image #newsletter {
  position: relative;
  /* font-size: 0; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 23px;
}
#newsletter-section .newsletter-bg-image #newsletter .header {
  color: #FFFFFF;
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  text-align: center;
  margin: auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #newsletter-section .newsletter-bg-image #newsletter .header {
    font-size: 32px;
  }
}
#newsletter-section .newsletter-bg-image #newsletter .show-legend {
  display: block;
}
#newsletter-section .newsletter-bg-image #newsletter [id*=form_form_], #newsletter-section .newsletter-bg-image #newsletter .form {
  max-width: 1440px;
  margin-bottom: 0;
}
#newsletter-section .newsletter-bg-image #newsletter form h2 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-bottom: 24px;
  text-align: center;
  margin-top: 12px;
  margin-top: 12px;
  border-bottom: unset;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #newsletter-section .newsletter-bg-image #newsletter form h2 {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    margin-top: 16px;
    margin-bottom: 26px;
  }
}
#newsletter-section .newsletter-bg-image #newsletter label[for*=inputlastname_],
#newsletter-section .newsletter-bg-image #newsletter label[for*=inputfirstname_],
#newsletter-section .newsletter-bg-image #newsletter label[for*=inputzip_],
#newsletter-section .newsletter-bg-image #newsletter label[for*=inputemail_],
#newsletter-section .newsletter-bg-image #newsletter label[for=FirstName],
#newsletter-section .newsletter-bg-image #newsletter label[for=LastName],
#newsletter-section .newsletter-bg-image #newsletter label[for=email],
#newsletter-section .newsletter-bg-image #newsletter label[for=zip] {
  display: none;
}
#newsletter-section .newsletter-bg-image #newsletter p, #newsletter-section .newsletter-bg-image #newsletter a {
  margin: 0;
  padding: 0;
  width: 100%;
  text-wrap: nowrap;
  color: #FFFFFF;
  text-decoration: unset;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form.checkbox > p {
  width: auto;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text],
#newsletter-section .newsletter-bg-image #newsletter input[type=email] {
  display: inline-block;
  vertical-align: top;
  width: -webkit-fill-available;
  height: 42px;
  padding: 0 0px;
  background: transparent;
  color: #222222;
  text-align: left;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 16px;
  border: 1px solid #FFFFFF;
  -moz-text-align-last: left;
       text-align-last: left;
  padding: 0 12px;
  letter-spacing: 0.3px;
  /* Tablet Landscape */
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:focus,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:focus {
  outline: none;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]::-webkit-input-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]::-webkit-input-placeholder {
  color: #222222;
  text-transform: uppercase;
  font-style: normal;
  text-align: left;
  opacity: 1;
  font: 300 14px/1 "Museo Sans", sans-serif;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:-moz-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:-moz-placeholder {
  color: #222222;
  text-transform: uppercase;
  font-style: normal;
  text-align: left;
  opacity: 1;
  font: 300 14px/1 "Museo Sans", sans-serif;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]::-moz-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]::-moz-placeholder {
  color: #222222;
  text-transform: uppercase;
  font-style: normal;
  text-align: left;
  opacity: 1;
  font: 300 14px/1 "Museo Sans", sans-serif;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:-ms-input-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:-ms-input-placeholder {
  color: #222222;
  text-transform: uppercase;
  font-style: normal;
  text-align: left;
  opacity: 1;
  font: 300 14px/1 "Museo Sans", sans-serif;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:focus::-webkit-input-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:focus::-webkit-input-placeholder {
  color: #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:focus:-moz-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:focus:-moz-placeholder {
  color: #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:focus::-moz-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:focus::-moz-placeholder {
  color: #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter input[type=text]:focus:-ms-input-placeholder,
#newsletter-section .newsletter-bg-image #newsletter input[type=email]:focus:-ms-input-placeholder {
  color: #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter .button {
  background-color: #FFFFFF;
  color: #48633D;
  border: 1px solid #FFFFFF;
  height: 51px;
  padding: 17px 43px;
  margin-top: 24px;
  min-width: 234px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#newsletter-section .newsletter-bg-image #newsletter .button:hover {
  background-color: #C09951;
  color: #222222;
  transition: 350ms ease-in-out;
  border: 1px solid #C09951;
}
@media only screen and (max-width: 767px) {
  #newsletter-section .newsletter-bg-image #newsletter .button {
    min-width: initial;
    width: 100%;
    max-width: 148px;
  }
}
@media only screen and (max-width: 1023px) {
  #newsletter-section .newsletter-bg-image #newsletter .button {
    margin-top: 26px;
  }
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form {
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding-block: 20px;
  /* The container */
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container {
  display: block;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #FFFFFF;
  font: 400 11px/1 "Montserrat";
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container a {
  color: #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container:hover input ~ .checkmark {
  background-color: transparent;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container input:checked ~ .checkmark {
  background-color: #194459;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
#newsletter-section .newsletter-bg-image #newsletter .newsletter-form .checkbox-container .checkmark:after {
  left: 4px;
  top: 0px;
  width: 3px;
  height: 9px;
  border: solid #FFFFFF;
  border-width: 0 1px 1px 0px;
  transform: rotate(45deg);
}

#newsletter em {
  display: none;
}
#newsletter .checkbox-label {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  color: #FFFFFF;
  margin: 0;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}
#newsletter .checkbox-label input {
  left: -4px;
  top: 5px;
  position: relative;
}
#newsletter input[type=checkbox] {
  background-color: transparent;
  border: 1px solid #FFFFFF;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
}
#newsletter input[type=checkbox]:checked::after {
  content: "✓";
  color: #FFFFFF;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
}
#newsletter .form-builder-field.input-email {
  width: 60%;
}
#newsletter .form-builder-field.input-email > p {
  text-align: right;
}
#newsletter .form-builder-field[class*=inputsubmit] {
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #newsletter .form-builder-field[class*=inputsubmit] {
    width: 100%;
    -moz-text-align-last: center;
         text-align-last: center;
  }
}
#newsletter .form-builder-field.first-name, #newsletter .form-builder-field.last-name, #newsletter .form-builder-field.zipcode, #newsletter .form-builder-field.newsletter-email {
  max-width: 250px;
  background: #FFFFFF;
}
#newsletter .form-builder-group {
  justify-content: center;
  gap: 24px;
  margin: auto;
  align-content: center;
  align-items: center;
  max-width: 962px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #newsletter .form-builder-group {
    margin: 0 auto;
  }
}
#newsletter .form-builder-group .form-builder-field.input-checkbox {
  width: auto;
  margin-top: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #newsletter .form-builder-group .form-builder-field.input-checkbox {
    margin-top: 20px;
  }
}
#newsletter .form-builder-group.columns-4 .form-builder-field {
  width: calc(31% - 20px);
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #newsletter .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
    max-width: initial;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #newsletter .form-builder-group.columns-4 .form-builder-field {
    width: 48%;
    max-width: initial;
  }
}
#newsletter .form-builder-group.columns-4 .form-builder-field.zipcode {
  max-width: 140px;
  width: calc(22% - 20px);
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #newsletter .form-builder-group.columns-4 .form-builder-field.zipcode {
    width: 100%;
    max-width: initial;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #newsletter .form-builder-group.columns-4 .form-builder-field.zipcode {
    max-width: initial;
    width: 48%;
  }
}
#newsletter fieldset.controls {
  text-align: center;
  margin-top: 0;
}
#newsletter fieldset.controls .button {
  margin-left: 0;
}
#newsletter input[type=email] {
  -moz-text-align-last: center;
       text-align-last: center;
}

#hebs-gallery {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  /* FULL SIZE IMAGE */
  /* FULL SIZE IMAGE -> Navigation */
  /* Tablet Landscape */
  /* 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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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: #54baba;
  border-bottom-color: #54baba;
  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;
  /* Tablet Landscape */
}
@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: #194459;
}
#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-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  /* Tablet Landscape */
}
@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 #e2e2e2;
  z-index: -1;
}
.specials .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.specials .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .specials .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.specials .image-list-item .description h3 {
  margin-bottom: 15px;
}
.specials .image-list-item .description h3 a {
  text-decoration: none;
}
.specials .image-list-item .description h3 a:hover {
  color: #54baba;
}
.specials .image-list-item .description nav {
  position: absolute;
  bottom: 30px;
  left: 25px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  }
}

.single-special .background {
  float: right;
  width: 442px;
  height: 255px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

.special-offer-single {
  margin-left: 188px;
  margin-right: 185px;
}

.specials-wrapper {
  display: flex;
  flex-flow: wrap;
  width: calc(100% + 60px);
  padding-inline: 2.5%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials-wrapper {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
  }
}
.specials-wrapper .special-item {
  width: calc(50% - 60px);
  display: inline-block;
  vertical-align: top;
  margin: 30px;
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.specials-wrapper .special-item:after {
  content: "";
  border: 1px solid #27647F;
  display: block;
  position: absolute;
  right: 25px;
  top: -20px;
  height: 100%;
  width: calc(100% - 48px);
  z-index: 10;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .specials-wrapper .special-item {
    width: calc(50% - 40px);
    margin: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .specials-wrapper .special-item {
    width: 100%;
    margin: 10px;
  }
}
.specials-wrapper .special-item .thumbnail {
  height: 250px;
  width: 100%;
  position: relative;
}
.specials-wrapper .special-item .thumbnail img {
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.specials-wrapper .special-item .description {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 16px;
  line-height: 25px;
  min-height: 200px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 40px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .specials-wrapper .special-item .description {
    padding: 23px 30px 32px;
  }
}
.specials-wrapper .special-item .description h3 {
  text-align: center;
  text-transform: uppercase;
  font: 400 14px/1 "Montserrat";
}
.specials-wrapper .special-item .description h3 a {
  text-decoration: none;
  color: #27647F;
}
.specials-wrapper .special-item .description p {
  text-align: center;
  color: #222222;
  font: 300 24px/1 "Montserrat";
  text-transform: uppercase;
}
.specials-wrapper .special-item .description .slideshow-book-now {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .specials-wrapper .special-item .description .slideshow-book-now {
    padding-inline: 0px;
  }
}
.specials-wrapper .special-item .description a.specials-offers-btn {
  background: none;
  text-decoration: none;
  font: 400 14px/1 "Montserrat";
  color: #222222;
  text-transform: uppercase;
}
.specials-wrapper .special-item .description a.specials-offers-btn:after {
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 2px solid #C09951;
  opacity: 1;
}
.specials-wrapper .special-item .description a.specials-offers-btn:last-child {
  background: #27647F;
  color: #FFFFFF;
  font: 700 14px/1 "Montserrat";
  letter-spacing: 1px;
  padding: 8px;
}

.specials-offer {
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
}
.specials-offer h1 {
  font: 300 32px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 36px;
}
.specials-offer h2 {
  font: 400 40px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 40px;
  color: #222222;
  text-transform: capitalize;
  padding-inline: 0 8%;
  letter-spacing: 1px;
}
.specials-offer .content {
  max-width: 780px;
}
.specials-offer .content p {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  line-height: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .specials-offer .content p {
    display: flex;
    justify-content: center;
  }
}
.specials-offer .content p a {
  background: none;
  color: #222222;
  font: 400 14px/1 "Montserrat";
}
.specials-offer .content p a:after {
  content: "";
  position: relative;
  width: 100%;
  display: block;
  border: 1px solid #27647F;
}

.special-offers-grid {
  max-width: 1440px;
  margin: auto;
  overflow: hidden;
}
.special-offers-grid .list-special {
  justify-content: center;
}

.single-specials {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
.single-specials .single-post-left {
  width: 60%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.single-specials .single-post-left p {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  letter-spacing: 0.4px;
  line-height: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-specials .single-post-left {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-specials .single-post-left {
    width: 100%;
  }
}
.single-specials .single-post-right {
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  width: 30%;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .single-specials .single-post-right {
    margin: 20px auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-specials .single-post-right {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .single-specials .single-post-right {
    width: 100%;
  }
}
.single-specials .single-post-right .img-thumbnail {
  width: 100%;
  min-height: 250px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-specials .single-post-right .img-thumbnail {
    min-height: 400px;
  }
}
.single-specials .single-post-right .img-thumbnail:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.55);
}
.single-specials .single-post-right .img-thumbnail .side-content-info {
  text-align: center;
  position: relative;
  top: 5rem;
  z-index: 1;
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-specials .single-post-right .img-thumbnail .side-content-info {
    top: 10rem;
  }
}
.single-specials .single-post-right .img-thumbnail .side-content-info p {
  font: 400 14px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
  color: #FFFFFF;
}
.single-specials .single-post-right .img-thumbnail .side-content-info h2 {
  font: 400 24px/1 "Montserrat";
  letter-spacing: 1px;
  line-height: 32px;
  text-transform: uppercase;
  color: #FFFFFF !important;
}
.single-specials .single-post-right .img-thumbnail .side-content-info .slideshow-book-now a {
  color: #FFFFFF;
  font: 700 14px/1 "Montserrat";
  letter-spacing: 2px;
  line-height: 12px;
  text-transform: uppercase;
}
.single-specials .single-post-special .thumbnail {
  margin: 0;
  margin-bottom: 32px;
}
.single-specials .single-post-special .thumbnail .object-fit {
  position: unset;
}
.single-specials .single-post-special .title {
  margin-bottom: 32px;
  margin-top: 0;
  color: #48633D;
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.single-specials .single-post-special .special-content {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: left;
}
.single-specials .single-post-special .buttons-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 16px;
}
.single-specials .single-post-special .buttons-container .share-title {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 4px;
}
.single-specials .single-post-special .buttons-container .special-book-now {
  margin-right: 49px;
  font-size: 14px;
}
.single-specials .single-post-special .share-socials {
  display: flex;
  gap: 16px;
  height: 32px;
  align-items: center;
}
.single-specials .single-post-special .share-socials .share-button {
  cursor: pointer;
  opacity: 1;
  transition: 350ms ease-in-out;
  height: 32px;
}
.single-specials .single-post-special .share-socials .share-button:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
.single-specials .single-post-special .share-socials a {
  text-indent: -99999px;
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
}
.single-specials .single-post-special .share-socials a:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
.single-specials .single-post-special .share-socials a.facebook {
  background-image: url("../images/icon/facebook-share.svg");
}
.single-specials .single-post-special .share-socials a.instagram {
  background-image: url("../images/icon/instagram-share.svg");
}
.single-specials .single-post-special .share-socials a.email {
  background-image: url("../images/icon/email-share.svg");
}
.single-specials.center-column {
  max-width: 850px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-specials.center-column {
    padding: 0 16px;
  }
}
.single-specials .breadcrumb-acm-parent {
  padding-bottom: 32px;
}
.single-specials .breadcrumb-acm-parent .body-small.home {
  padding-left: 0;
}

html.specials:not(.offer-details) #content {
  margin-bottom: 151px;
}
html.specials:not(.offer-details) #content p {
  font-size: 14px;
}
html.specials:not(.offer-details) #content .breadcrumb-acm-parent {
  max-width: 1334px;
  margin: 20px auto 0 auto;
  padding-bottom: 0;
}
html.specials:not(.offer-details) #content .one-column-acm .content-wrapper {
  margin: 56px auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  html.specials:not(.offer-details) #content .one-column-acm .content-wrapper {
    margin: 40px auto 56px auto;
  }
}
html.specials:not(.offer-details) #content .specials-wrapper.list-special {
  margin-top: 56px;
}

html.offer-details #photos-parent #photos {
  display: none;
}
html.offer-details #content {
  margin-top: 186px;
}
html.offer-details #main-content {
  margin-bottom: 85px;
}
html.offer-details #main-content .page-content {
  padding: 0;
}
html.offer-details #main-content .page-content .content-wrapper {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  html.offer-details #main-content .page-content .content-wrapper {
    justify-content: center;
  }
}

.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: #54baba;
  border-bottom-color: #54baba;
  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: 518px;
  background: #e5e3df;
}
.hotel-location-map h4, .poi-map-canvas h4 {
  margin: 0;
  font: 16px "Museo Sans", sans-serif;
  text-transform: uppercase;
  color: #222222;
  font-family: "Montserrat";
}
.hotel-location-map p, .poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: wrap;
  font-family: "Montserrat";
}
.hotel-location-map .button, .poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.hotel-location-map .pointer {
  border: solid 10px transparent;
  border-right-color: #fff;
  position: absolute;
  margin: 132px 0 0 140px;
  transform: rotate(-90deg);
}
.hotel-location-map#contact-map .leaflet-control-container .leaflet-top.leaflet-left {
  top: initial;
  left: initial;
  right: 14px;
  bottom: 16px;
}

.map-content {
  background: #222222;
  font-size: 14px;
  line-height: 24px;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: center;
  color: #fff;
  width: 300px;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
  font-family: "Montserrat";
}
.map-content h3 {
  font: 700 16px/24px "Montserrat";
  color: #fff;
}
.map-content a {
  color: #fff;
  font-family: "Montserrat";
}
.map-content .button {
  margin-top: 20px;
  font-family: "Montserrat";
}

.pressroom {
  text-align: center;
}
.pressroom.single-category {
  justify-content: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  vertical-align: top;
  width: calc(33% - 20px);
  margin: 15px 10px 20px 10px;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
}
.pressroom .pressroom-item time {
  color: #54baba;
  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: #54baba;
  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 {
  text-align: center;
  display: flex;
  justify-content: space-between;
  max-width: 1064px;
  margin: 96px auto 171px auto;
  padding: 0 16px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom {
    margin: 40px auto 167px auto;
  }
}
@media only screen and (max-width: 1023px) {
  .pressroom {
    flex-direction: column;
  }
}
.pressroom .left-side {
  width: 100%;
  max-width: 278px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side {
    max-width: initial;
  }
}
.pressroom .left-side .pressroom-title {
  font-family: "InsigniaProRoman", sans-serif;
  color: #48633D;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 26px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .pressroom-title {
    text-align: center;
  }
}
.pressroom .left-side .pressroom-subtitle {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  margin-bottom: 7px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .pressroom-subtitle {
    padding: 0 16px;
  }
}
.pressroom .left-side .category-selector {
  text-align: left;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .category-selector {
    padding: 0 12px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .left-side .category-selector {
    padding: 0 12px;
    margin-bottom: 10px;
  }
}
.pressroom .left-side .category-selector .button, .pressroom .left-side .category-selector .button.active {
  display: none;
}
.pressroom .left-side .sidebar-wrap {
  text-align: left;
}
.pressroom .left-side .select-wrapper {
  display: inline-block;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .select-wrapper {
    width: 100%;
    padding: 0 6px;
  }
}
.pressroom .left-side .select-wrapper select {
  border-left: unset;
  border-right: unset;
  border-top: unset;
  border-bottom: 1px solid #48633D;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 0;
  height: 28px;
  color: #222222;
  min-width: 206px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .select-wrapper select {
    width: 100%;
  }
}
.pressroom .left-side .select-wrapper select option {
  padding-left: 10px;
}
.pressroom .left-side .select-wrapper .select-icon {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .left-side .select-wrapper .select-icon {
    right: 18px;
  }
}
.pressroom .right-side {
  max-width: 754px;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .right-side {
    max-width: initial;
  }
}
.pressroom .right-side .top-right-text {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  text-align: left;
  padding-left: 10px;
  margin-bottom: 68px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .right-side .top-right-text {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .top-right-text {
    display: none;
  }
}
.pressroom .right-side .pressroom-group {
  display: flex;
  flex-direction: column;
}
.pressroom .right-side .single-image-text-n-header {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .pressroom .right-side .single-image-text-n-header {
    justify-items: center;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item {
  vertical-align: top;
  width: 100%;
  margin: 50px 10px;
  position: relative;
  overflow: visible;
  padding: 20px 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item {
    width: 100%;
    margin: 10px 0;
    overflow: visible;
    flex-direction: column-reverse;
    align-items: center;
    margin: 44px 10px;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side {
  text-align: left;
  padding: 10px 24px 24px 24px;
  width: 100%;
  z-index: 1;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item .content-side {
    text-align: center;
    padding: 26px 28px;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side .category-date {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item .content-side .category-date {
    display: none;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side h2 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side p {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  text-align: left;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  /* Tablet Landscape */
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .content-side .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item .content-side .link {
    margin: auto;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .thumbnail {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: end;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .thumbnail img {
  height: 236px;
  width: 219px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item .thumbnail img {
    min-height: 244px;
    width: 100%;
  }
}
.pressroom .right-side .single-image-text-n-header .pressroom-item h4 {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item time {
  color: #54baba;
  display: block;
  margin: 5px 0;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px 20px 20px;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .description p {
  color: #fff;
  line-height: 18px;
  font-size: 14px;
  margin-bottom: 0;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .pdf {
  color: #54baba;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .pdf:hover {
  color: #fff;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item .view-gallery {
  margin-top: 20px;
}
.pressroom .right-side .single-image-text-n-header .pressroom-item.image-block:after {
  left: 0;
  width: 100%;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item.image-block:after {
    left: 15px;
    width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .pressroom .right-side .single-image-text-n-header .pressroom-item.image-block:after {
    width: calc(100% - 10px);
  }
}

.post-container {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: center;
  margin-bottom: 85px;
  /* Tablet Landscape */
}
.post-container .post-content {
  width: 100%;
  max-width: 850px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .post-container .post-content {
    width: 100%;
  }
}
.post-container .post-content .no-records {
  font-size: 2rem;
  margin: 3rem 0;
  text-align: center;
}
.post-container .post-content .single-press-post {
  padding: 0 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post {
    padding: 0 16px;
  }
}
.post-container .post-content .single-press-post .breadcrumb-acm-parent {
  padding-bottom: 32px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post .breadcrumb-acm-parent {
    padding-bottom: 18px;
  }
}
.post-container .post-content .single-press-post .breadcrumb-acm-parent.corporate .home {
  padding-left: 0;
}
.post-container .post-content .single-press-post .post-image {
  margin-bottom: 32px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post .post-image {
    margin-bottom: 21px;
  }
}
.post-container .post-content .single-press-post .post-image img {
  display: flex;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 449px) {
  .post-container .post-content .single-press-post .post-image img {
    max-height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.post-container .post-content .single-press-post .post-date {
  margin-bottom: 20px;
  color: #48633D;
  font-family: "Museo Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post .post-date {
    margin-bottom: 9px;
  }
}
.post-container .post-content .single-press-post h1 {
  margin-bottom: 32px;
  color: #222222;
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.post-container .post-content .single-press-post p {
  margin-bottom: 40px;
  color: #222222;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .post-container .post-content .single-press-post p {
    margin-bottom: 39px;
  }
}
.post-container .post-content .single-press-post .share-title {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-right: 20px;
}
.post-container .post-content .single-press-post .share-block {
  display: flex;
  align-items: center;
}
.post-container .post-content .single-press-post .share-block .share-icon-container {
  display: flex;
  gap: 16px;
}
.post-container .post-content .single-press-post .share-block .share-icon-container a:hover {
  opacity: 0.5;
  transition: 350ms ease-in-out;
}
.post-container .share-icon-container {
  display: inline;
}
.post-container .share-icon-container a {
  text-indent: -99999px;
  display: inline-block;
  width: 32px;
  height: 32px;
  position: relative;
}
.post-container .share-icon-container a.facebook {
  background-image: url("../images/icon/facebook-share.svg");
}
.post-container .share-icon-container a.instagram {
  background-image: url("../images/icon/instagram-share.svg");
}
.post-container .share-icon-container a.twitter {
  background-image: url("../images/icon/Facebook@3x.svg#twitter");
}
.post-container .share-icon-container a.email {
  background-image: url("../images/icon/email-share.svg");
}

.galleries {
  text-align: center;
  font-size: 0;
}
.galleries .category-selector .active {
  background: #FFFFFF !important;
  border: 1px solid #000000 !important;
}
.galleries .gallery {
  padding-bottom: calc(22% - 10px);
  width: 34%;
  height: 0;
  margin: 5px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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 "InsigniaProRoman", 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;
  /* Tablet Landscape */
}
@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);
}

.gallery-acm-block {
  margin-block: 30px;
  padding-block: 30px;
}

.masonry-gallery {
  margin-bottom: 50px;
  margin-top: -70px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .masonry-gallery {
    margin-top: -50px;
  }
}
@media only screen and (max-width: 767px) {
  .masonry-gallery {
    margin-top: -20px;
  }
}
.masonry-gallery.center-column {
  max-width: 1800px;
}
.masonry-gallery .gallery-mobile-dropdown {
  line-height: 57px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
  display: none;
  width: 100%;
  text-align: left;
  position: relative;
}
.masonry-gallery .category-selector {
  margin: 0 0 50px 0;
}
.masonry-gallery .gallery {
  margin: 0 auto;
  width: 75%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .masonry-gallery .gallery {
    width: 100%;
  }
}
.masonry-gallery .gallery .gallery-item {
  width: calc(50% - 40px);
  height: 340px;
  display: none;
  padding: 5px 5px 15px 5px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .masonry-gallery .gallery .gallery-item {
    width: 100%;
  }
}
.masonry-gallery .gallery .gallery-item.active {
  display: inline-block;
}
.masonry-gallery .gallery .gallery-item button {
  width: 100%;
  height: 100%;
  background-size: cover;
  position: relative;
}
.masonry-gallery .gallery .gallery-item button.portrait {
  padding-top: 133%;
}
.masonry-gallery .gallery .gallery-item button .thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
  background-size: cover;
  background-position: 50% 50%;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  bottom: 11px;
  right: 11px;
  opacity: 0;
  transition: opacity 0.2s;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 33%;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top:after, .masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top:before,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom:after,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom:before {
  content: "";
  display: block;
  width: 33%;
  height: 100%;
  border: 2px solid #fff;
  position: absolute;
  top: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.top,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.top {
  top: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.top:before,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.top:before {
  left: 0;
  border-right: 0;
  border-bottom: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.top:after,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.top:after {
  right: 0;
  border-left: 0;
  border-bottom: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.bottom,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.bottom {
  bottom: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.bottom:before,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.bottom:before {
  left: 0;
  border-right: 0;
  border-top: 0;
}
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .top.bottom:after,
.masonry-gallery .gallery .gallery-item button .thumb .gallery-expand .bottom.bottom:after {
  right: 0;
  border-left: 0;
  border-top: 0;
}
.masonry-gallery .gallery .gallery-item button:hover {
  z-index: 2;
}
.masonry-gallery .gallery .gallery-item button:hover .thumb {
  transform: translate(-50%, -50%) scale(1.07);
}
.masonry-gallery .gallery .gallery-item button:hover .thumb .gallery-expand {
  opacity: 1;
}
.masonry-gallery .gallery .gallery-item.video-thumb button .thumb:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2) url(../../images/video.svg) no-repeat 50% 50%;
  background-size: 54px 54px;
  z-index: 2;
}

.form {
  display: block;
  margin-bottom: 20px;
  font-size: initial;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
  }
}
.form .ui-menu-item a {
  text-align: left;
}
.form h2 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #C09951;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 12px 20px 0 0;
  float: left;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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: #222222;
  height: 40px;
  padding: 0 10px;
  resize: none;
  width: 250px;
  border: 1px solid #d1d1d1;
  font-size: 14px;
  line-height: 40px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
.form .group {
  margin-left: calc(40% + 20px);
  /* Tablet Landscape */
}
@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;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick, .form .input-overlay {
  width: 100px;
  float: left;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls p {
  padding: 20px 0 0 40%;
  width: auto;
  background: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: center;
  }
}
.form .controls .button {
  margin-left: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}

#form_module_container_errors,
#form_module_container_success {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  background-color: rgba(39, 100, 127, 0.1);
}
#form_module_container_errors p,
#form_module_container_success p {
  margin-bottom: 0;
}

#form_module_container_errors {
  color: #b31919;
}

#form_module_container_errors .goTo {
  text-decoration: underline;
  cursor: pointer;
}

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

#form_module_container_success {
  color: green;
}

[id*=form_form_], .form {
  display: inline-block;
  width: 100%;
  text-align: left;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_], .form {
    margin-bottom: 20px;
  }
}
[id*=form_form_] fieldset[id], .form fieldset[id] {
  display: flex;
  max-width: 1140px;
  gap: 24px;
  justify-content: space-between;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] fieldset[id], .form fieldset[id] {
    flex-direction: column;
    align-items: center;
  }
}
[id*=form_form_] fieldset[id] h2,
[id*=form_form_] fieldset[id] legend, .form fieldset[id] h2,
.form fieldset[id] legend {
  width: 50%;
  border-bottom: initial;
  text-transform: uppercase;
  font-size: 32px;
  color: #48633D;
  margin-top: 0;
  letter-spacing: 1px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] fieldset[id] h2,
  [id*=form_form_] fieldset[id] legend, .form fieldset[id] h2,
  .form fieldset[id] legend {
    font-size: 20px;
    line-height: 24px;
    width: 100%;
    text-align: center;
  }
}
[id*=form_form_] fieldset[id] legend, .form fieldset[id] legend {
  padding-bottom: 0;
}
[id*=form_form_] fieldset[id] .form-builder-group, .form fieldset[id] .form-builder-group {
  width: 50%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] fieldset[id] .form-builder-group, .form fieldset[id] .form-builder-group {
    width: 100%;
    margin: auto;
  }
}
[id*=form_form_] fieldset legend, .form fieldset legend {
  padding-bottom: 10px;
  font: 400 24px/1.2 "InsigniaProRoman", sans-serif;
  color: gray;
  text-transform: uppercase;
  display: contents;
}
[id*=form_form_] fieldset + fieldset, .form fieldset + fieldset {
  margin-top: 30px;
  /* Tablet Landscape */
}
[id*=form_form_] fieldset + fieldset.custom-radio-group, [id*=form_form_] fieldset + fieldset.custom-checkbox-group, .form fieldset + fieldset.custom-radio-group, .form fieldset + fieldset.custom-checkbox-group {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] fieldset + fieldset, .form fieldset + fieldset {
    margin-top: 20px;
  }
}
[id*=form_form_] h3, .form h3 {
  margin-bottom: 0;
}
[id*=form_form_] em, .form em {
  margin-left: -10px;
  color: #b31919;
  font-size: 1.4em;
  font-weight: normal;
  line-height: 0;
  margin-right: 5px;
}
[id*=form_form_] label, .form label {
  width: 100%;
  display: block;
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
  margin-bottom: 6px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] label, .form label {
    font-size: 12px;
  }
}
[id*=form_form_] .hide-label label, .form .hide-label label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  word-wrap: normal !important;
}
[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, .form input[type=text],
.form input[type=number],
.form input[type=email],
.form input[type=phone],
.form input[type=url],
.form input[type=datepicker],
.form textarea, .form select,
.form .input-overlay {
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
  text-transform: none;
  background: none;
  min-height: 38px;
  padding: 0 10px;
  resize: none;
  width: 100%;
  border: #C09951 1px solid;
}
[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, .form input[type=text].form_module_field_error,
.form input[type=number].form_module_field_error,
.form input[type=email].form_module_field_error,
.form input[type=phone].form_module_field_error,
.form input[type=url].form_module_field_error,
.form input[type=datepicker].form_module_field_error,
.form textarea.form_module_field_error, .form select.form_module_field_error,
.form .input-overlay.form_module_field_error {
  border-color: red;
}
[id*=form_form_] input[type=text]::-webkit-input-placeholder,
[id*=form_form_] input[type=number]::-webkit-input-placeholder,
[id*=form_form_] input[type=email]::-webkit-input-placeholder,
[id*=form_form_] input[type=phone]::-webkit-input-placeholder,
[id*=form_form_] input[type=url]::-webkit-input-placeholder,
[id*=form_form_] input[type=datepicker]::-webkit-input-placeholder,
[id*=form_form_] textarea::-webkit-input-placeholder, [id*=form_form_] select::-webkit-input-placeholder,
[id*=form_form_] .input-overlay::-webkit-input-placeholder, .form input[type=text]::-webkit-input-placeholder,
.form input[type=number]::-webkit-input-placeholder,
.form input[type=email]::-webkit-input-placeholder,
.form input[type=phone]::-webkit-input-placeholder,
.form input[type=url]::-webkit-input-placeholder,
.form input[type=datepicker]::-webkit-input-placeholder,
.form textarea::-webkit-input-placeholder, .form select::-webkit-input-placeholder,
.form .input-overlay::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.5);
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
}
[id*=form_form_] input[type=text]:-moz-placeholder,
[id*=form_form_] input[type=number]:-moz-placeholder,
[id*=form_form_] input[type=email]:-moz-placeholder,
[id*=form_form_] input[type=phone]:-moz-placeholder,
[id*=form_form_] input[type=url]:-moz-placeholder,
[id*=form_form_] input[type=datepicker]:-moz-placeholder,
[id*=form_form_] textarea:-moz-placeholder, [id*=form_form_] select:-moz-placeholder,
[id*=form_form_] .input-overlay:-moz-placeholder, .form input[type=text]:-moz-placeholder,
.form input[type=number]:-moz-placeholder,
.form input[type=email]:-moz-placeholder,
.form input[type=phone]:-moz-placeholder,
.form input[type=url]:-moz-placeholder,
.form input[type=datepicker]:-moz-placeholder,
.form textarea:-moz-placeholder, .form select:-moz-placeholder,
.form .input-overlay:-moz-placeholder {
  color: rgba(34, 34, 34, 0.5);
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
}
[id*=form_form_] input[type=text]::-moz-placeholder,
[id*=form_form_] input[type=number]::-moz-placeholder,
[id*=form_form_] input[type=email]::-moz-placeholder,
[id*=form_form_] input[type=phone]::-moz-placeholder,
[id*=form_form_] input[type=url]::-moz-placeholder,
[id*=form_form_] input[type=datepicker]::-moz-placeholder,
[id*=form_form_] textarea::-moz-placeholder, [id*=form_form_] select::-moz-placeholder,
[id*=form_form_] .input-overlay::-moz-placeholder, .form input[type=text]::-moz-placeholder,
.form input[type=number]::-moz-placeholder,
.form input[type=email]::-moz-placeholder,
.form input[type=phone]::-moz-placeholder,
.form input[type=url]::-moz-placeholder,
.form input[type=datepicker]::-moz-placeholder,
.form textarea::-moz-placeholder, .form select::-moz-placeholder,
.form .input-overlay::-moz-placeholder {
  color: rgba(34, 34, 34, 0.5);
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
}
[id*=form_form_] input[type=text]:-ms-input-placeholder,
[id*=form_form_] input[type=number]:-ms-input-placeholder,
[id*=form_form_] input[type=email]:-ms-input-placeholder,
[id*=form_form_] input[type=phone]:-ms-input-placeholder,
[id*=form_form_] input[type=url]:-ms-input-placeholder,
[id*=form_form_] input[type=datepicker]:-ms-input-placeholder,
[id*=form_form_] textarea:-ms-input-placeholder, [id*=form_form_] select:-ms-input-placeholder,
[id*=form_form_] .input-overlay:-ms-input-placeholder, .form input[type=text]:-ms-input-placeholder,
.form input[type=number]:-ms-input-placeholder,
.form input[type=email]:-ms-input-placeholder,
.form input[type=phone]:-ms-input-placeholder,
.form input[type=url]:-ms-input-placeholder,
.form input[type=datepicker]:-ms-input-placeholder,
.form textarea:-ms-input-placeholder, .form select:-ms-input-placeholder,
.form .input-overlay:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.5);
  font: 400 13px/18px "InsigniaProRoman", sans-serif;
}
[id*=form_form_] input[type=text]:focus::-webkit-input-placeholder,
[id*=form_form_] input[type=number]:focus::-webkit-input-placeholder,
[id*=form_form_] input[type=email]:focus::-webkit-input-placeholder,
[id*=form_form_] input[type=phone]:focus::-webkit-input-placeholder,
[id*=form_form_] input[type=url]:focus::-webkit-input-placeholder,
[id*=form_form_] input[type=datepicker]:focus::-webkit-input-placeholder,
[id*=form_form_] textarea:focus::-webkit-input-placeholder, [id*=form_form_] select:focus::-webkit-input-placeholder,
[id*=form_form_] .input-overlay:focus::-webkit-input-placeholder, .form input[type=text]:focus::-webkit-input-placeholder,
.form input[type=number]:focus::-webkit-input-placeholder,
.form input[type=email]:focus::-webkit-input-placeholder,
.form input[type=phone]:focus::-webkit-input-placeholder,
.form input[type=url]:focus::-webkit-input-placeholder,
.form input[type=datepicker]:focus::-webkit-input-placeholder,
.form textarea:focus::-webkit-input-placeholder, .form select:focus::-webkit-input-placeholder,
.form .input-overlay:focus::-webkit-input-placeholder {
  color: rgba(34, 34, 34, 0.2);
}
[id*=form_form_] input[type=text]:focus:-moz-placeholder,
[id*=form_form_] input[type=number]:focus:-moz-placeholder,
[id*=form_form_] input[type=email]:focus:-moz-placeholder,
[id*=form_form_] input[type=phone]:focus:-moz-placeholder,
[id*=form_form_] input[type=url]:focus:-moz-placeholder,
[id*=form_form_] input[type=datepicker]:focus:-moz-placeholder,
[id*=form_form_] textarea:focus:-moz-placeholder, [id*=form_form_] select:focus:-moz-placeholder,
[id*=form_form_] .input-overlay:focus:-moz-placeholder, .form input[type=text]:focus:-moz-placeholder,
.form input[type=number]:focus:-moz-placeholder,
.form input[type=email]:focus:-moz-placeholder,
.form input[type=phone]:focus:-moz-placeholder,
.form input[type=url]:focus:-moz-placeholder,
.form input[type=datepicker]:focus:-moz-placeholder,
.form textarea:focus:-moz-placeholder, .form select:focus:-moz-placeholder,
.form .input-overlay:focus:-moz-placeholder {
  color: rgba(34, 34, 34, 0.2);
}
[id*=form_form_] input[type=text]:focus::-moz-placeholder,
[id*=form_form_] input[type=number]:focus::-moz-placeholder,
[id*=form_form_] input[type=email]:focus::-moz-placeholder,
[id*=form_form_] input[type=phone]:focus::-moz-placeholder,
[id*=form_form_] input[type=url]:focus::-moz-placeholder,
[id*=form_form_] input[type=datepicker]:focus::-moz-placeholder,
[id*=form_form_] textarea:focus::-moz-placeholder, [id*=form_form_] select:focus::-moz-placeholder,
[id*=form_form_] .input-overlay:focus::-moz-placeholder, .form input[type=text]:focus::-moz-placeholder,
.form input[type=number]:focus::-moz-placeholder,
.form input[type=email]:focus::-moz-placeholder,
.form input[type=phone]:focus::-moz-placeholder,
.form input[type=url]:focus::-moz-placeholder,
.form input[type=datepicker]:focus::-moz-placeholder,
.form textarea:focus::-moz-placeholder, .form select:focus::-moz-placeholder,
.form .input-overlay:focus::-moz-placeholder {
  color: rgba(34, 34, 34, 0.2);
}
[id*=form_form_] input[type=text]:focus:-ms-input-placeholder,
[id*=form_form_] input[type=number]:focus:-ms-input-placeholder,
[id*=form_form_] input[type=email]:focus:-ms-input-placeholder,
[id*=form_form_] input[type=phone]:focus:-ms-input-placeholder,
[id*=form_form_] input[type=url]:focus:-ms-input-placeholder,
[id*=form_form_] input[type=datepicker]:focus:-ms-input-placeholder,
[id*=form_form_] textarea:focus:-ms-input-placeholder, [id*=form_form_] select:focus:-ms-input-placeholder,
[id*=form_form_] .input-overlay:focus:-ms-input-placeholder, .form input[type=text]:focus:-ms-input-placeholder,
.form input[type=number]:focus:-ms-input-placeholder,
.form input[type=email]:focus:-ms-input-placeholder,
.form input[type=phone]:focus:-ms-input-placeholder,
.form input[type=url]:focus:-ms-input-placeholder,
.form input[type=datepicker]:focus:-ms-input-placeholder,
.form textarea:focus:-ms-input-placeholder, .form select:focus:-ms-input-placeholder,
.form .input-overlay:focus:-ms-input-placeholder {
  color: rgba(34, 34, 34, 0.2);
}
[id*=form_form_] textarea, .form textarea {
  height: 125px;
  overflow: auto;
  line-height: 1.2;
  padding: 10px;
  border: 1px solid #C09951;
  resize: vertical;
}
[id*=form_form_] input[type=checkbox],
[id*=form_form_] input[type=radio], .form input[type=checkbox],
.form input[type=radio] {
  padding: 0;
  margin-right: 6px;
  vertical-align: top;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] input[type=checkbox],
  [id*=form_form_] input[type=radio], .form input[type=checkbox],
  .form input[type=radio] {
    margin-right: 5px;
  }
}
[id*=form_form_] input[type=datepicker], [id*=form_form_] .input-overlay, .form input[type=datepicker], .form .input-overlay {
  width: 100%;
  float: left;
}
[id*=form_form_] .ui-datepicker-trigger, .form .ui-datepicker-trigger {
  display: none;
}
[id*=form_form_] .input-overlay, .form .input-overlay {
  opacity: 0;
  margin-top: -40px;
  clear: both;
}
[id*=form_form_] .ui-datepicker-trigger, .form .ui-datepicker-trigger {
  float: left;
  position: static;
}
[id*=form_form_] .select-wrapper, .form .select-wrapper {
  width: 100%;
}
[id*=form_form_] .select-wrapper select, .form .select-wrapper select {
  padding-right: 30px;
  font-family: "Museo Sans", sans-serif;
}
[id*=form_form_] .select-wrapper .select-icon, .form .select-wrapper .select-icon {
  right: 10px;
}
[id*=form_form_] [type=submit], .form [type=submit] {
  display: block;
  position: relative;
  min-width: 180px;
  color: #222222;
  text-transform: uppercase;
  transition: all 350ms ease-in-out;
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
}
[id*=form_form_] > [type=submit], .form > [type=submit] {
  margin-top: 20px;
}
[id*=form_form_] .g-recaptcha, .form .g-recaptcha {
  display: flex;
  justify-content: flex-start;
}
[id*=form_form_] .g-recaptcha > div, .form .g-recaptcha > div {
  transition: box-shadow 1750ms;
}
[id*=form_form_] .g-recaptcha > div.error, .form .g-recaptcha > div.error {
  box-shadow: 0 0 0 2px red;
  transition: box-shadow 0ms;
}
[id*=form_form_] .form-builder-field, .form .form-builder-field {
  position: relative;
  width: 100%;
  clear: both;
}
[id*=form_form_] .form-builder-field p, .form .form-builder-field p {
  margin-bottom: 0;
  padding-bottom: 0;
}
[id*=form_form_] .form-builder-field p + p, .form .form-builder-field p + p {
  margin-top: 20px;
}
[id*=form_form_] .form-builder-field[class*=inputhidden], .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, .form .form-builder-field[class*=inputcheckbox] > label, .form .form-builder-field[class*=checkboxgroup] > label, .form .form-builder-field[class*=radiogroup] > label {
  position: relative;
  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, .form .form-builder-field[class*=inputcheckbox] .radio-label, .form .form-builder-field[class*=inputcheckbox] .checkbox-label, .form .form-builder-field[class*=checkboxgroup] .radio-label, .form .form-builder-field[class*=checkboxgroup] .checkbox-label, .form .form-builder-field[class*=radiogroup] .radio-label, .form .form-builder-field[class*=radiogroup] .checkbox-label {
  text-transform: none;
  font-size: 16px;
  line-height: 1.75;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [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, .form .form-builder-field[class*=inputcheckbox] .radio-label, .form .form-builder-field[class*=inputcheckbox] .checkbox-label, .form .form-builder-field[class*=checkboxgroup] .radio-label, .form .form-builder-field[class*=checkboxgroup] .checkbox-label, .form .form-builder-field[class*=radiogroup] .radio-label, .form .form-builder-field[class*=radiogroup] .checkbox-label {
    margin-bottom: 10px;
  }
}
[id*=form_form_] .form-builder-field[class*=inputcheckbox] > p, [id*=form_form_] .form-builder-field[class*=checkboxgroup] > p, [id*=form_form_] .form-builder-field[class*=radiogroup] > p, .form .form-builder-field[class*=inputcheckbox] > p, .form .form-builder-field[class*=checkboxgroup] > p, .form .form-builder-field[class*=radiogroup] > p {
  margin-bottom: 10px;
}
[id*=form_form_] .form-builder-field .compliance, .form .form-builder-field .compliance {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
[id*=form_form_] .form-builder-field .compliance em, .form .form-builder-field .compliance em {
  margin: 14px 0 0 0;
}
[id*=form_form_] .form-builder-field .compliance input[type=checkbox], .form .form-builder-field .compliance input[type=checkbox] {
  margin: 5px 5px 0 0;
}
[id*=form_form_] .form-builder-field .compliance > label, .form .form-builder-field .compliance > label {
  width: auto;
  text-transform: none;
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: normal;
}
[id*=form_form_] .form-builder-group, .form .form-builder-group {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  margin: 0 0 0 -20px;
}
[id*=form_form_] .form-builder-group.columns-2 .form-builder-field, .form .form-builder-group.columns-2 .form-builder-field {
  width: calc(50% - 20px);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-2 .form-builder-field, .form .form-builder-group.columns-2 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-3 .form-builder-field, .form .form-builder-group.columns-3 .form-builder-field {
  width: calc(33.33% - 20px);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-3 .form-builder-field, .form .form-builder-group.columns-3 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.columns-4 .form-builder-field, .form .form-builder-group.columns-4 .form-builder-field {
  width: calc(25% - 20px);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.columns-4 .form-builder-field, .form .form-builder-group.columns-4 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field, .form .form-builder-group.prop-2-to-1 .form-builder-field {
  width: calc(66.66% - 20px);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  [id*=form_form_] .form-builder-group.prop-2-to-1 .form-builder-field, .form .form-builder-group.prop-2-to-1 .form-builder-field {
    width: 100%;
  }
}
[id*=form_form_] .form-builder-group.standard input::-moz-placeholder, .form .form-builder-group.standard input::-moz-placeholder {
  color: #222222;
  margin-bottom: -10px;
  position: relative;
  top: 0;
  font-family: "Museo Sans", sans-serif;
  text-transform: uppercase;
}
[id*=form_form_] .form-builder-group.standard input::placeholder, .form .form-builder-group.standard input::placeholder {
  color: #222222;
  margin-bottom: -10px;
  position: relative;
  top: 0;
  font-family: "Museo Sans", sans-serif;
  text-transform: uppercase;
}
[id*=form_form_] .form-builder-group.standard a, .form .form-builder-group.standard a {
  color: #222222;
  text-decoration: initial;
}
[id*=form_form_] .form-builder-group.standard p, .form .form-builder-group.standard p {
  color: #222222;
  font-family: "Museo Sans", sans-serif;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field, .form .form-builder-group.standard .form-builder-field {
  margin-bottom: 16px;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field input:not([type=submit]), .form .form-builder-group.standard .form-builder-field input:not([type=submit]) {
  font-family: "Museo Sans", sans-serif;
  padding-top: 4px;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field label, .form .form-builder-group.standard .form-builder-field label {
  display: none;
  font-family: "Museo Sans", sans-serif;
  text-transform: uppercase;
  margin: 12px 0 8px 0;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.input-checkbox, .form .form-builder-group.standard .form-builder-field.input-checkbox {
  display: flex;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.input-checkbox label, .form .form-builder-group.standard .form-builder-field.input-checkbox label {
  margin-top: 12px;
  flex-direction: column-reverse;
  display: flex;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.input-checkbox p + p, .form .form-builder-group.standard .form-builder-field.input-checkbox p + p {
  margin-top: 18px;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field .button, [id*=form_form_] .form-builder-group.standard .form-builder-field input[type=submit].button, .form .form-builder-group.standard .form-builder-field .button, .form .form-builder-group.standard .form-builder-field input[type=submit].button {
  margin-top: 24px;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.multi-select select, .form .form-builder-group.standard .form-builder-field.multi-select select {
  height: 100px;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.multi-select .select-icon, .form .form-builder-group.standard .form-builder-field.multi-select .select-icon {
  display: none;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.multi-select option, .form .form-builder-group.standard .form-builder-field.multi-select option {
  margin: 6px 0;
  text-transform: uppercase;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.multi-select option:checked, .form .form-builder-group.standard .form-builder-field.multi-select option:checked {
  background-color: #48633D;
  color: #FFFFFF;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.input-checkbox label, .form .form-builder-group.standard .form-builder-field.input-checkbox label {
  display: flex;
  flex-direction: row;
  text-transform: none;
  margin: 0;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field.input-checkbox a, .form .form-builder-group.standard .form-builder-field.input-checkbox a {
  display: contents;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field textarea::-moz-placeholder, .form .form-builder-group.standard .form-builder-field textarea::-moz-placeholder {
  font: 400 13px/18px "Museo Sans", sans-serif;
  color: #222222;
  text-transform: uppercase;
  font-weight: 400;
}
[id*=form_form_] .form-builder-group.standard .form-builder-field textarea,
[id*=form_form_] .form-builder-group.standard .form-builder-field textarea input,
[id*=form_form_] .form-builder-group.standard .form-builder-field textarea::placeholder, .form .form-builder-group.standard .form-builder-field textarea,
.form .form-builder-group.standard .form-builder-field textarea input,
.form .form-builder-group.standard .form-builder-field textarea::placeholder {
  font: 400 13px/18px "Museo Sans", sans-serif;
  color: #222222;
  text-transform: uppercase;
  font-weight: 400;
}

.custom-checkbox, .custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2em;
  line-height: 1.4em;
  /* Tablet Landscape */
}
.custom-checkbox:before, .custom-radio:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 16px;
  transition: transform 175ms;
  border: 1px solid #C09951;
}
@media only screen and (min-width: 1024px) {
  .custom-checkbox:hover:before, .custom-radio:hover:before {
    transform: scale(1.1);
  }
  .custom-checkbox:active:before, .custom-radio:active:before {
    transform: scale(1);
  }
}
.custom-checkbox:after, .custom-radio:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 2px;
  width: 13px;
  height: 8px;
  border-bottom: 2px solid #222222;
  border-left: 2px solid #222222;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 175ms 116.6666666667ms, opacity 175ms, visibility 175ms;
  pointer-events: none;
}
.custom-checkbox.checked:after, .custom-radio.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 116.6666666667ms, opacity 116.6666666667ms, visibility 116.6666666667ms;
}
.custom-checkbox input, .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.custom-checkbox.active, .custom-radio.active {
  color: #000;
}

.custom-radio:before {
  border-radius: 50%;
}
.custom-radio:after {
  border: none;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 3px;
  border-radius: 50%;
  transform: scale(2);
  background: #222222;
}
.custom-radio.checked:after {
  transform: scale(1);
}

.map-content-popup {
  width: 288px;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
}
.map-content-popup.shadow, .map-content-popup .shadow {
  opacity: 1;
  background-color: rgb(255, 255, 255);
}
.map-content-popup .left {
  padding: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map-content-popup .left .hotel-name {
  font-family: "Museo Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.map-content-popup .left .hotel-address,
.map-content-popup .left .hotel-phone,
.map-content-popup .left .hotel-email {
  font-family: "Museo Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
}
.map-content-popup .left .hotel-address,
.map-content-popup .left .hotel-phone {
  padding: 0 54px;
}
.map-content-popup .left .hotel-email {
  color: #222222;
  text-decoration: none;
  margin-top: 4px;
}
.map-content-popup .left .hotel-email::before {
  content: "E: ";
  text-decoration: none;
  color: #222222;
}
.map-content-popup .left .hotel-email span.email-text {
  text-decoration: underline;
}
.map-content-popup .left .hotel-email:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.map-content-popup .left .hotel-address {
  margin-bottom: 16px;
}
.map-content-popup .left .hotel-address.points {
  margin-bottom: 0;
}
.map-content-popup .left a.hotel-directions {
  margin-top: 16px;
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  display: inline-block;
  color: #48633D;
}
.map-content-popup .left a.hotel-directions:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.map-content-popup .left a.hotel-directions:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.map-content-popup .right {
  background: #27647f;
  padding: 32px 10px;
  display: flex;
  align-items: center;
}
.map-content-popup .right img {
  width: 80px;
  height: 40px;
}
.map-content-popup .pointer {
  border: solid 10px transparent;
  border-right-color: #fff;
  position: absolute;
  margin: 132px 0 0 129px;
  transform: rotate(-90deg);
}

.poi-acm {
  background: #FFFFFF;
  padding: 0 64px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-acm {
    padding: 0;
  }
}
.poi-acm.hide-overlay .poi-overlay {
  display: none;
}
.poi-acm .main-heading {
  opacity: 1;
  font-style: normal;
  text-align: left;
  position: relative;
  text-transform: uppercase;
  top: 48px;
  white-space: nowrap;
  z-index: 1;
  left: 50px;
  width: 0%;
  color: #C09951;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .main-heading {
    white-space: wrap;
    top: 35px;
    left: auto;
    text-align: center;
    margin: 0 auto;
    width: auto;
    font-family: "MuseoSansCondensed", sans-serif;
    font-size: 58px;
    font-style: normal;
    font-weight: 250;
    line-height: 57px;
  }
}
.poi-acm .center-column {
  padding: 0;
}
.poi-acm .left-header-sub-header-right-desc-link {
  padding: 85px 120px;
  gap: 70px;
  justify-content: center;
  visibility: visible;
  transition: opacity 1s ease, max-height 1s ease, visibility 1s ease;
  max-height: 800px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-acm .left-header-sub-header-right-desc-link {
    padding: 24px 32px 53px 32px;
    gap: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .poi-acm .left-header-sub-header-right-desc-link {
    padding: 40px 20px;
    gap: 24px;
  }
}
.poi-acm .left-header-sub-header-right-desc-link.hide {
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  padding: 0;
  transition: opacity 1s ease, max-height 1s ease, visibility 1s ease;
}
.poi-acm .left-header-sub-header-right-desc-link .left-content {
  max-width: 366px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .left-header-sub-header-right-desc-link .left-content {
    max-width: initial;
  }
}
.poi-acm .left-header-sub-header-right-desc-link .left-content .small-title {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222222;
}
.poi-acm .left-header-sub-header-right-desc-link .left-content h2 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  padding-top: 16px;
  width: 366px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-acm .left-header-sub-header-right-desc-link .left-content h2 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .poi-acm .left-header-sub-header-right-desc-link .left-content h2 {
    margin-bottom: 0;
    width: 100%;
  }
}
.poi-acm .left-header-sub-header-right-desc-link .right-content {
  max-width: 624px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .left-header-sub-header-right-desc-link .right-content {
    max-width: initial;
  }
}
.poi-acm .left-header-sub-header-right-desc-link .right-content p {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 24px;
  padding-bottom: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-acm .left-header-sub-header-right-desc-link .right-content p {
    font-size: 14px;
    letter-spacing: 0.4px;
    margin-bottom: 35px;
  }
}
.poi-acm .left-header-sub-header-right-desc-link a {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.poi-acm .select-wrapper {
  display: inline-block;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .select-wrapper {
    width: 100%;
    padding-right: 16px;
  }
}
.poi-acm .select-wrapper select {
  border-left: unset;
  border-right: unset;
  border-top: unset;
  border-bottom: 1px solid #48633D;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-left: 0;
  height: 28px;
  color: #222222;
  width: 100%;
  background-color: transparent;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .select-wrapper select {
    width: 100%;
  }
}
.poi-acm .select-wrapper select option {
  padding-left: 10px;
}
.poi-acm .select-wrapper .select-icon {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .select-wrapper .select-icon {
    right: 18px;
  }
}
.poi-acm .poi-properties-container .category-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  max-width: 1440px;
  margin: auto;
  position: relative;
  transition: 350ms ease-in-out;
  padding-right: 46px;
  transition: transform 1s ease, padding-top 1s ease;
  /* Tablet Landscape */
}
@media (min-width: 1200px) {
  .poi-acm .poi-properties-container .category-wrapper {
    transform: translateY(-220px);
  }
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-properties-container .category-wrapper {
    padding-right: initial;
  }
}
.poi-acm .poi-properties-container .category-wrapper .category-label {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.poi-acm .poi-properties-container.state-selected {
  padding-top: 145px;
}
.poi-acm .poi-properties-container.state-selected .category-wrapper {
  transform: translateY(0);
  transition: transform 1s ease, padding-top 1s ease;
}
.poi-acm .poi-properties-container.state-selected .main-heading {
  top: unset;
}
@media (max-width: 1199px) {
  .poi-acm .poi-properties-container .main-heading {
    top: unset;
    text-wrap: auto;
    padding: 0 32px 20px 32px;
  }
}
.poi-acm .poi-properties-container .category-label {
  max-width: 298px;
  width: 100%;
  margin-left: auto;
}
.poi-acm .poi-properties-container .select-wrapper {
  display: flex;
  position: relative;
  justify-content: end;
  max-width: 1440px;
  margin-left: auto;
  max-width: 298px;
  width: 100%;
}
.poi-acm .poi-properties-container .select-wrapper select {
  width: 100%;
}
.poi-acm .poi-properties-container .category-label,
.poi-acm .poi-properties-container .select-wrapper {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-properties-container .category-label,
  .poi-acm .poi-properties-container .select-wrapper {
    margin: auto;
  }
}
.poi-acm .poi-properties-container .poi-properties.specials-wrapper.list-special {
  max-width: 1440px;
  padding-top: 60px;
  width: 100%;
  padding-inline: 0;
  display: grid;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-acm .poi-properties-container .poi-properties.specials-wrapper.list-special {
    width: 100%;
    display: flex;
  }
}
@media (min-width: 1434px) {
  .poi-acm .poi-properties-container .poi-properties.specials-wrapper.list-special {
    grid-template-columns: repeat(3, 1fr);
  }
}
.poi-acm .poi-properties-container .poi-properties.specials-wrapper.list-special .slide.hide {
  display: none;
}

.poi {
  overflow: hidden;
  position: relative;
}
.poi .leaflet-popup-content-wrapper {
  border-radius: initial;
  padding: 0;
}
.poi .leaflet-popup-close-button {
  display: none;
}

.leaflet-popup-content-wrapper {
  border-radius: 0;
}

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

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

.poi-zoom {
  color: #222222;
  font-size: 14px;
  line-height: 22px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  margin: 20px 0;
  font-family: "Montserrat";
  /* Tablet Landscape */
}
.poi-zoom .poi-zoom-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -100em;
  text-align: left;
}
.poi-zoom .poi-zoom-button:after {
  content: "";
  background: #222222;
  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: #222222;
  display: block;
  width: 1px;
  height: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.poi-map {
  height: 800px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .poi-map {
    height: 480px;
  }
}

.poi-overlay {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 2; /*9*/
  left: 52px;
  top: 33%;
  max-width: 298px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-overlay {
    display: none;
  }
  .poi-overlay.show {
    display: flex;
    top: initial;
    left: initial;
  }
}
.poi-overlay .hide-overlay {
  display: none;
}
.poi-overlay .header {
  background-color: #C09951;
  width: 100% !important;
}
.poi-overlay .header img {
  display: flex;
  justify-content: center;
  margin: auto;
  height: 48px;
  width: 48px;
  padding: 10px;
}
.poi-overlay .inner-title {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.poi-overlay .inner-description {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}
.poi-overlay .parent-category-wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.poi-overlay .parent-category-wrapper .category-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.poi-overlay .parent-category-wrapper .category-wrapper .category-label {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.poi-overlay .category-selector {
  display: flex;
  flex-direction: column;
}
.poi-overlay .category-selector button.button {
  padding: 10px;
  margin: 0;
  text-align: left;
  border: none;
  border-radius: 0 !important;
  background-color: #fff;
  cursor: pointer;
  color: #48633D;
}
.poi-overlay .category-selector button.button:hover, .poi-overlay .category-selector button.button:focus {
  outline: none;
  border: none !important;
  background-color: #48633D;
  color: #FFFFFF;
}
.poi-overlay .category-selector button.button.active {
  background-color: #48633D;
  color: #FFFFFF;
}
.poi-overlay .category-selector .select-wrapper {
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .poi-overlay .category-selector .select-wrapper {
    margin-top: 0px;
  }
}
.poi-overlay .category-selector .select-wrapper select {
  width: 100%;
  padding: 10px;
  border: none;
  background-color: #fff;
  cursor: pointer;
}

#map {
  height: 515px;
  z-index: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #map {
    height: 480px;
  }
}
#map .leaflet-control-container .leaflet-top.leaflet-left {
  right: 14px;
  bottom: 16px;
  left: unset;
  top: unset;
}
#map .leaflet-bar a {
  color: #666666;
}
#map .leaflet-bar a.leaflet-disabled {
  color: #bbb;
}

.poi-overlay .category-selector button.button, .button.icon-shopping-dining.deafultBtn {
  padding: 10px;
  margin: 0;
  text-align: left;
  border: none;
  border-radius: 0 !important;
  background-color: #fff;
  cursor: pointer;
  color: #48633D;
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
}
.poi-overlay .category-selector button.button.hover, .button.icon-shopping-dining.deafultBtn.hover {
  background-color: #48633D;
  color: #FFFFFF;
}

.poi-overlay .category-selector button.button.active, .button.icon-shopping-dining.deafultBtn.active {
  background-color: #48633D;
  color: #FFFFFF;
  text-align: center;
}

.leaflet-popup-content {
  margin: 0px !important;
}

.poi-overlay_old {
  text-align: center;
  /* Tablet Landscape */
}
.poi-overlay_old .category-selector {
  margin: 0;
  /* Tablet Landscape */
}
.poi-overlay_old .category-selector .button {
  padding-left: 45px;
}
.poi-overlay_old .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_old .category-selector .button.icon-restaurants-bars:before {
  background-position: -10px -10px;
}
.poi-overlay_old .category-selector .button.icon-shopping:before {
  background-position: -70px -10px;
}
.poi-overlay_old .category-selector .button.icon-zoo:before {
  background-position: -130px -10px;
}
.poi-overlay_old .category-selector .button.icon-theme-parks:before {
  background-position: -190px -10px;
}
.poi-overlay_old .category-selector .button.icon-wineries:before {
  background-position: -250px -10px;
}
.poi-overlay_old .category-selector .button.icon-breakfast:before {
  background-position: -310px -10px;
}
.poi-overlay_old .category-selector .button.icon-attractions:before {
  background-position: -370px -10px;
}
.poi-overlay_old .category-selector .button.icon-places-for-children:before {
  background-position: -430px -10px;
}
.poi-overlay_old .category-selector .button.icon-museums:before {
  background-position: -490px -10px;
}
.poi-overlay_old .category-selector .button.icon-national-monuments:before {
  background-position: -550px -10px;
}
.poi-overlay_old .category-selector .button.icon-farmer-markets:before {
  background-position: -610px -10px;
}
.poi-overlay_old .category-selector .button.icon-nightlife:before {
  background-position: -670px -10px;
}
.poi-overlay_old .category-selector .button.icon-arts-culture:before {
  background-position: -730px -10px;
}
.poi-overlay_old .category-selector .button.icon-hospitals:before {
  background-position: -790px -10px;
}
.poi-overlay_old .category-selector .button.icon-banks:before {
  background-position: -850px -10px;
}
.poi-overlay_old .category-selector .button.icon-spas:before {
  background-position: -910px -10px;
}
.poi-overlay_old .category-selector .button.icon-gardens:before {
  background-position: -970px -10px;
}
.poi-overlay_old .category-selector .button.icon-cafes:before {
  background-position: -1030px -10px;
}
.poi-overlay_old .category-selector .button.icon-entertainment:before {
  background-position: -1090px -10px;
}
.poi-overlay_old .category-selector .button.icon-golf:before {
  background-position: -1150px -10px;
}
.poi-overlay_old .category-selector .button.icon-romantic-spots:before {
  background-position: -1210px -10px;
}
.poi-overlay_old .category-selector .button.icon-hidden-gems:before {
  background-position: -1270px -10px;
}
.poi-overlay_old .category-selector .button.icon-corporate-offices:before {
  background-position: -1330px -10px;
}
.poi-overlay_old .category-selector .button.icon-outdoors:before {
  background-position: -1390px -10px;
}
.poi-overlay_old .category-selector .button.icon-lakes:before {
  background-position: -1450px -10px;
}
.poi-overlay_old .category-selector .button.icon-rivers:before {
  background-position: -1510px -10px;
}
.poi-overlay_old .category-selector .button.icon-beaches:before {
  background-position: -1570px -10px;
}
.poi-overlay_old .category-selector .button.icon-hiking:before {
  background-position: -1630px -10px;
}
.poi-overlay_old .category-selector .button.icon-places-of-worship:before {
  background-position: -1690px -10px;
}
.poi-overlay_old .category-selector .button.icon-sports:before {
  background-position: -1750px -10px;
}
.poi-overlay_old .category-selector .button.icon-universities:before {
  background-position: -1810px -10px;
}

.eat-n-drink {
  background-color: #F9F8F3;
  padding-block: 10px 98px;
  background: url("../images/texture-dots-stain.png") right 31% no-repeat, #F9F8F3;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .eat-n-drink {
    padding-bottom: 20px;
  }
}
.eat-n-drink .img-group {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .eat-n-drink .img-group {
    flex-direction: column;
  }
}
.eat-n-drink .img-group .big-left-image {
  width: 58%;
  left: 50px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .eat-n-drink .img-group .big-left-image {
    width: 92%;
    left: auto;
  }
}
.eat-n-drink .img-group .small-right-image {
  width: 40%;
  left: -3%;
  position: relative;
  border: 8px solid #fff;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .eat-n-drink .img-group .small-right-image {
    width: 81%;
    left: auto;
    top: -28px;
    border-width: 6px;
  }
}

.single-image-text-n-header {
  padding: 100px 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .single-image-text-n-header {
    padding: 50px 0;
  }
}
.single-image-text-n-header .image-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  padding-left: 0px;
  margin-bottom: 21px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block {
    flex-direction: column;
    padding: 0;
    margin: 0 10px;
  }
}
.single-image-text-n-header .image-block:after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 8px;
  left: 40px;
  top: 0px;
  height: 100%;
  width: calc(100% - 6vw);
  z-index: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block:after {
    right: auto;
    left: 3vw;
    top: -3vw;
    height: 100%;
    width: 88vw;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .single-image-text-n-header .image-block:after {
    width: calc(100% - 6vw);
  }
}
.single-image-text-n-header .image-block .thumbnail {
  position: relative;
  left: 20px;
  width: 50%;
  z-index: 9999;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .thumbnail {
    width: 100%;
    left: auto;
    margin: 0 auto;
    position: relative;
  }
}
.single-image-text-n-header .image-block .thumbnail img {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .thumbnail img {
    width: 100%;
  }
}
.single-image-text-n-header .image-block .thumbnail.no-gallery img {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .thumbnail.no-gallery img {
    height: 216px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.single-image-text-n-header .image-block .thumbnail .image-slideshow {
  width: 562px;
  margin-bottom: 0;
  height: 316px;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .single-image-text-n-header .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-image-text-n-header .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media (max-device-width: 1200px) {
  .single-image-text-n-header .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .thumbnail .image-slideshow {
    width: 100%;
    height: 216px;
  }
}
.single-image-text-n-header .image-block .thumbnail .image-slideshow .slide {
  height: 100%;
}
.single-image-text-n-header .image-block .thumbnail .image-slideshow .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.single-image-text-n-header .image-block .thumbnail .image-slideshow .image img {
  width: 100%;
}
.single-image-text-n-header .image-block .thumbnail .image-slideshow.rooms-gallery {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .thumbnail .image-slideshow.rooms-gallery {
    width: 100%;
  }
}
.single-image-text-n-header .image-block .right {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  z-index: 1;
  padding-right: 10px;
  text-align: left;
  gap: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .right {
    width: 100%;
    position: relative;
    left: auto;
    margin: 15px 0 30px;
    padding-left: 41px;
  }
}
.single-image-text-n-header .image-block .right h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .right h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
  }
}
.single-image-text-n-header .image-block .right h2 {
  text-transform: uppercase;
  font: 400 30px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 30px;
  color: #222222;
}
.single-image-text-n-header .image-block .right p {
  font: 400 14px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 14px;
  color: #222222;
  line-height: 24px;
  width: 70%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header .image-block .right p {
    width: 88%;
  }
}
.single-image-text-n-header .image-block .right ul {
  list-style-position: inside;
  font: 400 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #222222;
}
.single-image-text-n-header .image-block .right ul li {
  list-style-type: disc;
  line-height: 24px;
}
.single-image-text-n-header .image-block .right .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  width: max-content;
}
.single-image-text-n-header .image-block .right .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.single-image-text-n-header .image-block .right .button {
  width: -moz-max-content;
  width: max-content;
}
.single-image-text-n-header .image-block .right .buttons-holder {
  display: flex;
  gap: 24px;
  align-items: center;
}
.single-image-text-n-header .container {
  padding: 0 80px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .single-image-text-n-header .container {
    padding: 0 0px;
  }
}

.single-image-text-n-header.grid {
  position: relative;
  padding: 0px 0;
}
.single-image-text-n-header.grid .grid-wrapper {
  position: relative;
  margin-block: 4%;
}
.single-image-text-n-header.grid::after {
  position: relative;
}
.single-image-text-n-header.grid .image-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  padding-left: 0px;
  margin-bottom: 21px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block {
    flex-direction: column;
    padding: 0;
    margin: 0 10px;
  }
}
.single-image-text-n-header.grid .image-block:after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 8px;
  left: 40px;
  top: 0px;
  height: 100%;
  width: calc(100% - 6vw);
  z-index: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block:after {
    right: auto;
    left: 3vw;
    top: -3vw;
    height: 100%;
    width: 88vw;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .single-image-text-n-header.grid .image-block:after {
    width: calc(100% - 6vw);
  }
}
.single-image-text-n-header.grid .image-block .thumbnail {
  position: relative;
  left: 20px;
  width: 50%;
  z-index: 9999;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail {
    width: 100%;
    left: auto;
    margin: 0 auto;
    position: relative;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail img {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail img {
    width: 100%;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail.no-gallery img {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail.no-gallery img {
    height: 216px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail .image-slideshow {
  width: 562px;
  margin-bottom: 0;
  height: 316px;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .single-image-text-n-header.grid .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .single-image-text-n-header.grid .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media (max-device-width: 1200px) {
  .single-image-text-n-header.grid .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail .image-slideshow {
    width: 100%;
    height: 216px;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail .image-slideshow .slide {
  height: 100%;
}
.single-image-text-n-header.grid .image-block .thumbnail .image-slideshow .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.single-image-text-n-header.grid .image-block .thumbnail .image-slideshow .image img {
  width: 100%;
}
.single-image-text-n-header.grid .image-block .thumbnail .image-slideshow.rooms-gallery {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail .image-slideshow.rooms-gallery {
    width: 100%;
  }
}
.single-image-text-n-header.grid .image-block .right {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  z-index: 1;
  padding-right: 10px;
  text-align: left;
  gap: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .right {
    width: 100%;
    position: relative;
    left: auto;
    margin: 15px 0 30px;
    padding-left: 41px;
  }
}
.single-image-text-n-header.grid .image-block .right h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .right h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
  }
}
.single-image-text-n-header.grid .image-block .right h2 {
  text-transform: uppercase;
  font: 400 30px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 30px;
  color: #222222;
}
.single-image-text-n-header.grid .image-block .right p {
  font: 400 14px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 14px;
  color: #222222;
  line-height: 24px;
  width: 70%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .right p {
    width: 88%;
  }
}
.single-image-text-n-header.grid .image-block .right ul {
  list-style-position: inside;
  font: 400 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #222222;
}
.single-image-text-n-header.grid .image-block .right ul li {
  list-style-type: disc;
  line-height: 24px;
}
.single-image-text-n-header.grid .image-block .right .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  width: max-content;
}
.single-image-text-n-header.grid .image-block .right .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.single-image-text-n-header.grid .image-block .right .button {
  width: -moz-max-content;
  width: max-content;
}
.single-image-text-n-header.grid .image-block .right .buttons-holder {
  display: flex;
  gap: 24px;
  align-items: center;
}
.single-image-text-n-header.grid .container.center-column {
  max-width: 1315px;
}
.single-image-text-n-header.grid .image-block {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .single-image-text-n-header.grid .image-block {
    margin-bottom: 50px;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail {
  left: 20px;
  z-index: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .single-image-text-n-header.grid .image-block .thumbnail {
    left: auto;
    padding: 0 0px;
  }
}
.single-image-text-n-header.grid .image-block .thumbnail img {
  width: 98%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .thumbnail img {
    width: 100%;
  }
}
.single-image-text-n-header.grid .image-block .right {
  width: 44%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-image-text-n-header.grid .image-block .right {
    width: 100%;
  }
}
.single-image-text-n-header.grid .image-block .right h2 {
  width: 90%;
  font-size: 26px;
  font-family: "InsigniaProRoman", sans-serif;
  color: #222222;
}
.single-image-text-n-header.grid .image-block .right p {
  width: 90%;
  max-width: 400px;
  font-family: "Museo Sans", sans-serif;
}
.single-image-text-n-header.grid .image-block .right h2, .single-image-text-n-header.grid .image-block .right p {
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  .single-image-text-n-header.grid .image-block .right h2, .single-image-text-n-header.grid .image-block .right p {
    max-width: 400px;
  }
}

.image-with-right-content {
  position: relative;
  padding: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content {
    padding: 0 30px;
    margin: 56px 0 66px 0;
  }
}
.image-with-right-content .grid-wrapper {
  position: relative;
  margin-block: 100px 150px;
  gap: 55px;
  display: grid;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .grid-wrapper {
    margin-block: 0;
    gap: 0;
  }
}
.image-with-right-content::after {
  position: relative;
}
.image-with-right-content .image-block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px;
  padding-left: 0px;
  margin-bottom: 21px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block {
    flex-direction: column;
    padding: 0;
    margin: 0 10px;
  }
}
.image-with-right-content .image-block:after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 8px;
  left: 40px;
  top: 0px;
  height: 100%;
  width: calc(100% - 6vw);
  z-index: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block:after {
    right: auto;
    left: 3vw;
    top: -3vw;
    height: 100%;
    width: 88vw;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .image-with-right-content .image-block:after {
    width: calc(100% - 6vw);
  }
}
.image-with-right-content .image-block .thumbnail {
  position: relative;
  left: 20px;
  width: 50%;
  z-index: 9999;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail {
    width: 100%;
    left: auto;
    margin: 0 auto;
    position: relative;
  }
}
.image-with-right-content .image-block .thumbnail img {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail img {
    width: 100%;
  }
}
.image-with-right-content .image-block .thumbnail.no-gallery img {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail.no-gallery img {
    height: 216px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.image-with-right-content .image-block .thumbnail .image-slideshow {
  width: 562px;
  margin-bottom: 0;
  height: 316px;
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .image-with-right-content .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .image-with-right-content .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media (max-device-width: 1200px) {
  .image-with-right-content .image-block .thumbnail .image-slideshow {
    width: 90%;
    height: 216px;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail .image-slideshow {
    width: 100%;
    height: 216px;
  }
}
.image-with-right-content .image-block .thumbnail .image-slideshow .slide {
  height: 100%;
}
.image-with-right-content .image-block .thumbnail .image-slideshow .slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.image-with-right-content .image-block .thumbnail .image-slideshow .image img {
  width: 100%;
}
.image-with-right-content .image-block .thumbnail .image-slideshow.rooms-gallery {
  width: 90%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail .image-slideshow.rooms-gallery {
    width: 100%;
  }
}
.image-with-right-content .image-block .right {
  display: flex;
  flex-direction: column;
  width: 50%;
  justify-content: center;
  z-index: 1;
  padding-right: 10px;
  text-align: left;
  gap: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .right {
    width: 100%;
    position: relative;
    left: auto;
    margin: 15px 0 30px;
    padding-left: 41px;
  }
}
.image-with-right-content .image-block .right h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .right h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
  }
}
.image-with-right-content .image-block .right h2 {
  text-transform: uppercase;
  font: 400 30px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 30px;
  color: #222222;
}
.image-with-right-content .image-block .right p {
  font: 400 14px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 14px;
  color: #222222;
  line-height: 24px;
  width: 70%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .right p {
    width: 88%;
  }
}
.image-with-right-content .image-block .right ul {
  list-style-position: inside;
  font: 400 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 16px;
  color: #222222;
}
.image-with-right-content .image-block .right ul li {
  list-style-type: disc;
  line-height: 24px;
}
.image-with-right-content .image-block .right .link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  width: max-content;
}
.image-with-right-content .image-block .right .link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.image-with-right-content .image-block .right .button {
  width: -moz-max-content;
  width: max-content;
}
.image-with-right-content .image-block .right .buttons-holder {
  display: flex;
  gap: 24px;
  align-items: center;
}
.image-with-right-content .container.center-column {
  max-width: 1315px;
  padding: 0;
}
.image-with-right-content .image-block {
  min-height: 534px;
  padding: 30px 30px 30px 0;
  margin-bottom: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.image-with-right-content .image-block::after {
  content: unset;
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block {
    padding: 30px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .image-with-right-content .image-block {
    margin: 0;
  }
}
.image-with-right-content .image-block:first-child {
  padding-top: 0;
}
.image-with-right-content .image-block:last-child {
  padding-bottom: 0;
}
.image-with-right-content .image-block .thumbnail {
  left: 20px;
  z-index: 0;
  width: 59%;
  padding: 16px;
  display: flex;
  justify-content: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.image-with-right-content .image-block .thumbnail::after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  top: 0px;
  height: 100%;
  width: 88%;
  z-index: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail::after {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail {
    width: 100%;
    padding: 9px 0;
  }
}
@media only screen and (max-width: 1023px) {
  .image-with-right-content .image-block .thumbnail {
    left: auto;
  }
}
.image-with-right-content .image-block .thumbnail img {
  width: 100%;
  height: 100%;
  max-width: 702px;
  -o-object-fit: cover;
     object-fit: cover;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .thumbnail img {
    width: 100%;
  }
}
.image-with-right-content .image-block .right {
  width: 35%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .image-with-right-content .image-block .right {
    width: 100%;
    padding-left: 0;
    margin: 29px 0 0 0;
  }
}
.image-with-right-content .image-block .right h2 {
  width: 90%;
  font-size: 26px;
  font-family: "InsigniaProRoman", sans-serif;
  color: #48633D;
  text-transform: uppercase;
}
.image-with-right-content .image-block .right .text {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}
.image-with-right-content .image-block .right p {
  width: 90%;
  font-family: "Museo Sans", sans-serif;
}
.image-with-right-content .image-block .right h2, .image-with-right-content .image-block .right p {
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  .image-with-right-content .image-block .right h2, .image-with-right-content .image-block .right p {
    max-width: 400px;
  }
}
.image-with-right-content .image-block .right .black-link {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #222222;
  width: -moz-max-content;
  width: max-content;
  display: block;
}
.image-with-right-content .image-block .right .black-link:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #48633D;
  opacity: 1;
}
.image-with-right-content .image-block .right .black-link:hover {
  color: #C09951;
  transition: 350ms ease-in-out;
}
.image-with-right-content .image-block .right .black-link:hover:after {
  border-bottom: 1px solid #C09951;
  transition: 350ms ease-in-out;
}

.social-feed.acm-section {
  margin: 124px auto;
  text-align: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section {
    margin: 67px auto 75px;
    padding: 0;
  }
}
.social-feed.acm-section h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #48633D;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section h3 {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.social-feed.acm-section a {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  text-transform: lowercase;
  text-decoration: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section a {
    line-height: 16px;
  }
}
.social-feed.acm-section .button {
  margin-top: 50px;
}
.social-feed.acm-section .social-feed-wrapper {
  position: relative;
  padding: 0 50px;
  margin: 40px auto 0px auto;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section .social-feed-wrapper {
    margin-top: 31px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .social-feed.acm-section .social-feed-wrapper {
    padding: 0 30px;
  }
}
.social-feed.acm-section .social-feed-wrapper.loading {
  min-height: 300px;
}
.social-feed.acm-section .social-feed-wrapper.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: #54baba;
  border-bottom-color: #54baba;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.social-feed.acm-section .feed-content {
  display: flex;
  justify-content: center;
}
.social-feed.acm-section .feed-items {
  font-size: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.social-feed.acm-section .feed-items:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section .feed-items {
    flex-direction: row;
    display: flex;
    gap: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .social-feed.acm-section .feed-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: auto;
  }
}
.social-feed.acm-section .feed-items .c-instagram-feed__item {
  display: none;
  /* Tablet Landscape */
  width: 248px;
  height: 248px;
  /* Tablet Landscape */
}
.social-feed.acm-section .feed-items .c-instagram-feed__item:nth-child(-n+4) {
  display: block;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .social-feed.acm-section .feed-items .c-instagram-feed__item:nth-child(-n+3) {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section .feed-items .c-instagram-feed__item {
    width: 30%;
  }
}
.social-feed.acm-section .feed-items .c-instagram-feed__item .inner-wrapper {
  visibility: hidden;
}
.social-feed.acm-section .feed-items .c-instagram-feed__item:nth-child(n+4) {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .social-feed.acm-section .feed-items .c-instagram-feed__item:nth-child(n+4) {
    display: none;
  }
}
.social-feed.acm-section .feed-controls {
  opacity: 0;
  transition: opacity 350ms ease-in-out;
}
.social-feed.acm-section .feed-controls .slideshow-button {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #51555B;
  border-bottom: 0;
  border-left: 0;
  text-indent: -100em;
  overflow: hidden;
  transition: border-color 350ms ease-in-out;
  cursor: pointer;
  z-index: 2;
}
.social-feed.acm-section .feed-controls .slideshow-button:hover {
  border-color: #EACD77;
}
.social-feed.acm-section .feed-controls .slideshow-button.previous {
  left: 20px;
  transform: translate(0, -50%) rotate(-135deg);
}
.social-feed.acm-section .feed-controls .slideshow-button.next {
  right: 20px;
  transform: translate(0, -50%) rotate(45deg);
}
.social-feed.acm-section .social-feed-wrapper:not(.loading) .feed-controls {
  opacity: 1;
}

#calendar-header:after {
  clear: both;
  content: "";
  display: table;
}

#calendar-links {
  float: left;
  /* Tablet Landscape */
}
#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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-links li {
    display: inline-block;
    float: none;
  }
  #calendar-links li:first-child a {
    margin-left: 0;
  }
}
#calendar-links a {
  display: block;
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/cal-sprite.svg") 0 0 no-repeat;
  /* Tablet Landscape */
}
#calendar-links a.ical {
  background-position: -200px -76px;
}
#calendar-links a.ical:hover {
  background-position: -240px -76px;
}
#calendar-links a.print {
  background-position: -200px -116px;
}
#calendar-links a.print:hover {
  background-position: -240px -116px;
}
#calendar-links a.rss {
  background-position: -200px -156px;
}
#calendar-links a.rss:hover {
  background-position: -240px -156px;
}
@media only screen and (max-width: 767px) {
  #calendar-links a {
    display: inline-block;
    margin: 0 0 0 20px;
  }
}

#calendar-filter {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    float: none;
    margin-top: 10px;
    text-align: center;
  }
}
#calendar-filter .calendar-category-buttons {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 103px;
  padding: 10px 30px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter .calendar-category-buttons {
    display: none;
  }
}
#calendar-filter .calendar-category-buttons a {
  color: #222222;
  text-decoration: none;
}
#calendar-filter .calendar-category-buttons a.active {
  color: #48633D;
  padding: 9px 10px;
  border: 1px solid #C09951;
}
#calendar-filter .select-wrapper {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter .select-wrapper {
    margin-bottom: 33px;
    width: 100%;
    padding: 0 16px;
  }
}
#calendar-filter .select-wrapper .select-icon {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter .select-wrapper .select-icon {
    right: 30px;
  }
}
#calendar-filter #calendar-category-filter.mobile-only {
  display: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter #calendar-category-filter.mobile-only {
    display: block;
    width: 100%;
    text-transform: capitalize;
    border-color: #C09951;
  }
}

#calendar-views {
  float: left;
  /* Tablet Landscape */
}
#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;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-views li {
    display: inline-block;
    float: none;
  }
}
#calendar-views a {
  position: relative;
  display: block;
  margin-right: 20px;
  padding-left: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font: 16px/20px "Museo Sans", sans-serif;
  color: #194459;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-views a {
    margin-right: 0;
    margin-left: 20px;
  }
  #calendar-views a.grid {
    margin-left: 0;
  }
}
#calendar-views a:hover, #calendar-views a.active {
  color: #C09951;
}
#calendar-views a:before {
  background: url("../images/cal-sprite.svg") 0 0 no-repeat;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#calendar-views a.grid:before {
  background-position: -200px 0;
}
#calendar-views a.grid:hover:before, #calendar-views a.grid.active:before {
  background-position: -240px 0;
}
#calendar-views a.list:before {
  background-position: -200px -38px;
}
#calendar-views a.list:hover:before, #calendar-views a.list.active:before {
  background-position: -240px -38px;
}

#calendar-breadcrumb {
  padding: 10px 0;
  margin-bottom: 20px;
  font-size: 14px;
}
#calendar-breadcrumb:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb dt, #calendar-breadcrumb dd {
  float: left;
  margin-right: 10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb dt, #calendar-breadcrumb dd {
    float: none;
    display: inline-block;
  }
}

#calendar-year {
  margin-bottom: 20px;
  font-size: 14px;
  /* Tablet Landscape */
}
@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 #C09951;
  color: #194459;
}
#calendar-year a:hover {
  border-color: #C09951;
  color: #C09951;
}
#calendar-year .active a {
  border-color: #194459;
  color: #222222;
}
#calendar-year .active a:hover {
  border-color: #C09951;
  color: #C09951;
}

#calendar-month {
  height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-justify: newspaper;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
}
#calendar-month:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-month:after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  height: 0;
}
#calendar-month li {
  display: inline;
}
#calendar-month a {
  display: inline-block;
  vertical-align: top;
  padding: 0 9px;
  height: 40px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  font: 12px/40px "Museo Sans", sans-serif;
  color: #222222;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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: #C09951;
  color: #FFFFFF;
}
#calendar-month a.active {
  background: #C09951;
  color: #fff;
}
#calendar-month a.active:hover {
  background: #C09951;
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  #calendar-month {
    -moz-text-align-last: auto;
         text-align-last: auto;
  }
  #calendar-month li {
    display: none;
  }
  #calendar-month li.current, #calendar-month li.prev, #calendar-month li.next {
    display: inline-block;
    position: relative;
    vertical-align: top;
    width: 30%;
  }
  #calendar-month li.current a {
    font-size: 12px;
    padding: 0 10px;
    display: block;
  }
  #calendar-month li.prev a, #calendar-month li.next a {
    display: block;
    font-size: 12px;
    padding-right: 0;
    padding-left: 30px;
  }
  #calendar-month li.prev a:after, #calendar-month li.next a:after {
    background: url("../images/cal-sprite.svg") -200px -196px no-repeat;
    content: "";
    display: block;
    position: absolute;
    left: 5px;
    top: 11px;
    width: 11px;
    height: 18px;
  }
  #calendar-month li.prev a:hover, #calendar-month li.next a:hover {
    background-color: transparent;
    color: #C09951;
  }
  #calendar-month li.prev a:hover:after, #calendar-month li.next a:hover:after {
    background-position: -231px -196px;
  }
  #calendar-month li.prev a:active, #calendar-month li.next a:active {
    top: auto;
  }
  #calendar-month li.next a {
    padding-left: 0;
    padding-right: 30px;
  }
  #calendar-month li.next a:after {
    background-position: -200px -234px;
    left: auto;
    right: 5px;
  }
  #calendar-month li.next a:hover:after {
    background-position: -231px -234px;
  }
}

.content-wrapper.calendar-text {
  margin-bottom: 0 !important;
  /* Tablet Landscape */
}
@media only screen and (min-width: 1024px) {
  .content-wrapper.calendar-text {
    padding: 0 80px;
  }
}
.content-wrapper.calendar-text .calendar-header {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .content-wrapper.calendar-text .calendar-header {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 1px;
    text-align: center;
  }
}
@media only screen and (max-width: 1023px) {
  .content-wrapper.calendar-text .calendar-header {
    margin-bottom: 24px;
  }
}
.content-wrapper.calendar-text .content-calendar {
  width: 100%;
  margin-bottom: 80px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .content-wrapper.calendar-text .content-calendar {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 1024px) {
  .content-wrapper.calendar-text .content-calendar {
    margin-left: 25px;
    max-width: 622px;
  }
}
.content-wrapper.calendar-text .content-calendar p {
  width: 100%;
  margin-bottom: 0;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
}

.nav-calender-container {
  max-width: 1440px;
  margin: auto;
}
.nav-calender-container.no-events-container {
  justify-items: center;
}

.navigation-container {
  display: flex;
  justify-content: center;
}

#calendar-navigation {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  font-size: 16px;
}
#calendar-navigation .current-event {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  padding: 0 140px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-navigation .current-event {
    font-size: 20px;
    line-height: 26px;
    padding: 0 46px;
  }
}
#calendar-navigation a.prev, #calendar-navigation a.next {
  position: absolute;
  top: 2px;
  width: 16px;
  height: 16px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  margin: 0 10px 0 10px;
}
#calendar-navigation a.next {
  right: 0;
  background: url("../images/arrow-R.svg") 0 0 no-repeat;
}
#calendar-navigation a.prev {
  left: 0;
  background: url("../images/arrow-L.svg") 0 0 no-repeat;
}

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

#calendar-week {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-week {
    display: none;
  }
}
#calendar-week li {
  color: #194459;
  font-family: "Museo Sans", sans-serif;
  text-align: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#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: transparent;
  /* Tablet Landscape */
}
@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: #222222;
  font: 14px "Museo Sans", sans-serif;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days li time a:hover {
  background: rgba(34, 34, 34, 0.1);
}
#calendar-days li.prev_month, #calendar-days li.next_month {
  background: rgba(0, 0, 0, 0.3);
}
#calendar-days li.prev_month time a, #calendar-days li.next_month time a {
  color: rgba(34, 34, 34, 0.3);
}
#calendar-days li.prev_month time a:hover, #calendar-days li.next_month time a:hover {
  background: rgba(34, 34, 34, 0.07);
}
#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: 28px;
}
#calendar-days dl:hover {
  position: relative;
}
#calendar-days dl.hide {
  display: none;
  /* Tablet Landscape */
}
@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-family: "Museo Sans", sans-serif;
  font-size: 14px;
  background: #194459;
  color: #fff;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-days dt a {
    height: 2.8em;
    line-height: 2.8em;
  }
}
#calendar-days dl.w1 dt {
  width: 100%;
}
#calendar-days dl.w2 dt {
  width: 211.538%;
}
#calendar-days dl.w3 dt {
  width: 323.076%;
}
#calendar-days dl.w4 dt {
  width: 434.614%;
}
#calendar-days dl.w5 dt {
  width: 546.152%;
}
#calendar-days dl.w6 dt {
  width: 657.69%;
}
#calendar-days dl.w7 dt {
  width: 769.228%;
}
#calendar-days dl.c1 dt a {
  background-color: #8db294;
}
#calendar-days dl.c2 dt a {
  background-color: #ada39a;
}
#calendar-days dl.c3 dt a {
  background-color: #85a9b7;
}
#calendar-days dl.c4 dt a {
  background-color: #bc8e8f;
}
#calendar-days dl.c5 dt a {
  background-color: #ac9bc1;
}
#calendar-days dl.c6 dt a {
  background-color: #87b6c7;
}
#calendar-days dl.c7 dt a {
  background-color: #bb85aa;
}
#calendar-days dl.c8 dt a {
  background-color: #a4a4a4;
}
#calendar-days dl dd {
  position: absolute;
  left: 0;
  bottom: 28px;
  background: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: left;
  visibility: hidden;
  width: 200px;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: translate3d(0, 0, 0);
  /* Tablet Landscape */
}
@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: #C09951;
  margin-bottom: 10px;
  font: 16px/1.2 "Museo Sans", sans-serif;
  text-transform: uppercase;
}
#calendar-days dl dd img {
  display: block;
  height: auto;
  width: 100%;
  margin-bottom: 10px;
}
#calendar-days dl dd p {
  font-size: 14px;
  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;
}
#calendar.list-view #calendar-month {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  margin: 0;
}
#calendar.list-view .image-list h2 {
  margin-bottom: 20px;
}
#calendar.list-view .image-list h2 a {
  color: #194459;
  text-decoration: none;
}
#calendar.list-view .image-list h3 a {
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  text-decoration: none;
}

#calendar .no-events {
  margin: 40px;
  padding: 40px 0;
  height: auto;
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Museo Sans", sans-serif;
  background: transparent;
  justify-content: center;
}

#calendar {
  background-color: #F3E4CB;
  padding: 48px 3rem 91px 3rem;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar {
    padding: 37px 16px 57px 16px;
  }
}
#calendar.single-event {
  background-color: initial;
}
#calendar.center-column {
  max-width: initial;
}

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

#calendar .dates > small {
  display: block;
  font-family: "Museo Sans", sans-serif;
  font-size: 16px;
}
#calendar .dates > small strong {
  font-weight: normal;
  color: #C09951;
}

.calendar .events-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(392px, 1fr));
  gap: 20px;
  padding: 0;
  margin: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .events-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }
}
.calendar .events-container.featured {
  display: block;
  width: 100%;
  max-width: 1224px;
  margin: auto;
  margin-bottom: 48px;
  padding: 0 3rem;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .events-container.featured {
    padding: 0 16px;
    margin-bottom: 40px;
  }
}
.calendar .events-container.featured .image-list.calendar {
  position: relative;
  margin-top: 0;
}
.calendar .category-text {
  position: absolute;
  z-index: 1;
  padding: 11px 16px;
  background-color: #FFFFFF;
  color: #48633D;
  text-transform: uppercase;
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  /* Tablet Landscape */
}
.calendar .image-list:hover .overlay-link {
  z-index: 2;
}
.calendar .image-list:hover .background img {
  transform: scale(1.1);
  transition: 350ms ease-in-out;
}
.calendar .image-list .overlay-color {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.calendar .image-list .overlay-color.featured-gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.calendar .image-list .overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 420px;
  width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: end;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: 328px;
  }
}
.calendar .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid gray;
  z-index: -1;
}
.calendar .image-list-item .background {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  float: right;
  overflow: hidden;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
  }
}
.calendar .image-list-item .background img {
  transition: 350ms ease-in-out;
}
.calendar .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
  position: absolute;
  color: #FFFFFF;
  gap: 12px;
  display: flex;
  flex-direction: column;
  z-index: 1;
  text-align: left;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    padding: 16px;
    gap: 10px;
  }
}
.calendar .image-list-item .description h3 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
}
.calendar .image-list-item .description .occurance {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.calendar .image-list-item .description .summary {
  margin-bottom: 0;
  color: #FFFFFF;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .summary {
    display: none;
  }
}
.calendar .image-list-item .description .button {
  position: absolute;
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar .image-list-item .description .button {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description .button {
    text-align: center;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
  }
}
.calendar .show-more-events.hide.visible {
  display: block;
  justify-items: center;
  margin-top: 48px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar .show-more-events.hide.visible {
    margin-top: 63px;
  }
}
.calendar .show-more-events button {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  color: #48633D;
}
.calendar .show-more-events button:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.calendar .show-more-events button:hover {
  color: #C09951;
}

html.event-details #photos-parent {
  display: none;
}
html.event-details #content {
  margin-top: 186px;
}
html.event-details #content #calendar {
  padding: 0 3rem 91px 3rem;
}
html.event-details #content #calendar .page-content {
  margin-top: 0;
}

.calendar-custom {
  /* Tablet Landscape */
}
.calendar-custom .page-content {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .calendar-custom .page-content {
    padding: 0 10px;
  }
  .calendar-custom .page-content .thumbnail {
    margin: 0 0 10px 0;
  }
  .calendar-custom .page-content .thumbnail img {
    width: 100%;
  }
}

#calendar-custom {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-custom {
    font-size: 12px;
  }
}

#calendar-header-custom {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-header-custom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#calendar-header-custom:after {
  clear: both;
  content: "";
  display: table;
}

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

#calendar-views-custom {
  float: left;
  /* Tablet Landscape */
}
#calendar-views-custom:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-views-custom {
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
}
#calendar-views-custom li {
  float: left;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-views-custom li {
    display: inline-block;
    float: none;
  }
}
#calendar-views-custom a {
  position: relative;
  display: block;
  margin-right: 20px;
  padding-left: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #4A4A4A;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-views-custom a {
    margin-right: 0;
    margin-left: 20px;
  }
  #calendar-views-custom a.grid {
    margin-left: 0;
  }
}
#calendar-views-custom a:hover, #calendar-views-custom a.active {
  color: #a0886c;
}
#calendar-views-custom a:active {
  color: #567996;
}
#calendar-views-custom a:before {
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#calendar-views-custom a.grid:before {
  background-position: -200px 0;
}
#calendar-views-custom a.grid:hover:before, #calendar-views-custom a.grid.active:before {
  background-position: -240px 0;
}
#calendar-views-custom a.grid:active:before {
  background-position: -280px 0;
}
#calendar-views-custom a.list:before {
  background-position: -200px -38px;
}
#calendar-views-custom a.list:hover:before, #calendar-views-custom a.list.active:before {
  background-position: -240px -38px;
}
#calendar-views-custom a.list:active:before {
  background-position: -280px -38px;
}

.calendar-title {
  float: left;
  font: 600 20px/1.2 "InsigniaProRoman", sans-serif;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar-title {
    float: none;
  }
}

#calendar-filter {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-filter {
    margin-top: 10px;
    margin-left: 0;
    text-align: center;
  }
}

#calendar-breadcrumb-custom {
  padding: 10px 0;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb-custom {
    text-align: center;
  }
}
#calendar-breadcrumb-custom:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-breadcrumb-custom dt, #calendar-breadcrumb-custom dd {
  float: left;
  margin-right: 10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-breadcrumb-custom dt, #calendar-breadcrumb-custom dd {
    float: none;
    display: inline-block;
  }
}

#calendar-year-custom {
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-year-custom {
    display: none;
  }
}
#calendar-year-custom:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-year-custom li {
  float: left;
}
#calendar-year-custom a {
  display: block;
  padding: 5px 0;
  margin-right: 1px;
  text-decoration: none;
}
#calendar-month-custom {
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: nowrap;
}
#calendar-month-custom li {
  display: block;
  flex-grow: 6;
}
#calendar-month-custom li.not-active {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-month-custom li.not-active {
    display: none;
  }
}
#calendar-month-custom li.arrow a {
  border: none;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
}
#calendar-month-custom li.arrow a:hover {
  background: none;
}
#calendar-month-custom li.arrow a:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
}
#calendar-month-custom li.arrow a.next:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#calendar-month-custom li.arrow a.prev:after {
  transform: translate(-50%, -50%) rotate(45deg);
}
#calendar-month-custom li:not(.arrow) a:before {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: border-color 100ms;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #FFFFFF;
}
#calendar-month-custom a {
  display: block;
  vertical-align: top;
  padding: 0 9px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  color: #27647f;
  position: relative;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar-month-custom a {
    padding: 0 5px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-month-custom a {
    padding: 0 7px;
    font-size: 11px;
    text-align: center;
  }
}
.calendar-custom #calendar-week, .calendar-custom #calendar-days {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.calendar-custom #calendar-week li, .calendar-custom #calendar-days li {
  display: inline-block;
  width: 13%;
}

#calendar-week-custom {
  height: 40px;
  line-height: 40px;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-week-custom {
    display: none;
  }
}
#calendar-week-custom li {
  text-align: center;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#calendar-week-custom li .short {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar-week-custom li .full {
    display: none;
  }
  #calendar-week-custom li .short {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-week-custom li .full {
    display: none;
  }
  #calendar-week-custom li .short {
    display: inline;
  }
}

#calendar-days-custom {
  position: relative;
}
#calendar-days-custom li {
  margin: 0 0 1em;
  min-height: 8em;
  text-align: left;
  vertical-align: top;
  position: static;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-days-custom li {
    display: block;
    float: none;
    width: 100%;
    min-height: auto !important;
    height: auto !important;
  }
  #calendar-days-custom li dl {
    margin-top: auto !important;
    height: auto;
  }
  #calendar-days-custom li dl dt {
    width: 100% !important;
    padding-bottom: 10px;
  }
}
#calendar-days-custom li time a {
  text-align: center;
  color: #132929;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
}
#calendar-days-custom li time a:hover {
  background: #e2e2e2;
}
#calendar-days-custom li.prev_month, #calendar-days-custom li.next_month {
  background: rgba(0, 0, 0, 0.02);
}
#calendar-days-custom li.prev_month time a, #calendar-days-custom li.next_month time a {
  color: #595756;
}
#calendar-days-custom li.prev_month time a:hover, #calendar-days-custom li.next_month time a:hover {
  background: #f1f1f1;
}
#calendar-days-custom li.day_items3 {
  height: 9em;
}
#calendar-days-custom li.day_items4 {
  height: 11em;
}
#calendar-days-custom li.day_items5 {
  height: 13em;
}
#calendar-days-custom li.day_items6 {
  height: 15em;
}
#calendar-days-custom li.day_items7 {
  height: 17em;
}
#calendar-days-custom li.day_items8 {
  height: 19em;
}
#calendar-days-custom li.day_items9 {
  height: 21em;
}
#calendar-days-custom li.day_items10 {
  height: 23em;
}
#calendar-days-custom li.day_items11 {
  height: 25em;
}
#calendar-days-custom li.day_items12 {
  height: 27em;
}
#calendar-days-custom li.day_items13 {
  height: 29em;
}
#calendar-days-custom li.day_items14 {
  height: 31em;
}
#calendar-days-custom li.day_items15 {
  height: 33em;
}
#calendar-days-custom li.day_items16 {
  height: 35em;
}
#calendar-days-custom li.day_items17 {
  height: 37em;
}
#calendar-days-custom li.day_items18 {
  height: 39em;
}
#calendar-days-custom li.day_items19 {
  height: 41em;
}
#calendar-days-custom li.day_items20 {
  height: 43em;
}
#calendar-days-custom dl {
  display: block;
  height: 2em;
}
#calendar-days-custom dl:hover {
  position: relative;
}
#calendar-days-custom dl.hide {
  display: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-days-custom dl.hide {
    display: block;
  }
}
#calendar-days-custom dt {
  position: relative;
}
#calendar-days-custom 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: #194459;
  color: #fff;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-days-custom dt a {
    height: 2.8em;
    line-height: 2.8em;
  }
}
#calendar-days-custom dl.w1 dt {
  width: 100%;
}
#calendar-days-custom dl.w2 dt {
  width: 211.538%;
}
#calendar-days-custom dl.w3 dt {
  width: 323.076%;
}
#calendar-days-custom dl.w4 dt {
  width: 434.614%;
}
#calendar-days-custom dl.w5 dt {
  width: 546.152%;
}
#calendar-days-custom dl.w6 dt {
  width: 657.69%;
}
#calendar-days-custom dl.w7 dt {
  width: 769.228%;
}
#calendar-days-custom dl.c1 dt a {
  background-color: #8db294;
}
#calendar-days-custom dl.c2 dt a {
  background-color: #ada39a;
}
#calendar-days-custom dl.c3 dt a {
  background-color: #85a9b7;
}
#calendar-days-custom dl.c4 dt a {
  background-color: #bc8e8f;
}
#calendar-days-custom dl.c5 dt a {
  background-color: #ac9bc1;
}
#calendar-days-custom dl.c6 dt a {
  background-color: #87b6c7;
}
#calendar-days-custom dl.c7 dt a {
  background-color: #bb85aa;
}
#calendar-days-custom dl.c8 dt a {
  background-color: #a4a4a4;
}
#calendar-days-custom dl dd {
  position: absolute;
  left: 0;
  bottom: 40px !important;
  background: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  padding: 10px;
  text-align: center;
  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);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-days-custom dl dd {
    display: none !important;
  }
}
#calendar-days-custom dl dd .triangle {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
}
#calendar-days-custom 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-custom dl dd h3 {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  text-transform: uppercase;
}
#calendar-days-custom dl dd img {
  height: auto;
  width: 100%;
}
#calendar-days-custom dl dd p {
  font-size: 14px;
  line-height: 18px;
  padding: 0 0 10px 0;
  width: 100%;
}
#calendar-days-custom dl:hover dd {
  visibility: visible;
}
#calendar-days-custom dl.t1 {
  margin-top: 2em;
}
#calendar-days-custom dl.t2 {
  margin-top: 4em;
}
#calendar-days-custom dl.t3 {
  margin-top: 6em;
}
#calendar-days-custom dl.t4 {
  margin-top: 8em;
}
#calendar-days-custom dl.t5 {
  margin-top: 10em;
}
#calendar-days-custom dl.t6 {
  margin-top: 12em;
}
#calendar-days-custom dl.t7 {
  margin-top: 14em;
}
#calendar-days-custom dl.t8 {
  margin-top: 16em;
}
#calendar-days-custom dl.t9 {
  margin-top: 18em;
}
#calendar-days-custom dl.t10 {
  margin-top: 20em;
}
#calendar-days-custom dl.t11 {
  margin-top: 22em;
}
#calendar-days-custom dl.t12 {
  margin-top: 24em;
}
#calendar-days-custom dl.t13 {
  margin-top: 26em;
}
#calendar-days-custom dl.t14 {
  margin-top: 28em;
}
#calendar-days-custom dl.t15 {
  margin-top: 30em;
}
#calendar-days-custom dl.t16 {
  margin-top: 32em;
}
#calendar-days-custom dl.t17 {
  margin-top: 34em;
}
#calendar-days-custom dl.t18 {
  margin-top: 36em;
}
#calendar-days-custom dl.t19 {
  margin-top: 38em;
}
#calendar-days-custom dl.t20 {
  margin-top: 40em;
}

#calendar-custom.list-view h2 {
  text-align: left;
  /* Tablet Landscape */
}
#calendar-custom.list-view h2 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #calendar-custom.list-view h2 {
    text-align: center;
  }
}
#calendar-custom.list-view .calendar-list-custom {
  display: block;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 0;
  text-align: left;
}
#calendar-custom.list-view .calendar-list-custom.hidden {
  display: none;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item {
  height: 320px;
  width: calc((100% - 48px) / 4);
  position: relative;
  margin: 6px;
  cursor: pointer;
  text-align: left;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  #calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item {
    width: 100%;
    margin: 6px 0;
  }
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item:hover .background:before {
  opacity: 1;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item:hover .event-date {
  background: none;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .event-date {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 15px;
  font: 600 14px/19px "InsigniaProRoman", sans-serif;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1.1px;
  color: #fff;
  background: rgba(93, 153, 93, 0.7);
  transition: all 350ms ease-in-out;
  text-align: center;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .event-date span {
  display: block;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .event-date span.date-number {
  font-size: 24px;
  line-height: 24px;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .background:after, #calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .background:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .background:after {
  opacity: 1;
  transition: opacity 200ms ease;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.02+0,0.8+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#05000000", endColorstr="#cc000000", GradientType=0); /* IE6-9 */
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .background:before {
  opacity: 0;
  transition: opacity 200ms ease;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#202d4c+0,202d4c+22,202d4c+100&0.67+0,1+100 */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(32, 45, 76, 0.67) 0%, rgba(32, 45, 76, 0.74) 22%, rgb(32, 45, 76) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ab202d4c", endColorstr="#202d4c", GradientType=0); /* IE6-9 */
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  color: #fff;
  z-index: 1;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description .cat-name {
  font: bold 13px/18px "InsigniaProRoman", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description h3, #calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description h3 a {
  color: #fff;
  font: 700 19px/26px "InsigniaProRoman", sans-serif;
  letter-spacing: 1.1px;
  text-decoration: none;
  margin-bottom: 15px;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description .dates {
  font: 600 14px/19px "InsigniaProRoman", sans-serif;
  font-style: italic;
  letter-spacing: 1.1px;
  padding-left: 3px;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description .dates abbr {
  text-decoration: none;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description .date {
  margin-top: 10px;
}
#calendar-custom.list-view .calendar-list-custom .calendar-list-custom-item .description .times abbr {
  text-transform: uppercase;
  text-decoration: none;
}
#calendar-custom.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
#calendar-custom.list-view .image-list h3 a {
  font: 500 22px/26px "InsigniaProRoman", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-custom.list-view .image-list h3 a {
    font-size: 18px;
    line-height: 20px;
    bottom: 20px;
  }
}

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

#calendar-custom {
  padding-top: 20px;
}
#calendar-custom .single-event {
  text-align: left;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-custom .single-event {
    text-align: center;
  }
}
#calendar-custom .single-event h2 {
  text-align: left;
  font-size: 6vw;
  /* Tablet Landscape */
}
@media (max-width: 333.3333333333px) {
  #calendar-custom .single-event h2 {
    font-size: 20px;
  }
}
@media (min-width: 750px) {
  #calendar-custom .single-event h2 {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  #calendar-custom .single-event h2 {
    text-align: center;
  }
}
#calendar-custom .single-event .background {
  float: right;
  width: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #calendar-custom .single-event .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

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

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

.calendar-custom .image-list-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar-custom .image-list-item {
    min-height: 100%;
  }
}
.calendar-custom .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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar-custom .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-custom .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.calendar-custom .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px 25px 85px 25px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar-custom .image-list-item .description {
    padding: 20px;
    text-align: center;
  }
}
.calendar-custom .image-list-item .description h3 {
  margin-bottom: 15px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .calendar-custom .image-list-item .description h3 {
    display: inline-block;
    margin-bottom: 10px;
  }
}
.calendar-custom .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar-custom .image-list-item .description .button {
  position: absolute;
  bottom: 30px;
  left: 25px;
  font-size: 14px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .calendar-custom .image-list-item .description .button {
    bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar-custom .image-list-item .description .button {
    text-align: center;
    width: auto;
    left: auto;
    right: auto;
    bottom: auto;
    position: relative;
  }
}

#cal-popup {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32, 45, 76, 0.92);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: opacity 200ms ease;
}
#cal-popup.open {
  visibility: visible;
  opacity: 1;
  z-index: 9999;
}
#cal-popup .popup-wrapper {
  width: 80vw;
  max-width: 890px;
  max-height: 80vh;
  padding: 25px 0;
  box-sizing: border-box;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .popup-wrapper {
    padding: 25px 0;
    height: 80vh;
    width: calc(100% - 44px);
  }
}
#cal-popup .popup-wrapper .close-btn {
  position: absolute;
  width: 43px;
  height: 43px;
  background: #fff;
  border-radius: 50%;
  top: -21px;
  right: -21px;
  overflow: hidden;
  text-indent: -999px;
  z-index: 100;
}
#cal-popup .popup-wrapper .close-btn:before, #cal-popup .popup-wrapper .close-btn:after {
  content: "";
  height: 3px;
  width: 25px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
}
#cal-popup .popup-wrapper .close-btn:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#cal-popup .popup-wrapper .close-btn:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#cal-popup .upper-wrapper {
  display: flex;
  width: 100%;
  margin: -25px 0 0 0;
  /* Tablet Landscape */
}
#cal-popup .upper-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #cal-popup .upper-wrapper {
    display: block;
    height: 180px;
  }
}
#cal-popup .upper-wrapper .left-image, #cal-popup .upper-wrapper .right-image {
  display: block;
  font-size: 0;
  width: 50%;
  background-size: cover;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .upper-wrapper .left-image, #cal-popup .upper-wrapper .right-image {
    width: 100%;
    height: 180px;
  }
}
#cal-popup .upper-wrapper .left-image {
  position: relative;
  padding-top: 50%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
#cal-popup .upper-wrapper .left-image img {
  display: none;
}
#cal-popup .upper-wrapper .right-image {
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .upper-wrapper .right-image {
    z-index: 2;
    background-image: none;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(32, 45, 76, 0.5);
  }
}
#cal-popup .upper-wrapper .right-image .inner-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div {
  text-align: center;
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div.event-category {
  text-transform: uppercase;
  margin-bottom: 5px;
  /* Tablet Landscape */
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div.event-title {
  text-transform: capitalize;
  padding-bottom: 40px;
  margin-bottom: 40px;
  position: relative;
  /* Tablet Landscape */
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div.event-title:after {
  content: "";
  width: 116px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -58px;
}
@media only screen and (max-width: 767px) {
  #cal-popup .upper-wrapper .right-image .inner-wrapper div.event-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div.event-date {
  margin-bottom: 5px;
}
#cal-popup .upper-wrapper .right-image .inner-wrapper div.event-time {
  font: 500 16px/22px "InsigniaProRoman", sans-serif;
}
#cal-popup .text-wrapper {
  padding: 35px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(80vh - 330px);
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .text-wrapper {
    padding: 10px;
    height: calc(80vh - 180px);
    max-height: calc(80vh - 180px);
    text-align: center;
  }
}
#cal-popup .text-wrapper p:empty {
  display: none;
}
#cal-popup .text-wrapper .social-links {
  background: rgba(204, 204, 204, 0.1);
  line-height: 20px;
  margin: -40px -65px 20px;
  padding: 20px 75px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .text-wrapper .social-links {
    margin: -14px -11px 10px;
    padding: 10px 15px;
    text-align: center;
  }
}
#cal-popup .text-wrapper .social-links .social-title {
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 20px;
}
#cal-popup .text-wrapper .social-links iframe {
  display: inline-block;
  width: 70px;
  height: 20px;
  vertical-align: top;
  margin-right: 5px;
}
#cal-popup .text-wrapper .social-links iframe.tweet {
  width: 62px;
}
#cal-popup .text-wrapper .social-links a {
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}
#cal-popup .text-wrapper .social-links a:hover {
  opacity: 0.5;
}
#cal-popup .text-wrapper .social-links a.pin-it-button {
  height: 20px;
}
#cal-popup .text-wrapper .social-links a.mail-link {
  width: 25px;
  height: 20px;
  overflow: hidden;
  text-indent: -9999px;
}
#cal-popup .text-wrapper nav, #cal-popup .text-wrapper .button {
  margin-left: 0;
}
#cal-popup .text-wrapper .button {
  margin-left: 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .text-wrapper .button {
    margin-left: 0;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    width: 100%;
  }
}
#cal-popup .text-wrapper.page-content h2 {
  font: 600 21px/29px "InsigniaProRoman", sans-serif;
  text-transform: uppercase;
}
#cal-popup .text-wrapper.page-content h2:empty {
  display: none;
}
#cal-popup .text-wrapper.page-content p {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #cal-popup .text-wrapper.page-content p {
    margin-bottom: 10px;
  }
}
#cal-popup .text-wrapper.page-content .hidden {
  display: none;
}

.faq-section .faq-section-category {
  display: grid;
  grid-template-columns: 49% 49%;
  gap: 2%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .faq-section .faq-section-category {
    grid-template-columns: 100%;
    gap: 0%;
  }
}
.faq-section .faq-section-category .faq-section-category-descr {
  display: none;
}
.faq-section .faq-section-category .faq-section-item {
  border-bottom: 1px solid #C09951;
}
.faq-section .faq-section-category .faq-section-item .faq-section-question {
  padding-left: 0;
  border: none;
  font: 400 24px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  line-height: 24px;
  color: #222222;
}
.faq-section .faq-section-category .faq-section-item .faq-section-question::after {
  right: 0;
}
.faq-section .faq-section-category .faq-section-item .faq-section-answer {
  font: 300 16px "Museo Sans", sans-serif;
  letter-spacing: 0.4px;
  color: #222222;
  padding: 0px 25px 20px 0px;
  background: none;
}

.blog-page.template-2 .page-content-wrapper.page-content {
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.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: "PtSans", 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 "PtSans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "Museo Sans", sans-serif;
  color: #003E66;
}
.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;
  /* Tablet Landscape */
}
@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 "Museo Sans", sans-serif;
  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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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 "InsigniaProRoman", sans-serif;
  margin-top: 5px;
  margin-bottom: 20px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 {
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .single-blog-post .page-content-wrapper .content-col .main-content.single-post {
    margin-top: 14rem;
  }
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post .blog-date {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}
.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;
  font-size: 40px;
  text-transform: initial;
  line-height: 45px;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post h2 {
  text-transform: none;
  font-size: 20px;
  line-height: 1.5;
  line-height: 25px;
}
.single-blog-post .page-content-wrapper .content-col .main-content.single-post ul {
  margin-inline-start: 2rem;
}
.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-bottom: 15px;
}
.single-blog-post .tags {
  display: inline-block;
  vertical-align: top;
  font-family: "Museo Sans", sans-serif;
}
.single-blog-post .tags h5 {
  font: 500 20px/1.2 "Museo Sans", sans-serif;
  color: #525252;
  display: inline-block;
  padding-right: 10px;
  /* Tablet Landscape */
}
@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;
}

.blog-list-view #header-blog {
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
@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 "PtSans", 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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  background-color: #003E66;
  padding: 25px 35px;
  position: absolute;
  bottom: 55px;
  color: #fff;
  max-width: 890px;
  margin-right: 90px;
  text-align: left;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
.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 "PtSans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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 "PtSans", sans-serif;
  color: #666666;
  margin-bottom: 35px;
  text-align: left;
  /* Tablet Landscape */
}
.blog-page.template-2.single-blog-post .blog-breadcrumb .separator {
  padding: 0 10px;
  color: #C09951;
}
.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: "PtSans", sans-serif;
}
.blog-page.template-2.single-blog-post .tags h5 {
  font: 500 20px/1.2 "PtSans", sans-serif;
  color: #666666;
  display: inline-block;
  padding-right: 10px;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  color: #003E66;
}
.blog-page.template-2.blog-archive-view .archive-header {
  margin-top: 50px;
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  color: #E04E39;
  text-align: center;
  margin-bottom: 25px;
  /* Tablet Landscape */
}
@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;
  /* Tablet Landscape */
}
.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: "PtSans", sans-serif;
  display: none;
  text-align: center;
  /* Tablet Landscape */
}
.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: "PtSans", sans-serif;
  position: relative;
  margin: 20px auto 60px;
  padding: 0 30px;
  max-width: 940px;
  /* Tablet Landscape */
}
.blog-page.template-2.blog-archive-view .archive-header .archive-months .archive-months-list {
  display: flex;
  justify-content: space-between;
  /* Tablet Landscape */
}
.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: "PtSans", sans-serif;
  display: none;
  text-align: center;
  /* Tablet Landscape */
}
.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;
  }
}
.blog-page.template-2.blog-archive-view .recent-posts.center-column {
  /* Tablet Landscape */
}
@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 "PtSans", sans-serif;
  color: #5990B4;
  display: block;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 45px;
  /* Tablet Landscape */
}
.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;
  }
}
#specials-slideshow, .property-search-slider, .specials-slideshow, .specials-wrapper {
  position: relative;
  overflow: hidden;
  text-align: center;
  top: 80px;
  padding-block: 50px;
  margin-bottom: 10%;
  /* Tablet Landscape */
}
#specials-slideshow.specials-slider, .property-search-slider.specials-slider, .specials-slideshow.specials-slider, .specials-wrapper.specials-slider {
  top: 0;
  padding-block: 0;
  margin: 132px auto 153px auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow.specials-slider, .property-search-slider.specials-slider, .specials-slideshow.specials-slider, .specials-wrapper.specials-slider {
    margin: 40px auto 53px auto;
  }
}
#specials-slideshow.events-slider, .property-search-slider.events-slider, .specials-slideshow.events-slider, .specials-wrapper.events-slider {
  top: 0;
  padding-block: 0;
  margin: 153px auto;
  padding-block: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow.events-slider, .property-search-slider.events-slider, .specials-slideshow.events-slider, .specials-wrapper.events-slider {
    margin: 67px auto 115px auto;
  }
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow, .property-search-slider, .specials-slideshow, .specials-wrapper {
    top: 0px;
    padding-block: 8rem;
    margin-bottom: 0%;
  }
}
#specials-slideshow h2, .property-search-slider h2, .specials-slideshow h2, .specials-wrapper h2 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  margin: 0 auto;
  width: 185px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow h2, .property-search-slider h2, .specials-slideshow h2, .specials-wrapper h2 {
    width: 68%;
  }
}
@media only screen and (max-width: 767px) {
  #specials-slideshow h2, .property-search-slider h2, .specials-slideshow h2, .specials-wrapper h2 {
    width: 68%;
    max-width: 185px;
  }
}
#specials-slideshow h2 a, .property-search-slider h2 a, .specials-slideshow h2 a, .specials-wrapper h2 a {
  text-decoration: none;
}
#specials-slideshow .slideshow, .property-search-slider .slideshow, .specials-slideshow .slideshow, .specials-wrapper .slideshow {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slideshow, .property-search-slider .slideshow, .specials-slideshow .slideshow, .specials-wrapper .slideshow {
    overflow: visible;
  }
}
#specials-slideshow .slideshow-wrapper, .property-search-slider .slideshow-wrapper, .specials-slideshow .slideshow-wrapper, .specials-wrapper .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#specials-slideshow .special-slider, .property-search-slider .special-slider, .specials-slideshow .special-slider, .specials-wrapper .special-slider {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .special-slider, .property-search-slider .special-slider, .specials-slideshow .special-slider, .specials-wrapper .special-slider {
    display: flex;
    flex-direction: column;
  }
}
#specials-slideshow .special-slider .logo-thumbnail, .property-search-slider .special-slider .logo-thumbnail, .specials-slideshow .special-slider .logo-thumbnail, .specials-wrapper .special-slider .logo-thumbnail {
  width: 21%;
  text-align: center;
  line-height: 36px;
  left: 30px;
  top: 120px;
  position: relative;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .special-slider .logo-thumbnail, .property-search-slider .special-slider .logo-thumbnail, .specials-slideshow .special-slider .logo-thumbnail, .specials-wrapper .special-slider .logo-thumbnail {
    width: 100%;
    top: 0;
    left: auto;
  }
}
#specials-slideshow .special-slider .logo-thumbnail img, .property-search-slider .special-slider .logo-thumbnail img, .specials-slideshow .special-slider .logo-thumbnail img, .specials-wrapper .special-slider .logo-thumbnail img {
  width: 155px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .special-slider .logo-thumbnail img, .property-search-slider .special-slider .logo-thumbnail img, .specials-slideshow .special-slider .logo-thumbnail img, .specials-wrapper .special-slider .logo-thumbnail img {
    display: none;
  }
}
#specials-slideshow .special-slider .logo-thumbnail h1, .property-search-slider .special-slider .logo-thumbnail h1, .specials-slideshow .special-slider .logo-thumbnail h1, .specials-wrapper .special-slider .logo-thumbnail h1 {
  font-size: 36px;
  text-transform: uppercase;
}
#specials-slideshow .special-slider .logo-thumbnail a, .property-search-slider .special-slider .logo-thumbnail a, .specials-slideshow .special-slider .logo-thumbnail a, .specials-wrapper .special-slider .logo-thumbnail a {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  display: block;
  margin: 40px auto 0 auto;
  transition: 350ms ease-in-out;
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
  /* Tablet Landscape */
}
#specials-slideshow .special-slider .logo-thumbnail a:after, .property-search-slider .special-slider .logo-thumbnail a:after, .specials-slideshow .special-slider .logo-thumbnail a:after, .specials-wrapper .special-slider .logo-thumbnail a:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .special-slider .logo-thumbnail a, .property-search-slider .special-slider .logo-thumbnail a, .specials-slideshow .special-slider .logo-thumbnail a, .specials-wrapper .special-slider .logo-thumbnail a {
    margin: 24px auto 27px auto;
  }
}
#specials-slideshow .special-slider .slideshow-event, .property-search-slider .special-slider .slideshow-event, .specials-slideshow .special-slider .slideshow-event, .specials-wrapper .special-slider .slideshow-event {
  width: 75%;
}
#specials-slideshow .special-slider .slideshow-event.width-80, .property-search-slider .special-slider .slideshow-event.width-80, .specials-slideshow .special-slider .slideshow-event.width-80, .specials-wrapper .special-slider .slideshow-event.width-80 {
  width: 80%;
}
#specials-slideshow .slidee,
#specials-slideshow .slide, .property-search-slider .slidee,
.property-search-slider .slide, .specials-slideshow .slidee,
.specials-slideshow .slide, .specials-wrapper .slidee,
.specials-wrapper .slide {
  position: relative;
  display: inline-block;
  width: 502px;
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
  margin: 0 20px;
  padding-block: 30px 34px;
  padding-inline: 0px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
#specials-slideshow .slidee:after,
#specials-slideshow .slide:after, .property-search-slider .slidee:after,
.property-search-slider .slide:after, .specials-slideshow .slidee:after,
.specials-slideshow .slide:after, .specials-wrapper .slidee:after,
.specials-wrapper .slide:after {
  content: "";
  border: 1px solid #C09951;
  position: absolute;
  right: 8px;
  left: 20px;
  top: 0px;
  height: 100%;
  width: 90%;
  z-index: 10;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee:after,
  #specials-slideshow .slide:after, .property-search-slider .slidee:after,
  .property-search-slider .slide:after, .specials-slideshow .slidee:after,
  .specials-slideshow .slide:after, .specials-wrapper .slidee:after,
  .specials-wrapper .slide:after {
    width: 90%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  #specials-slideshow .slidee,
  #specials-slideshow .slide, .property-search-slider .slidee,
  .property-search-slider .slide, .specials-slideshow .slidee,
  .specials-slideshow .slide, .specials-wrapper .slidee,
  .specials-wrapper .slide {
    width: 100vw;
  }
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slidee,
  #specials-slideshow .slide, .property-search-slider .slidee,
  .property-search-slider .slide, .specials-slideshow .slidee,
  .specials-slideshow .slide, .specials-wrapper .slidee,
  .specials-wrapper .slide {
    width: 100vw;
    margin: 0;
  }
}
#specials-slideshow .slidee.margin-10,
#specials-slideshow .slide.margin-10, .property-search-slider .slidee.margin-10,
.property-search-slider .slide.margin-10, .specials-slideshow .slidee.margin-10,
.specials-slideshow .slide.margin-10, .specials-wrapper .slidee.margin-10,
.specials-wrapper .slide.margin-10 {
  margin: 0 10px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee.margin-10,
  #specials-slideshow .slide.margin-10, .property-search-slider .slidee.margin-10,
  .property-search-slider .slide.margin-10, .specials-slideshow .slidee.margin-10,
  .specials-slideshow .slide.margin-10, .specials-wrapper .slidee.margin-10,
  .specials-wrapper .slide.margin-10 {
    margin: 0;
  }
}
#specials-slideshow .slidee.margin-10 .thumbnail img,
#specials-slideshow .slide.margin-10 .thumbnail img, .property-search-slider .slidee.margin-10 .thumbnail img,
.property-search-slider .slide.margin-10 .thumbnail img, .specials-slideshow .slidee.margin-10 .thumbnail img,
.specials-slideshow .slide.margin-10 .thumbnail img, .specials-wrapper .slidee.margin-10 .thumbnail img,
.specials-wrapper .slide.margin-10 .thumbnail img {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee.margin-10 .thumbnail img,
  #specials-slideshow .slide.margin-10 .thumbnail img, .property-search-slider .slidee.margin-10 .thumbnail img,
  .property-search-slider .slide.margin-10 .thumbnail img, .specials-slideshow .slidee.margin-10 .thumbnail img,
  .specials-slideshow .slide.margin-10 .thumbnail img, .specials-wrapper .slidee.margin-10 .thumbnail img,
  .specials-wrapper .slide.margin-10 .thumbnail img {
    padding: 0 16px;
  }
}
#specials-slideshow .slidee.margin-10:after,
#specials-slideshow .slide.margin-10:after, .property-search-slider .slidee.margin-10:after,
.property-search-slider .slide.margin-10:after, .specials-slideshow .slidee.margin-10:after,
.specials-slideshow .slide.margin-10:after, .specials-wrapper .slidee.margin-10:after,
.specials-wrapper .slide.margin-10:after {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee.margin-10:after,
  #specials-slideshow .slide.margin-10:after, .property-search-slider .slidee.margin-10:after,
  .property-search-slider .slide.margin-10:after, .specials-slideshow .slidee.margin-10:after,
  .specials-slideshow .slide.margin-10:after, .specials-wrapper .slidee.margin-10:after,
  .specials-wrapper .slide.margin-10:after {
    width: calc(100% - 64px);
    left: 32px;
  }
}
#specials-slideshow .slidee .thumbnail,
#specials-slideshow .slide .thumbnail, .property-search-slider .slidee .thumbnail,
.property-search-slider .slide .thumbnail, .specials-slideshow .slidee .thumbnail,
.specials-slideshow .slide .thumbnail, .specials-wrapper .slidee .thumbnail,
.specials-wrapper .slide .thumbnail {
  position: relative;
  width: 496px;
  height: 350px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee .thumbnail,
  #specials-slideshow .slide .thumbnail, .property-search-slider .slidee .thumbnail,
  .property-search-slider .slide .thumbnail, .specials-slideshow .slidee .thumbnail,
  .specials-slideshow .slide .thumbnail, .specials-wrapper .slidee .thumbnail,
  .specials-wrapper .slide .thumbnail {
    width: 100%;
  }
}
#specials-slideshow .slidee .thumbnail.no-thumbnail,
#specials-slideshow .slide .thumbnail.no-thumbnail, .property-search-slider .slidee .thumbnail.no-thumbnail,
.property-search-slider .slide .thumbnail.no-thumbnail, .specials-slideshow .slidee .thumbnail.no-thumbnail,
.specials-slideshow .slide .thumbnail.no-thumbnail, .specials-wrapper .slidee .thumbnail.no-thumbnail,
.specials-wrapper .slide .thumbnail.no-thumbnail {
  background: #dbdbdb;
}
#specials-slideshow .slidee .thumbnail .loading:before,
#specials-slideshow .slide .thumbnail .loading:before, .property-search-slider .slidee .thumbnail .loading:before,
.property-search-slider .slide .thumbnail .loading:before, .specials-slideshow .slidee .thumbnail .loading:before,
.specials-slideshow .slide .thumbnail .loading:before, .specials-wrapper .slidee .thumbnail .loading:before,
.specials-wrapper .slide .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: #54baba;
  border-bottom-color: #54baba;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#specials-slideshow .slidee .date,
#specials-slideshow .slide .date, .property-search-slider .slidee .date,
.property-search-slider .slide .date, .specials-slideshow .slidee .date,
.specials-slideshow .slide .date, .specials-wrapper .slidee .date,
.specials-wrapper .slide .date {
  display: block;
  position: relative;
  margin: 34px 0 37px;
  color: #525252;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slidee .date,
  #specials-slideshow .slide .date, .property-search-slider .slidee .date,
  .property-search-slider .slide .date, .specials-slideshow .slidee .date,
  .specials-slideshow .slide .date, .specials-wrapper .slidee .date,
  .specials-wrapper .slide .date {
    margin: 20px 0;
  }
}
#specials-slideshow .slidee .date a,
#specials-slideshow .slide .date a, .property-search-slider .slidee .date a,
.property-search-slider .slide .date a, .specials-slideshow .slidee .date a,
.specials-slideshow .slide .date a, .specials-wrapper .slidee .date a,
.specials-wrapper .slide .date a {
  color: inherit;
  text-decoration: none;
}
#specials-slideshow .slidee .date a:hover,
#specials-slideshow .slide .date a:hover, .property-search-slider .slidee .date a:hover,
.property-search-slider .slide .date a:hover, .specials-slideshow .slidee .date a:hover,
.specials-slideshow .slide .date a:hover, .specials-wrapper .slidee .date a:hover,
.specials-wrapper .slide .date a:hover {
  text-decoration: underline;
}
#specials-slideshow .slidee .date:after,
#specials-slideshow .slide .date:after, .property-search-slider .slidee .date:after,
.property-search-slider .slide .date:after, .specials-slideshow .slidee .date:after,
.specials-slideshow .slide .date:after, .specials-wrapper .slidee .date:after,
.specials-wrapper .slide .date:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E0E0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slidee .date:after,
  #specials-slideshow .slide .date:after, .property-search-slider .slidee .date:after,
  .property-search-slider .slide .date:after, .specials-slideshow .slidee .date:after,
  .specials-slideshow .slide .date:after, .specials-wrapper .slidee .date:after,
  .specials-wrapper .slide .date:after {
    bottom: -8px;
  }
}
#specials-slideshow .slidee .content,
#specials-slideshow .slide .content, .property-search-slider .slidee .content,
.property-search-slider .slide .content, .specials-slideshow .slidee .content,
.specials-slideshow .slide .content, .specials-wrapper .slidee .content,
.specials-wrapper .slide .content {
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 88%;
}
#specials-slideshow .slidee h3,
#specials-slideshow .slide h3, .property-search-slider .slidee h3,
.property-search-slider .slide h3, .specials-slideshow .slidee h3,
.specials-slideshow .slide h3, .specials-wrapper .slidee h3,
.specials-wrapper .slide h3 {
  margin-top: 24px;
  color: #222222;
  margin-bottom: 12px;
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee h3,
  #specials-slideshow .slide h3, .property-search-slider .slidee h3,
  .property-search-slider .slide h3, .specials-slideshow .slidee h3,
  .specials-slideshow .slide h3, .specials-wrapper .slidee h3,
  .specials-wrapper .slide h3 {
    font-size: 14px;
  }
}
#specials-slideshow .slidee h4,
#specials-slideshow .slide h4, .property-search-slider .slidee h4,
.property-search-slider .slide h4, .specials-slideshow .slidee h4,
.specials-slideshow .slide h4, .specials-wrapper .slidee h4,
.specials-wrapper .slide h4 {
  font-family: "InsigniaProRoman", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #48633D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: calc(100% - 17px);
  margin: 0 auto;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slidee h4,
  #specials-slideshow .slide h4, .property-search-slider .slidee h4,
  .property-search-slider .slide h4, .specials-slideshow .slidee h4,
  .specials-slideshow .slide h4, .specials-wrapper .slidee h4,
  .specials-wrapper .slide h4 {
    font-size: 20px;
  }
}
#specials-slideshow .slidee p,
#specials-slideshow .slide p, .property-search-slider .slidee p,
.property-search-slider .slide p, .specials-slideshow .slidee p,
.specials-slideshow .slide p, .specials-wrapper .slidee p,
.specials-wrapper .slide p {
  font-size: 15px;
  line-height: 1.33;
  color: #27647F;
  padding-block: 15px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slidee p,
  #specials-slideshow .slide p, .property-search-slider .slidee p,
  .property-search-slider .slide p, .specials-slideshow .slidee p,
  .specials-slideshow .slide p, .specials-wrapper .slidee p,
  .specials-wrapper .slide p {
    font-size: 14px;
  }
}
#specials-slideshow .slidee .copy,
#specials-slideshow .slide .copy, .property-search-slider .slidee .copy,
.property-search-slider .slide .copy, .specials-slideshow .slidee .copy,
.specials-slideshow .slide .copy, .specials-wrapper .slidee .copy,
.specials-wrapper .slide .copy {
  padding: 0 20px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slidee .copy,
  #specials-slideshow .slide .copy, .property-search-slider .slidee .copy,
  .property-search-slider .slide .copy, .specials-slideshow .slidee .copy,
  .specials-slideshow .slide .copy, .specials-wrapper .slidee .copy,
  .specials-wrapper .slide .copy {
    padding: 0 10px;
  }
}
#specials-slideshow .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next), .property-search-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next), .specials-slideshow .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next), .specials-wrapper .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0.2;
}
#specials-slideshow .slider-button, .property-search-slider .slider-button, .specials-slideshow .slider-button, .specials-wrapper .slider-button {
  position: relative;
  top: 32px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin: 0 auto;
  gap: 18px;
  width: 166px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slider-button, .property-search-slider .slider-button, .specials-slideshow .slider-button, .specials-wrapper .slider-button {
    position: relative;
    display: flex;
    justify-content: space-evenly;
    bottom: 65px;
    align-items: center;
    top: 40px;
    width: 110px;
    margin: 0 auto;
  }
}
#specials-slideshow .slideshow-button-text, .property-search-slider .slideshow-button-text, .specials-slideshow .slideshow-button-text, .specials-wrapper .slideshow-button-text {
  position: relative;
  top: -19px;
  color: #194459;
  font: 300 14px/1 "Museo Sans", sans-serif;
  text-wrap: nowrap;
}
#specials-slideshow .slideshow-button, .property-search-slider .slideshow-button, .specials-slideshow .slideshow-button, .specials-wrapper .slideshow-button {
  text-indent: -100em;
  cursor: pointer;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow .slideshow-button, .property-search-slider .slideshow-button, .specials-slideshow .slideshow-button, .specials-wrapper .slideshow-button {
    display: block;
    position: relative;
    left: auto;
    top: auto;
  }
}
#specials-slideshow .slideshow-button.previous, .property-search-slider .slideshow-button.previous, .specials-slideshow .slideshow-button.previous, .specials-wrapper .slideshow-button.previous {
  background: url("../images/arrow-L.svg") 0 0 no-repeat;
  position: relative;
  width: 15px;
  height: 55px;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Tablet Landscape */
}
#specials-slideshow .slideshow-button.next, .property-search-slider .slideshow-button.next, .specials-slideshow .slideshow-button.next, .specials-wrapper .slideshow-button.next {
  background: url("../images/arrow-R.svg") right 0 no-repeat;
  position: relative;
  width: 15px;
  height: 55px;
  background-repeat: no-repeat;
  overflow: hidden;
  /* Tablet Landscape */
}
#specials-slideshow .slideshow-pagination, .property-search-slider .slideshow-pagination, .specials-slideshow .slideshow-pagination, .specials-wrapper .slideshow-pagination {
  margin: 20px 0;
  text-align: center;
  font-size: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  #specials-slideshow .slideshow-pagination, .property-search-slider .slideshow-pagination, .specials-slideshow .slideshow-pagination, .specials-wrapper .slideshow-pagination {
    display: none;
  }
}
#specials-slideshow .slideshow-pagination > *, .property-search-slider .slideshow-pagination > *, .specials-slideshow .slideshow-pagination > *, .specials-wrapper .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #194459;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}

.additional-content {
  padding: 0px 0;
}

.slideshow-book-now {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: 8px;
  pointer-events: all;
  z-index: 11;
  margin-top: 13px;
  gap: 24px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .slideshow-book-now {
    padding-inline: 25px;
  }
}
.slideshow-book-now .view-offer {
  font: 600 14px "Museo Sans", sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: -moz-max-content;
  width: max-content;
  display: block;
  transition: 350ms ease-in-out;
}
.slideshow-book-now .view-offer:after {
  padding-bottom: 5px;
  content: "";
  display: block;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #C09951;
  opacity: 1;
}
.slideshow-book-now .book-now {
  position: relative;
  background: #48633D;
  font: 700 11px/1 "Museo Sans", sans-serif;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  padding: 14px 30px;
  zoom: 1;
  z-index: 2;
  transition: color 0.8s;
  margin-right: 27px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 767px) {
  .slideshow-book-now .book-now {
    width: 124px;
  }
}

#specials-slideshow.events-slider.specials-slideshow {
  /* Tablet Landscape */
}
#specials-slideshow.events-slider.specials-slideshow .section-link {
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow.events-slider.specials-slideshow .section-link {
    margin: 24px auto 45px auto;
  }
}
#specials-slideshow.events-slider.specials-slideshow .slide {
  width: 460px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow.events-slider.specials-slideshow .slide {
    width: 100vw;
    margin: 0 auto;
    padding: 0 16px;
  }
}
#specials-slideshow.events-slider.specials-slideshow .slide .thumbnail {
  width: 100%;
}
#specials-slideshow.events-slider.specials-slideshow .slide .thumbnail .category-text {
  color: #48633D;
  font-family: "MuseoSansCondensed", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  z-index: 1;
  padding: 11px 16px;
  background-color: #FFFFFF;
}
#specials-slideshow.events-slider.specials-slideshow .slide .content {
  width: 93%;
  text-align: left;
  margin: unset;
}
#specials-slideshow.events-slider.specials-slideshow .slide .content .title {
  margin-top: 22px;
}
#specials-slideshow.events-slider.specials-slideshow .slide .content .sub-title {
  margin: unset;
  margin-bottom: 16px;
}
#specials-slideshow.events-slider.specials-slideshow .slide .content .description {
  font-family: "Museo Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4px;
  color: #222222;
  text-wrap: wrap;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  #specials-slideshow.events-slider.specials-slideshow .slide .content .description {
    margin-bottom: 24px;
  }
}
#specials-slideshow.events-slider.specials-slideshow .slide .content .slideshow-book-now {
  justify-content: left;
  padding-inline: unset;
  margin-top: 24px;
}
#specials-slideshow.events-slider.specials-slideshow .slide::after {
  content: unset;
}
#specials-slideshow.events-slider.specials-slideshow .slide h4 {
  text-overflow: unset;
  text-wrap: wrap;
}

.specials-wrapper.list-special {
  top: 0;
  margin: 0 auto;
  padding-block: 0px;
  align-content: center;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper.list-special {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1433px) {
  .specials-wrapper.list-special {
    display: grid;
    grid-template-columns: repeat(2, 0fr);
    justify-content: center;
  }
}
.specials-wrapper.list-special .slide {
  width: 405px;
  margin-bottom: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 16px 23px;
  /* Tablet Landscape */
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper.list-special .slide {
    width: 100%;
    padding-block: 16px 26px;
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  .specials-wrapper.list-special .slide {
    width: 97%;
  }
}
.specials-wrapper.list-special .slide::after {
  left: 5%;
}
.specials-wrapper.list-special .slide .thumbnail {
  height: 234px;
  width: 390px;
  margin: 0;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper.list-special .slide .thumbnail {
    width: 100%;
  }
}
.specials-wrapper.list-special .slide .thumbnail img {
  width: 390px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper.list-special .slide .thumbnail img {
    width: 100%;
  }
}
.specials-wrapper.list-special .slide h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  /* Tablet Landscape */
}
@media only screen and (max-width: 1023px) {
  .specials-wrapper.list-special .slide h3 {
    margin-top: 26px;
    margin-bottom: 16px;
  }
}
.specials-wrapper.list-special .slide .slideshow-book-now {
  margin-top: 24px;
  gap: 44px;
}
.specials-wrapper.list-special .slide .slideshow-book-now .button {
  font-size: 14px;
}
