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

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

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

.formError .formErrorContent {
  background: #b31919;
  position: relative;
  z-index: 5001;
  color: #fff;
  width: 150px;
  font-size: 11px;
  padding: 4px 10px 4px 10px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.ui-datepicker-header {
  position: relative;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
}

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

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

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

.ui-datepicker-calendar {
  cursor: default;
  margin: 0 auto;
  width: 252px;
  table-layout: fixed;
}
@media only screen and (max-width: 767px) {
  .ui-datepicker-calendar {
    width: 100%;
  }
}
.ui-datepicker-calendar th, .ui-datepicker-calendar td {
  line-height: 32px;
  text-align: center;
  vertical-align: middle;
  text-align: center;
}
.ui-datepicker-calendar th {
  font-size: 12px;
  font-weight: 700;
  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: #D8D8D8;
}
.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: #000;
  color: #fff;
}
.ui-datepicker-calendar .ui-datepicker-highlight a, .ui-datepicker-calendar .ui-datepicker-current-day a, .ui-datepicker-calendar .ui-state-default:hover {
  background: #E0B46D;
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rooms-icon-theatre-set-up:before {
  content: "\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";
}

.breadcrumb-acm {
  position: relative;
  margin: 85px auto 0;
  color: #000;
  font: 500 16px/1.2 "Montserrat", sans-serif;
}
.breadcrumb-acm .center-column {
  padding: 0 0 0 70px;
}
@media only screen and (min-width: 1350px) {
  .breadcrumb-acm .center-column {
    padding-left: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .breadcrumb-acm .center-column {
    padding-left: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .breadcrumb-acm {
    display: none;
  }
}
.breadcrumb-acm .breadcrumb-wrapper {
  position: relative;
  padding-left: 35px;
}
.breadcrumb-acm .breadcrumb-wrapper:before {
  content: "";
  position: absolute;
  top: -40px;
  left: 14px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
}
.breadcrumb-acm a {
  display: block;
  float: left;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 350ms ease-in-out;
}
.breadcrumb-acm a:hover, .breadcrumb-acm a.active {
  font-weight: 800;
}
.breadcrumb-acm .separator {
  margin: 0 14px;
  display: block;
  float: left;
}
@media only screen and (max-width: 767px) {
  .breadcrumb-acm .separator {
    margin: 0 7px;
  }
}

.inner-content {
  position: relative;
  padding-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .inner-content {
    padding-bottom: 45px;
  }
}
.inner-content .center-column {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .inner-content .center-column {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .inner-content .center-column {
    padding: 0 15px;
  }
}
.inner-content .inner-content-wrapper {
  width: calc(100% - 500px);
  padding-left: 70px;
}
@media only screen and (min-width: 1350px) {
  .inner-content .inner-content-wrapper {
    width: calc(100% - 570px);
    padding-left: 140px;
  }
}
@media only screen and (max-width: 1023px) {
  .inner-content .inner-content-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.inner-content .heading-wrapper {
  position: relative;
}
.inner-content .heading-wrapper:before {
  content: "";
  background: #E0B46D;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 75%;
  left: 0;
}
.inner-content .heading-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.inner-content .heading-wrapper .thumbnail {
  float: left;
  position: relative;
  width: 100px;
  height: 120px;
  margin: 0 25px 20px 0;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .inner-content .heading-wrapper .thumbnail {
    margin: 0 15px 10px 0;
  }
}
.inner-content .heading-wrapper h3 {
  font: 600 25px/1.2 "Montserrat", sans-serif;
  font-size: 4vw;
  padding-top: 20px;
}
@media (max-width: 450px) {
  .inner-content .heading-wrapper h3 {
    font-size: 18px;
  }
}
@media (min-width: 625px) {
  .inner-content .heading-wrapper h3 {
    font-size: 25px;
  }
}
.inner-content .heading-wrapper h3 span {
  display: block;
  font-weight: 400;
}
.inner-content .content-block-wrapper {
  float: none;
}
.inner-content .columns-wrapper {
  display: flex;
  flex-flow: wrap;
}
.inner-content .columns-wrapper .column {
  margin-bottom: 28px;
  width: 50%;
  padding-right: 5%;
}
.inner-content .columns-wrapper .column h4 {
  font-weight: 600;
  margin-bottom: 5px;
}
.inner-content .columns-wrapper .column h4 span {
  color: #E0B46D;
  margin-right: 8px;
}
.inner-content .columns-wrapper .column ul {
  margin: 0 0 0 13px;
}
.inner-content .columns-wrapper .column ul > li {
  line-height: 1.6;
}
.inner-content .columns-wrapper .column ul > li:before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .inner-content .columns-wrapper {
    flex-flow: column;
  }
  .inner-content .columns-wrapper .column {
    padding-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}
.inner-content .buttons {
  position: relative;
  float: right;
  margin-top: 35px;
}
.inner-content .buttons .button {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
}
@media only screen and (max-width: 767px) {
  .inner-content .buttons {
    margin-top: 20px;
  }
}

.content-testimonials {
  position: relative;
  padding-bottom: 85px;
}
@media only screen and (max-width: 767px) {
  .content-testimonials {
    padding-bottom: 45px;
  }
}
.content-testimonials .center-column {
  padding: 0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .content-testimonials .center-column {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .content-testimonials .center-column {
    padding: 0 15px;
  }
}
.content-testimonials .inner-content-wrapper {
  width: calc(100% - 500px);
  padding-left: 70px;
}
@media only screen and (min-width: 1350px) {
  .content-testimonials .inner-content-wrapper {
    width: calc(100% - 570px);
    padding-left: 140px;
  }
}
@media only screen and (max-width: 1023px) {
  .content-testimonials .inner-content-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.content-testimonials .heading-wrapper {
  position: relative;
  margin-bottom: 20px;
}
.content-testimonials .heading-wrapper:after {
  clear: both;
  content: "";
  display: table;
}
.content-testimonials .heading-wrapper .thumbnail {
  float: left;
  position: relative;
  width: 100px;
  height: 120px;
  margin: 0 25px 0 0;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #f5f5f5;
}
@media only screen and (max-width: 767px) {
  .content-testimonials .heading-wrapper .thumbnail {
    margin: 0 15px 0 0;
  }
}
.content-testimonials .heading-wrapper h3 {
  font: 600 12px/1.2 "Montserrat", sans-serif;
  padding-top: 20px;
}
.content-testimonials .heading-wrapper h3 span {
  display: block;
  font-weight: 400;
  margin-top: 10px;
  color: #999;
  text-transform: none;
}
@media only screen and (max-width: 767px) {
  .content-testimonials .heading-wrapper {
    font-size: 12px;
  }
}
.content-testimonials .content-block-wrapper {
  float: none;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 25px;
}
.content-testimonials .columns-wrapper {
  display: flex;
  flex-flow: wrap;
}
.content-testimonials .columns-wrapper .column {
  margin-bottom: 28px;
  width: 50%;
  padding-right: 5%;
}
.content-testimonials .columns-wrapper .column h4 {
  font-weight: 600;
  margin-bottom: 5px;
}
.content-testimonials .columns-wrapper .column h4 span {
  color: #E0B46D;
  margin-right: 8px;
}
.content-testimonials .columns-wrapper .column ul {
  margin: 0 0 0 13px;
}
.content-testimonials .columns-wrapper .column ul > li {
  line-height: 1.6;
}
.content-testimonials .columns-wrapper .column ul > li:before {
  content: none;
}
@media only screen and (max-width: 767px) {
  .content-testimonials .columns-wrapper {
    flex-flow: column;
  }
  .content-testimonials .columns-wrapper .column {
    padding-right: 0;
    width: 100%;
    margin-bottom: 15px;
  }
}
.content-testimonials .buttons {
  position: relative;
  float: right;
  margin-top: 35px;
}
.content-testimonials .buttons .button {
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
}
@media only screen and (max-width: 767px) {
  .content-testimonials .buttons {
    margin-top: 20px;
  }
}

.inner-content-columns-button .buttons {
  margin-top: 0;
}

.news-slider-acm,
.news-slider-acm-custom {
  padding: 95px 0 140px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .news-slider-acm,
  .news-slider-acm-custom {
    padding: 30px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm,
  .news-slider-acm-custom {
    padding: 0 0 50px;
  }
}
.news-slider-acm .news-acm-bg,
.news-slider-acm-custom .news-acm-bg {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 100%;
  right: 50%;
  margin-right: -225px;
  transition: all 350ms ease-in-out;
}
.news-slider-acm .news-acm-bg:after,
.news-slider-acm-custom .news-acm-bg:after {
  content: "";
  background: #f5f5f5;
  position: absolute;
  top: 40%;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm .news-acm-bg,
  .news-slider-acm-custom .news-acm-bg {
    right: 0;
    margin-right: 0;
  }
}
.news-slider-acm .center-column,
.news-slider-acm-custom .center-column {
  padding: 0;
}
.news-slider-acm .news-block-wrapper,
.news-slider-acm-custom .news-block-wrapper {
  width: calc(100% - 500px);
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm .news-block-wrapper,
  .news-slider-acm-custom .news-block-wrapper {
    width: 100%;
  }
}
.news-slider-acm .news-block-wrapper .center-column,
.news-slider-acm-custom .news-block-wrapper .center-column {
  max-width: 885px;
  text-align: center;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm .news-block-wrapper .center-column,
  .news-slider-acm-custom .news-block-wrapper .center-column {
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .news-slider-acm .news-block-wrapper .center-column,
  .news-slider-acm-custom .news-block-wrapper .center-column {
    max-width: 100%;
  }
}
.news-slider-acm .news-block-wrapper span.caption,
.news-slider-acm-custom .news-block-wrapper span.caption {
  display: block;
  font: 700 16px/1.5 "Montserrat", sans-serif;
  color: #000;
  text-transform: uppercase;
  text-shadow: 0 0 7px #fff;
}
.news-slider-acm .news-block-wrapper .h1-like,
.news-slider-acm-custom .news-block-wrapper .h1-like {
  text-transform: none;
  text-shadow: 0 0 7px #fff;
}
.news-slider-acm .news-slideshow-wrapper,
.news-slider-acm-custom .news-slideshow-wrapper {
  position: relative;
  padding-bottom: 30px;
}
.news-slider-acm .news-slideshow-wrapper:before,
.news-slider-acm-custom .news-slideshow-wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 70px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
  z-index: 5;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm .news-slideshow-wrapper,
  .news-slider-acm-custom .news-slideshow-wrapper {
    position: relative;
    max-width: 920px;
  }
}
@media only screen and (max-width: 1023px) {
  .news-slider-acm .news-slideshow-wrapper,
  .news-slider-acm-custom .news-slideshow-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .news-slideshow-wrapper,
  .news-slider-acm-custom .news-slideshow-wrapper {
    padding-bottom: 40px;
  }
  .news-slider-acm .news-slideshow-wrapper:before,
  .news-slider-acm-custom .news-slideshow-wrapper:before {
    content: none;
  }
}
.news-slider-acm .slideshow,
.news-slider-acm-custom .slideshow {
  margin: 25px auto 0;
  max-width: 920px;
  position: relative;
  overflow: hidden;
  padding: 0 0 10px 0;
}
@media only screen and (max-width: 1023px) {
  .news-slider-acm .slideshow,
  .news-slider-acm-custom .slideshow {
    max-width: 100%;
  }
}
.news-slider-acm .slideshow-wrapper,
.news-slider-acm-custom .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.news-slider-acm .slide,
.news-slider-acm-custom .slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: calc(33.3% - 30px);
  margin: 0 15px;
  background-color: #fff;
  box-shadow: 0 2px 9px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slide,
  .news-slider-acm-custom .slide {
    width: calc(100% - 80px);
    height: auto;
    margin: 0;
  }
}
.news-slider-acm .slide .thumbnail,
.news-slider-acm-custom .slide .thumbnail {
  position: relative;
  height: 167px;
}
.news-slider-acm .slide .thumbnail img,
.news-slider-acm-custom .slide .thumbnail img {
  z-index: 3;
}
.news-slider-acm .slide .slide-content,
.news-slider-acm-custom .slide .slide-content {
  padding: 15px 25px 10px;
  background: transparent;
  box-sizing: border-box;
  transition: 350ms ease-in-out;
  min-height: 203px;
}
.news-slider-acm .slide .slide-content span.item-category,
.news-slider-acm-custom .slide .slide-content span.item-category {
  display: block;
  font: normal 12px/1.2 "Montserrat", sans-serif;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.news-slider-acm .slide .slide-content h3,
.news-slider-acm-custom .slide .slide-content h3 {
  font: 600 16px/1.4 "Montserrat", sans-serif;
  margin-bottom: 10px;
  text-transform: none;
}
.news-slider-acm .slide .slide-content h3 a,
.news-slider-acm-custom .slide .slide-content h3 a {
  text-decoration: none;
}
.news-slider-acm .slide .slide-content h3 a:hover,
.news-slider-acm-custom .slide .slide-content h3 a:hover {
  text-decoration: underline;
}
.news-slider-acm .slide .slide-content p,
.news-slider-acm-custom .slide .slide-content p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slide .slide-content p,
  .news-slider-acm-custom .slide .slide-content p {
    font-size: 14px;
    line-height: 1.3;
  }
}
.news-slider-acm .slide .slide-content .controls,
.news-slider-acm-custom .slide .slide-content .controls {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  font-size: 0;
  position: absolute;
  bottom: 10px;
  left: 25px;
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slide .slide-content .controls,
  .news-slider-acm-custom .slide .slide-content .controls {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slide .slide-content .controls .text-button,
  .news-slider-acm-custom .slide .slide-content .controls .text-button {
    padding: 0 10px;
  }
}
.news-slider-acm .slideshow-controls,
.news-slider-acm-custom .slideshow-controls {
  position: absolute;
  bottom: 0;
  right: 50px;
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slideshow-controls,
  .news-slider-acm-custom .slideshow-controls {
    display: none;
  }
}
.news-slider-acm .slideshow-button,
.news-slider-acm-custom .slideshow-button {
  top: auto;
  bottom: 0;
}
.news-slider-acm .slideshow-button.previous,
.news-slider-acm-custom .slideshow-button.previous {
  left: auto;
  right: 30px;
  bottom: 0;
}
.news-slider-acm .slideshow-button.next,
.news-slider-acm-custom .slideshow-button.next {
  right: 0;
  bottom: 0;
}
.news-slider-acm .slideshow-pagination,
.news-slider-acm-custom .slideshow-pagination {
  display: none;
}
@media only screen and (max-width: 767px) {
  .news-slider-acm .slideshow-pagination,
  .news-slider-acm-custom .slideshow-pagination {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .news-slider-acm.home-view,
  .news-slider-acm-custom.home-view {
    padding: 100px 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm.home-view,
  .news-slider-acm-custom.home-view {
    padding: 50px 0 50px;
  }
}
.news-slider-acm.home-view .center-column,
.news-slider-acm-custom.home-view .center-column {
  padding: 0 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .news-slider-acm.home-view .center-column,
  .news-slider-acm-custom.home-view .center-column {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm.home-view .center-column,
  .news-slider-acm-custom.home-view .center-column {
    padding: 0 15px;
  }
}
.news-slider-acm.home-view .news-acm-bg,
.news-slider-acm-custom.home-view .news-acm-bg {
  background-color: #fff;
}
.news-slider-acm.home-view .news-acm-bg:after,
.news-slider-acm-custom.home-view .news-acm-bg:after {
  content: none;
}
.news-slider-acm.home-view .news-block-wrapper,
.news-slider-acm-custom.home-view .news-block-wrapper {
  width: auto;
}
.news-slider-acm.home-view .news-block-wrapper .center-column,
.news-slider-acm-custom.home-view .news-block-wrapper .center-column {
  max-width: 1350px;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm.home-view .news-block-wrapper .center-column,
  .news-slider-acm-custom.home-view .news-block-wrapper .center-column {
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .news-slider-acm.home-view .news-block-wrapper .center-column,
  .news-slider-acm-custom.home-view .news-block-wrapper .center-column {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm.home-view .news-slideshow-wrapper,
  .news-slider-acm-custom.home-view .news-slideshow-wrapper {
    position: relative;
    max-width: 100%;
  }
}
.news-slider-acm.home-view .slideshow,
.news-slider-acm-custom.home-view .slideshow {
  max-width: 1350px;
}
.news-slider-acm.home-view .slide,
.news-slider-acm-custom.home-view .slide {
  width: calc(25% - 50px);
  margin: 0 25px;
}
@media only screen and (max-width: 1349px) {
  .news-slider-acm.home-view .slide,
  .news-slider-acm-custom.home-view .slide {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .news-slider-acm.home-view .slide,
  .news-slider-acm-custom.home-view .slide {
    width: calc(33.3% - 20px);
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .news-slider-acm.home-view .slide,
  .news-slider-acm-custom.home-view .slide {
    width: calc(100% - 80px);
    height: auto;
    margin: 0;
  }
}

.image-video-plus-content {
  background: none;
  position: relative;
  padding: 0 0 0;
  z-index: 1;
}
@media only screen and (max-width: 1023px) {
  .image-video-plus-content {
    min-height: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .image-video-plus-content {
    padding: 0 0 45px;
  }
}
@media only screen and (max-width: 767px) {
  .image-video-plus-content {
    padding: 0 0 30px;
  }
}
.image-video-plus-content .content-block {
  position: relative;
  min-height: 483px;
}
@media only screen and (max-width: 767px) {
  .image-video-plus-content .content-block {
    margin-bottom: 0;
    padding-bottom: 0;
    min-height: 100%;
  }
}
.image-video-plus-content .content-block .content-wrapper {
  position: relative;
  width: calc(40% + 10px);
  padding: 20px 30px 30px 0;
  text-align: left;
  min-height: 452px;
}
.image-video-plus-content .content-block .content-wrapper .caption {
  font-size: 16px;
}
.image-video-plus-content .content-block .content-wrapper h3 {
  text-align: left;
  text-transform: none;
}
.image-video-plus-content .content-block .content-wrapper p {
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .image-video-plus-content .content-block .content-wrapper {
    display: block;
    min-height: 100%;
    width: 100%;
    padding: 20px 10px;
    float: none;
  }
  .image-video-plus-content .content-block .content-wrapper .caption {
    font-size: 14px;
  }
  .image-video-plus-content .content-block .content-wrapper h3 {
    margin-bottom: 10px;
    text-align: center;
    margin-top: 0;
  }
}
.image-video-plus-content .content-block .thumbnail-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: calc(60% - 10px);
  height: 452px;
}
.image-video-plus-content .content-block .thumbnail-wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 35px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
  z-index: 5;
}
.image-video-plus-content .content-block .thumbnail-wrapper .play-video {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 48px;
  width: 48px;
  margin: 0 auto;
  text-indent: -9999em;
  overflow: hidden;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%);
  transition: opacity 350ms ease-in-out;
  z-index: 2;
}
.image-video-plus-content .content-block .thumbnail-wrapper .play-video:after {
  content: "";
  background: url("../images/play-button.svg");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 48px;
  width: 48px;
}
.image-video-plus-content .content-block .thumbnail-wrapper .play-video:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .image-video-plus-content .content-block .thumbnail-wrapper {
    width: 100%;
    position: relative;
    height: 0;
    padding-bottom: 65vw;
    left: auto;
    bottom: auto;
    top: auto;
  }
  .image-video-plus-content .content-block .thumbnail-wrapper:before {
    content: none;
  }
}
.image-video-plus-content .content-block .thumbnail {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.what-we-do {
  padding: 160px 0 45px;
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}
.what-we-do:after {
  content: "";
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: -210px;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .what-we-do {
    padding: 30px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .what-we-do {
    padding: 0 0 50px;
    margin-top: 0;
  }
  .what-we-do:after {
    content: none;
  }
}
.what-we-do .columns-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
.what-we-do .column-one {
  width: calc(33% - 10px);
  padding-right: calc(3% - 5px);
}
.what-we-do .column-one .thumbnail-left {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 742px;
}
.what-we-do .column-one .thumbnail-left .thumbnail {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 742px;
}
.what-we-do .column-one .thumbnail-left:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 35px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
  z-index: 5;
}
@media only screen and (max-width: 1023px) {
  .what-we-do .column-one {
    display: none;
  }
}
.what-we-do .column-two {
  width: 70%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .what-we-do .column-two {
    width: 100%;
  }
}
.what-we-do .content-wrapper {
  display: block;
  padding-top: 45px;
}
.what-we-do .content-wrapper .caption {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .what-we-do .content-wrapper .caption {
    font-size: 14px;
  }
}
.what-we-do .content-wrapper p {
  font-size: 16px;
  font-weight: 300;
}
.what-we-do .block-items-wrapper {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .what-we-do .block-items-wrapper {
    flex-flow: column;
    justify-content: unset;
  }
}
.what-we-do .block-item {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: calc(33.3% - 25px);
}
@media only screen and (max-width: 1349px) {
  .what-we-do .block-item {
    width: calc(33.3% - 10px);
  }
}
.what-we-do .block-item .thumbnail-wrapper {
  position: relative;
  height: 267px;
  opacity: 1;
  transition: all 350ms ease-in-out;
  cursor: pointer;
}
.what-we-do .block-item .thumbnail-wrapper .thumbnail {
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.what-we-do .block-item .thumbnail-wrapper:hover {
  opacity: 0.8;
}
.what-we-do .block-item .thumbnail-wrapper.no-popup {
  cursor: unset;
}
.what-we-do .block-item .thumbnail-wrapper.no-popup:hover {
  opacity: 1;
}
.what-we-do .block-item .block-item-content {
  padding: 18px 0 30px;
}
.what-we-do .block-item .block-item-content h3 {
  font: 700 16px/1.5 "Lato", sans-serif;
  margin-bottom: 10px;
  font-size: 3vw;
}
@media (max-width: 466.6666666667px) {
  .what-we-do .block-item .block-item-content h3 {
    font-size: 14px;
  }
}
@media (min-width: 533.3333333333px) {
  .what-we-do .block-item .block-item-content h3 {
    font-size: 16px;
  }
}
.what-we-do .block-item .block-item-content p {
  font-weight: 300;
  margin-bottom: 10px;
}
.what-we-do .block-item .block-item-content .controls {
  display: inline-block;
  font-size: 0;
  width: 100%;
  vertical-align: top;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: none;
}
.what-we-do .block-item .block-item-content .controls .text-button {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .what-we-do .block-item .block-item-content .controls .text-button {
    padding: 0 10px;
  }
}
.what-we-do .block-item .block-item-content .popup-content {
  display: none;
}
@media only screen and (max-width: 767px) {
  .what-we-do .block-item {
    width: 100%;
    margin-bottom: 40px;
  }
  .what-we-do .block-item .thumbnail-wrapper {
    padding-top: 52vw;
  }
  .what-we-do .block-item .block-item-content .controls {
    margin-bottom: 10px;
    text-align: right;
  }
}

.press-content-sec {
  width: 100%;
  box-sizing: border-box;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .press-content-sec {
    flex-wrap: wrap;
  }
}
.press-content-sec .left-form-sec {
  width: 66%;
  display: inline-block;
  padding: 0 2% 0 30px;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .press-content-sec .left-form-sec {
    width: 100%;
  }
}
.press-content-sec .left-form-sec h2 {
  font-size: 42px;
  line-height: 55px;
  text-transform: inherit;
}
.press-content-sec .left-form-sec p {
  font-size: 14px;
  line-height: 28px;
}
.press-content-sec .right-form-sec {
  width: 40%;
  display: inline-block;
  max-Width: 443px;
  flex-wrap: wrap;
  text-align: center;
  padding: 0px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .press-content-sec .right-form-sec {
    width: 100%;
  }
}
.press-content-sec .right-form-sec .inner_form_nt {
  background: #E0B46D;
  padding: 30px;
}
.press-content-sec .right-form-sec .border_nt {
  border-top: solid thin #B08744;
  border-bottom: solid thin #B08744;
  padding: 3px;
  margin: 15px;
}
.press-content-sec .right-form-sec .one_line_form {
  display: flex;
}
.press-content-sec .right-form-sec .one_line_form #mc_embed_shell {
  width: 100%;
}
.press-content-sec .right-form-sec .one_line_form #mc_embed_shell .mc-field-group {
  display: flex;
}
.press-content-sec .right-form-sec .one_line_form #mc_embed_shell .mc-field-group .text_field_nt {
  width: calc(100% - 0px);
  min-height: 40px;
  border: solid thin rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 0px 10px;
}
.press-content-sec .right-form-sec .one_line_form #mc_embed_shell .mc-field-group .submit_field_nt {
  background: #000 !important;
  width: 149px !important;
  color: #fff;
  float: right;
  margin: 0 0px 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  height: 40px;
  font-weight: 300;
}
.press-content-sec .right-form-sec h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.press-content-sec .right-form-sec p {
  font-size: 14px;
}
.press-content-sec .right-form-sec .hide_form_nt {
  display: none;
}
.press-content-sec .right-form-sec .hide_form_nt p {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 28px;
}
.press-content-sec .right-form-sec .hide_form_nt .close_nt {
  position: absolute;
  top: 0px;
  right: 1px;
}
.press-content-sec .right-form-sec h2 {
  display: none;
}
.press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field label {
  display: none;
}
.press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field input:not([type=file]), .press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field select, .press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field textarea, .press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field button {
  width: calc(100% - 25px);
  min-height: 40px;
  border: solid thin rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 0px 10px;
}
.press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field textarea {
  min-height: 140px;
}
.press-content-sec .right-form-sec [id*=form_form_] .form-builder-group .form-builder-field {
  text-align: left;
  margin-top: 14px;
  clear: both;
  overflow: hidden;
}
.press-content-sec .right-form-sec input[type=submit], .press-content-sec .right-form-sec button {
  background: #000 !important;
  width: 149px !important;
  color: #fff;
  float: right;
  margin: 0 24px 0 0;
  font-size: 14px;
  text-transform: uppercase;
}

.logos-grid {
  position: relative;
  padding: 125px 0 145px;
  overflow: hidden;
}
.logos-grid .logos-grid-content {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .logos-grid {
    padding: 0 0 50px;
  }
  .logos-grid .logos-grid-content {
    padding-bottom: 10px;
  }
}
.logos-grid span.caption {
  display: block;
  font: 700 16px/1.5 "Montserrat", sans-serif;
  color: #000;
  text-transform: uppercase;
  text-shadow: 0 0 7px #fff;
}
@media only screen and (max-width: 767px) {
  .logos-grid span.caption {
    font-size: 14px;
  }
}
.logos-grid .h1-like {
  text-transform: none;
}
.logos-grid .logos-grid-wrapper {
  position: relative;
}
.logos-grid .logos-grid-wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .logos-grid .logos-grid-wrapper {
    padding-bottom: 50px;
  }
  .logos-grid .logos-grid-wrapper:before {
    content: none;
  }
}
.logos-grid .slideshow {
  position: relative;
  overflow: hidden;
}
.logos-grid .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.logos-grid .items-list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  border: 1px solid #E9E9E9;
  border-bottom: 0;
  border-right: 0;
}
.logos-grid .items-list:last-child {
  border-bottom: 1px solid #E9E9E9;
}
@media only screen and (max-width: 1349px) {
  .logos-grid .items-list:last-child {
    border-top: 0;
    border-bottom: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .logos-grid .items-list {
    white-space: normal;
    width: 100%;
  }
}
.logos-grid .item {
  height: 205px;
  width: calc(16.66% + 0px);
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-right: 1px solid #E9E9E9;
}
.logos-grid .item .item-image {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
}
.logos-grid .item .item-image img {
  display: block !important;
}
.logos-grid .item .item-image .hover-image {
  visibility: hidden;
}
.logos-grid .item .image-caption {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  display: block;
  text-align: center;
  position: absolute;
  top: 65%;
  left: 10px;
  right: 10px;
  white-space: normal;
  visibility: hidden;
  transform: translateY(-65%);
}
@media only screen and (max-width: 767px) {
  .logos-grid .item .image-caption {
    font-size: 12px;
  }
}
.logos-grid .item:hover {
  background-color: #000;
}
.logos-grid .item:hover .image-caption {
  visibility: visible;
}
.logos-grid .item:hover .item-image {
  background: none !important;
}
.logos-grid .item:hover .item-image img {
  display: block !important;
}
.logos-grid .item:hover .item-image .hover-image {
  visibility: visible;
  margin-top: -20px;
}
.logos-grid .item:hover .item-image .hover-image img {
  display: block !important;
}
.logos-grid .item:hover .item-image .image-active {
  visibility: hidden;
}
.logos-grid .item:hover .item-image .image-active img {
  display: block !important;
}
@media only screen and (max-width: 1349px) {
  .logos-grid .item {
    width: calc(33.3% + 0px);
    border-bottom: 1px solid #E9E9E9;
  }
  .logos-grid .item .item-image {
    height: 100%;
    padding: 0;
    background: none !important;
  }
  .logos-grid .item .item-image img {
    display: block !important;
  }
  .logos-grid .item .item-image .object-fit {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media only screen and (max-width: 1023px) {
  .logos-grid .item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
    text-align: center;
    border-bottom: 1px solid #E9E9E9;
  }
}
@media only screen and (max-width: 767px) {
  .logos-grid .item {
    height: 174px;
  }
}
.logos-grid .text-button {
  padding: 10px 0 0 0;
  float: right;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .logos-grid .text-button {
    display: none;
  }
}
.logos-grid .slideshow-controls {
  display: none;
}
.mobile-device .logos-grid .slideshow-controls {
  display: block;
}
.logos-grid .slideshow-button {
  top: auto;
  bottom: -70px;
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 767px) {
  .logos-grid .slideshow-button {
    bottom: 0;
  }
}
.logos-grid .slideshow-button.previous {
  left: auto;
  right: calc(50% + 15px);
}
.logos-grid .slideshow-button.next {
  right: calc(50% - 30px);
}

.reviews-slideshow {
  position: relative;
  overflow: hidden;
  min-height: 482px;
  background-color: #000;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow {
    min-height: 400px;
  }
}
.reviews-slideshow .slideshow {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.reviews-slideshow .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.reviews-slideshow .slide {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  height: auto;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  white-space: normal;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide {
    height: auto;
  }
}
.reviews-slideshow .slide .thumbnail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  filter: blur(8px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reviews-slideshow .slide .thumbnail:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .thumbnail {
    height: auto;
  }
}
.reviews-slideshow .slide .columns-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .columns-wrapper {
    flex-direction: column;
    justify-content: unset;
  }
}
.reviews-slideshow .slide .center-column {
  padding: 45px 60px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reviews-slideshow .slide .center-column {
    padding: 45px 25px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .center-column {
    padding: 40px 15px;
  }
}
.reviews-slideshow .slide .column {
  position: relative;
}
.reviews-slideshow .slide .column-one {
  width: 28%;
  margin-right: 3%;
}
.reviews-slideshow .slide .column-one .caption {
  color: #fff;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-one .caption {
    font-size: 14px;
  }
}
.reviews-slideshow .slide .column-one h2.h1-like {
  color: #fff;
  font-size: 55px;
  font-size: 4vw;
}
@media (max-width: 700px) {
  .reviews-slideshow .slide .column-one h2.h1-like {
    font-size: 28px;
  }
}
@media (min-width: 1375px) {
  .reviews-slideshow .slide .column-one h2.h1-like {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-one {
    width: 100%;
    margin-right: 0;
    padding-bottom: 45px;
  }
  .reviews-slideshow .slide .column-one:after {
    content: "";
    width: 85%;
    height: 1px;
    position: absolute;
    background-color: #fff;
    bottom: 25px;
    left: -15px;
  }
}
.reviews-slideshow .slide .column-two {
  display: flex;
  flex-direction: column;
  width: 70%;
  padding-left: 3%;
}
.reviews-slideshow .slide .column-two:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #fff;
  top: 0;
  bottom: 0;
  left: 0;
}
.reviews-slideshow .slide .column-two .copy {
  font-size: 17px;
  line-height: 2;
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slide .column-two .copy {
    font-size: 15px;
  }
}
.reviews-slideshow .slide .column-two .copy * {
  display: inline;
}
.reviews-slideshow .slide .column-two .name {
  margin-top: 25px;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  padding-left: 10px;
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slide .column-two .name {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-two .name {
    text-align: center;
  }
}
.reviews-slideshow .slide .column-two .position {
  text-transform: uppercase;
  padding-left: 10px;
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slide .column-two .position {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-two .position {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-two {
    width: 100%;
    padding-left: 0;
  }
  .reviews-slideshow .slide .column-two:after {
    content: none;
  }
}
.reviews-slideshow .slide .column-two .column-two-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-left: 40px;
  padding-top: 40px;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-two .column-two-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-left: 0;
  }
}
.reviews-slideshow .slide .column-two .column-two-footer .button.text-button {
  display: block;
  color: #fff;
}
.reviews-slideshow .slide .column-two .column-two-footer .button.text-button:hover {
  color: #E0B46D;
}
.reviews-slideshow .slide .column-two .column-two-footer .button.text-button:hover::before {
  color: #fff;
}
.reviews-slideshow .slide .column-two .column-two-footer .review-logo {
  max-width: 170px;
  margin-left: auto;
}
.reviews-slideshow .slide .column-two .column-two-footer .review-logo img {
  display: block;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .reviews-slideshow .slide .column-two .column-two-footer .review-logo {
    max-width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slide .column-two .column-two-footer .review-logo {
    margin: 0 auto;
  }
}
.reviews-slideshow .slideshow-button {
  border: 2px solid #fff;
  border-bottom: 0;
  border-left: 0;
  width: 17px;
  height: 17px;
  top: auto;
  bottom: 70px;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-button {
    display: none;
  }
}
.reviews-slideshow .slideshow-button:hover {
  border-color: #E0B46D;
}
.reviews-slideshow .slideshow-button.previous {
  left: 29.5%;
  transform: rotate(-135deg);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reviews-slideshow .slideshow-button.previous {
    left: 28%;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-button.previous {
    left: 20px;
  }
}
.reviews-slideshow .slideshow-button.next {
  left: 34.8%;
  transform: rotate(45deg);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .reviews-slideshow .slideshow-button.next {
    left: 33.8%;
  }
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-button.next {
    right: 20px;
  }
}
.reviews-slideshow .slideshow-pagination {
  display: none;
  position: relative;
  margin-bottom: 45px;
}
.reviews-slideshow .slideshow-pagination button {
  width: 10px;
  height: 10px;
  background: transparent;
  border: 1px solid #fff;
}
.reviews-slideshow .slideshow-pagination button:hover, .reviews-slideshow .slideshow-pagination button.active {
  background: #fff;
}
@media only screen and (max-width: 767px) {
  .reviews-slideshow .slideshow-pagination {
    display: block;
  }
}

.page-left-col {
  margin-left: 70px !important;
  padding-left: 0 !important;
}

.page-right-col {
  margin-right: 70px !important;
  padding-right: 0 !important;
}

.page-full-col {
  margin-left: 70px !important;
  margin-right: 70px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media only screen and (min-width: 1350px) {
  .page-left-col {
    margin-left: 140px !important;
  }
  .page-right-col {
    margin-right: 140px !important;
  }
  .page-full-col {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
}
@media only screen and (max-width: 1023px) {
  .page-left-col {
    margin-left: 25px !important;
  }
  .page-right-col {
    margin-right: 25px !important;
  }
  .page-full-col {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
}
@media only screen and (max-width: 767px) {
  .page-left-col {
    margin-left: 0px !important;
  }
  .page-right-col {
    margin-right: 0px !important;
  }
  .page-full-col {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
}
#content.tech-partners {
  padding: 144px 0 40px;
}
#content.tech-partners .main-content > .page-content {
  width: 45%;
  padding-top: 46px;
}
#content.tech-partners .breadcrumb-acm .center-column {
  padding-left: 0;
}
#content.tech-partners .page-content h1 {
  /*font-size: 41px;*/
  margin-top: 26px;
  margin-bottom: 19px;
}
#content.tech-partners .page-content p {
  font-size: 14px;
  line-height: 2em;
}
#content.tech-partners .side-img {
  position: relative;
  width: 50%;
  height: 100%;
  min-height: 572px;
  margin-left: 5%;
}
#content.tech-partners .side-img img {
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #content.tech-partners {
    padding-top: 120px;
  }
  #content.tech-partners .main-content {
    flex-direction: column;
  }
  #content.tech-partners .main-content > .page-content,
  #content.tech-partners .side-img {
    width: 100%;
    padding: 0;
    margin: 0 0 40px 0;
  }
  #content.tech-partners .side-img {
    min-height: 350px;
  }
  #content.tech-partners .breadcrumb-acm {
    margin-top: 0;
    display: block;
  }
  #content.tech-partners .breadcrumb-acm .breadcrumb-wrapper {
    padding-left: 25px;
  }
  #content.tech-partners .breadcrumb-acm .breadcrumb-wrapper:before {
    top: 0;
    left: 6px;
    width: 3px;
    height: 19px;
  }
}
#extra-content-block .main-content {
  margin-top: -85px;
  margin-bottom: 50px;
  padding: 121px 0 65px 0;
  background: linear-gradient(270deg, rgb(245, 245, 245) 80%, rgba(255, 255, 255, 0) 80%);
}
#extra-content-block .side-img:before {
  background: #e0b46d;
  content: "";
  height: 57px;
  right: 10%;
  position: absolute;
  top: -28px;
  transform: skew(-20deg);
  width: 6px;
  z-index: 5;
}
#extra-content-block .side-img {
  width: 35%;
  height: 100%;
  min-height: 574px;
  position: relative;
  padding: 0;
}
#extra-content-block .side-img img {
  z-index: 1;
}
#extra-content-block .page-content {
  width: 65%;
  padding: 0;
  margin: 80px 0 70px 80px;
}
#extra-content-block h2 {
  font-size: 32px;
  line-height: 38px;
  text-transform: none;
  margin: 0 0 24px 0;
  padding: 0;
}

@media only screen and (max-width: 767px) {
  #extra-content-block .main-content {
    background: rgb(245, 245, 245);
    margin-top: -125px;
    padding: 80px 15px 40px 15px;
  }
  #extra-content-block .side-img {
    display: none;
  }
  #extra-content-block .page-content {
    width: 100%;
    margin: 0;
  }
  #extra-content-block h2 {
    font-size: 28px;
    line-height: 34px;
  }
}
.partners-list {
  margin: 38px 0 40px 0;
}
.partners-list--one {
  margin: 103px 0 0px 0;
}
.partners-list--one .partner-logos a.logo {
  background: #E0B46D;
}
.partners-list .center-column {
  padding: 0 !important;
}
.partners-list h2 {
  font-size: 32px;
  line-height: 38px;
  text-transform: none;
  margin: 0 0 32px 0;
  padding: 0 0 17px 0;
  border-bottom: 2px solid rgb(245, 245, 245);
}
.partners-list .partner-logos {
  justify-content: flex-start;
  gap: 20px 10px;
  margin-left: -10px;
  width: calc(100% + 20px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 1023px) {
  .partners-list .partner-logos {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .partners-list .partner-logos {
    padding-left: 15px;
    padding-right: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 449px) {
  .partners-list .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners-list .partner-logos .logo {
  overflow: hidden;
  height: 130px;
  background: rgb(245, 245, 245);
  padding: 30px 50px;
  display: block;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 880px) {
  .partners-list .partner-logos .logo {
    padding: 20px 45px;
  }
}
@media only screen and (max-width: 767px) {
  .partners-list .partner-logos .logo {
    padding: 20px 40px;
  }
}
@media (max-width: 550px) {
  .partners-list .partner-logos .logo {
    padding: 20px 30px;
  }
}
.partners-list .partner-logos a.logo {
  transition: transform 350ms ease-in-out, box-shadow 350ms ease-in-out;
}
.partners-list .partner-logos a.logo:hover, .partners-list .partner-logos a.logo:focus {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #E0B46D;
}
.partners-list .partner-logos .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}

/*.technology-partners{
    .partner-logos{
        .logo{
            width: calc(16% - 13px) !important;

            @include respond-to(mobile) {
                width: calc(100% - 20px) !important;
            }
        }
    }
}*/
.team-acm {
  margin: 30px 0;
}
.team-acm .page-content {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.team-acm article {
  width: 31%;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1023px) {
  .team-acm article {
    width: 100%;
  }
}
.team-acm article img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.team-popup {
  display: none;
  right: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: auto;
  max-height: 100%;
  height: 100%;
  padding: 0px 0 0;
}
.team-popup .close-popup,
.team-popup .close-popup-inner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 5;
}
@media only screen and (max-width: 1023px) {
  .team-popup .close-popup,
  .team-popup .close-popup-inner {
    width: 28px;
    height: 28px;
    left: 45%;
    top: 34px;
    right: auto;
  }
}
.team-popup .close-popup:before, .team-popup .close-popup:after,
.team-popup .close-popup-inner:before,
.team-popup .close-popup-inner:after {
  content: "";
  width: 24px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 1px;
  transform-origin: center center;
  transition: background-color 350ms ease-in-out;
}
@media only screen and (max-width: 1023px) {
  .team-popup .close-popup:before, .team-popup .close-popup:after,
  .team-popup .close-popup-inner:before,
  .team-popup .close-popup-inner:after {
    width: 28px;
  }
}
.team-popup .close-popup:before,
.team-popup .close-popup-inner:before {
  transform: rotate(45deg);
}
.team-popup .close-popup:after,
.team-popup .close-popup-inner:after {
  transform: rotate(-45deg);
}
.team-popup .close-popup:hover:before, .team-popup .close-popup:hover:after,
.team-popup .close-popup-inner:hover:before,
.team-popup .close-popup-inner:hover:after {
  background: #E0B46D;
}
.team-popup .close-popup {
  display: none;
}
.team-popup .close-popup-inner:before, .team-popup .close-popup-inner:after {
  background: #000;
}

.team-popup-wrapper {
  display: none;
  position: relative;
  background: #fff;
  padding-bottom: 25px;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(to right, var(--White) 34%, var(--Light-Grey) 0%);
}
@media only screen and (max-width: 1023px) {
  .team-popup-wrapper {
    background: linear-gradient(to bottom, var(--White) 34%, var(--Light-Grey) 0%);
  }
}
.team-popup-wrapper.visible {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-popup-wrapper .team-content-wrapper {
  padding: 0;
  position: relative;
}

.our-team-acm {
  position: relative;
  margin: 102px 0 150px 0;
}
.our-team-acm .team-outer-wrapper {
  position: relative;
  margin: 104px 0;
}
.our-team-acm .team-outer-wrapper h3 {
  color: var(--Black, #000);
  /* Desktop/Headings/L */
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px; /* 112.5% */
  letter-spacing: 0.32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E9E9E9;
}
.our-team-acm .team-outer-wrapper .team-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1023px) {
  .our-team-acm .team-outer-wrapper .team-wrapper {
    flex-direction: column;
  }
}
.our-team-acm .team-outer-wrapper .team-wrapper article {
  width: 394px;
  height: auto;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .our-team-acm .team-outer-wrapper .team-wrapper article {
    display: block;
    width: 100%;
  }
}
.our-team-acm .team-outer-wrapper .team-wrapper article:has(.content):hover {
  position: relative;
}
.our-team-acm .team-outer-wrapper .team-wrapper article:has(.content):hover img {
  transform: scale(1.05); /* Zoom the image to 110% */
}
.our-team-acm .team-outer-wrapper .team-wrapper article .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 99%;
}
.our-team-acm .team-outer-wrapper .team-wrapper article .img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}
.our-team-acm .team-outer-wrapper .team-wrapper article .content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 99%;
  opacity: 0.85;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 50%);
  cursor: pointer;
}
.our-team-acm .team-outer-wrapper .team-wrapper article .content .content-wrapper {
  position: absolute;
  bottom: 25px;
  width: 100%;
  height: auto;
  color: #fff;
  text-align: center;
}
.our-team-acm .team-outer-wrapper .team-wrapper article .content .content-wrapper .title {
  color: var(--White, #FFF);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 13px; /* 92.857% */
  letter-spacing: 0.42px;
  margin-bottom: 10px;
}
.our-team-acm .team-outer-wrapper .team-wrapper article .content .content-wrapper .designation {
  color: var(--White, #FFF);
  text-align: center;
  font-feature-settings: "clig" off, "liga" off;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.14px;
  margin: 0 auto;
  padding-inline: 26%;
}

.teams-slider {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .teams-slider {
    top: 19%;
    width: 100%;
    position: relative;
    overflow-y: scroll;
  }
}
.teams-slider .block-title {
  padding: 0 0 10px 0;
}
.teams-slider .block-title span.caption {
  display: block;
  font: 500 16px/1.2 "Montserrat", sans-serif;
  color: #000;
  text-transform: none;
  text-align: left;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .teams-slider .block-title span.caption {
    text-transform: uppercase;
    font-size: 14px;
  }
}
.teams-slider .aboutus-slideshow-wrapper {
  width: 74%;
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .teams-slider .aboutus-slideshow-wrapper {
    width: 80%;
  }
}
@media only screen and (max-width: 1023px) {
  .teams-slider .aboutus-slideshow-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
.teams-slider .slideshow {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0 0 0px 0;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slideshow {
    margin-top: 75px;
  }
}
.teams-slider .slideshow-wrapper {
  font-size: 0;
  display: flex;
  align-items: center;
}
.teams-slider .slide {
  display: flex;
  flex-shrink: 0;
  position: relative;
  vertical-align: top;
  white-space: normal;
  margin: 33px 30px 0 0;
  width: 100%;
  margin: 0 auto;
  z-index: 2;
  transition: height 350ms ease-in-out, margin 350ms ease-in-out;
  margin-top: 24px;
}
.teams-slider .slide .svg-icon {
  position: absolute;
  left: 3%;
  z-index: 1;
  top: -25px;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slide .svg-icon {
    display: none;
  }
}
.teams-slider .slide .svg-icon svg {
  width: auto;
}
.teams-slider .slide.swiper-slide-active {
  height: 100%;
  transition: height 350ms ease-in-out, margin 350ms ease-in-out;
}
.teams-slider .slide .slide-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  background: var(--Light-Grey, #F5F5F5);
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slide .slide-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
}
.teams-slider .slide .img-wrapper {
  position: relative;
  max-width: 515px;
  width: 50%;
  height: auto;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slide .img-wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
.teams-slider .slide .img-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}
@media screen and (max-height: 720px) {
  .teams-slider .slide .img-wrapper img {
    width: 90%;
  }
}
.teams-slider .slide .right-slide-content {
  width: 60%;
  position: relative;
  text-align: left;
  padding: 15px 10px 15px 15px;
  background: transparent;
  box-sizing: border-box;
  cursor: pointer;
  transition: 350ms ease-in-out;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slide .right-slide-content {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-height: 720px) {
  .teams-slider .slide .right-slide-content {
    max-height: 500px;
    overflow-y: auto;
    justify-content: start;
  }
}
.teams-slider .slide .right-slide-content a {
  text-decoration: none;
}
.teams-slider .slide .right-slide-content .content-wrapper {
  position: relative;
  width: 85%;
  height: auto;
  color: #000;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-self: end;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .teams-slider .slide .right-slide-content .content-wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slide .right-slide-content .content-wrapper {
    width: 100%;
  }
}
.teams-slider .slide .right-slide-content .content-wrapper .title {
  color: var(--Black, #000);
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 44px; /* 110% */
}
.teams-slider .slide .right-slide-content .content-wrapper .designation {
  color: var(--Black, #000);
  font-feature-settings: "clig" off, "liga" off;
  /* Desktop/Headings/XXS */
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 0.39px;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}
.teams-slider .slide .right-slide-content .content-wrapper .designation::before {
  content: "";
  background-color: #E0B46D;
  transform: rotate(199deg);
  height: 100%;
  width: 3px;
  position: absolute;
  display: block;
  left: 0;
}
.teams-slider .slide .right-slide-content .content-wrapper .designation span {
  display: inline-block;
  padding-right: 7px;
  color: var(--Primary, #E0B46D);
  font-feature-settings: "clig" off, "liga" off;
  font-family: Montserrat;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13px; /* 100% */
  letter-spacing: 0.39px;
  text-transform: uppercase;
}
.teams-slider .slide .right-slide-content .content-wrapper p {
  color: var(--Black, #000);
  font-feature-settings: "clig" off, "liga" off;
  /* Desktop/Body/Regular */
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 200% */
  letter-spacing: 0.065px;
}
.teams-slider .slideshow-controls {
  position: absolute;
  top: 43%;
  left: 30px;
  width: 96%;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slideshow-controls {
    top: 55px;
    left: 26px;
    width: 87%;
  }
}
.teams-slider .slideshow-button {
  top: auto;
  bottom: 0;
  width: 20px;
  height: 20px;
  border: 0;
  transform: none;
  border: 1px solid #000;
  border-bottom: 0;
  border-left: 0;
  width: 28px;
  height: 28px;
  top: auto;
  z-index: 10;
}
@media only screen and (max-width: 1023px) {
  .teams-slider .slideshow-button {
    width: 18px;
    height: 18px;
  }
}
.teams-slider .slideshow-button:hover {
  border-color: #E0B46D;
}
.teams-slider .slideshow-button.previous {
  left: 2%;
  transform: rotate(-135deg);
}
.teams-slider .slideshow-button.next {
  right: 2%;
  transform: rotate(45deg);
}
.teams-slider .slideshow-pagination {
  display: none;
}
@media only screen and (max-width: 767px) {
  .teams-slider .slideshow-pagination {
    display: block;
  }
}

.rfp-custom-acm {
  margin: 0 auto;
  position: relative;
  padding: 15px 0 55px 0;
  background-color: #fff;
  display: none;
}
.home .rfp-custom-acm {
  display: block;
}

.rfp-wrapper,
.rfp-popup-wrapper {
  padding: 0 60px;
  max-width: 956px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-wrapper,
  .rfp-popup-wrapper {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper,
  .rfp-popup-wrapper {
    padding: 0 25px;
  }
}
.rfp-wrapper .content-wrapper,
.rfp-popup-wrapper .content-wrapper {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .content-wrapper,
  .rfp-popup-wrapper .content-wrapper {
    padding-bottom: 20px;
  }
}
.rfp-wrapper .page-content h2.h1-like,
.rfp-popup-wrapper .page-content h2.h1-like {
  margin-bottom: 10px;
  text-align: center;
}
.rfp-wrapper .info-details,
.rfp-popup-wrapper .info-details {
  position: absolute;
  bottom: -28px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  padding-left: 20px;
  min-height: 85px;
}
.rfp-wrapper .info-details .info-title,
.rfp-popup-wrapper .info-details .info-title {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.rfp-wrapper .info-details a,
.rfp-popup-wrapper .info-details a {
  text-decoration: none;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .rfp-wrapper .info-details,
  .rfp-popup-wrapper .info-details {
    top: 85%;
  }
  .mobile-device .rfp-wrapper .info-details,
  .mobile-device .rfp-popup-wrapper .info-details {
    top: 78%;
  }
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .info-details,
  .rfp-popup-wrapper .info-details {
    position: relative;
    text-align: center;
    bottom: 0;
    padding: 20px 0 0 0;
  }
}
.rfp-wrapper .form,
.rfp-popup-wrapper .form {
  padding: 0 0 10px 0;
  font-size: 0;
  position: relative;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form,
  .rfp-popup-wrapper .form {
    padding: 0;
  }
}
.rfp-wrapper .form .row,
.rfp-popup-wrapper .form .row {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form .row,
  .rfp-popup-wrapper .form .row {
    margin-bottom: 0;
  }
}
.rfp-wrapper .form .row.row-3, .rfp-wrapper .form .row.row-4,
.rfp-popup-wrapper .form .row.row-3,
.rfp-popup-wrapper .form .row.row-4 {
  margin-bottom: 0;
}
.rfp-wrapper .form p,
.rfp-popup-wrapper .form p {
  margin-left: 20px;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p,
  .rfp-popup-wrapper .form p {
    margin-left: 0;
  }
}
.rfp-wrapper .form p.required:after,
.rfp-popup-wrapper .form p.required:after {
  content: "*";
  position: absolute;
  top: 7px;
  left: 8px;
  color: #E30000;
  font-size: 16px;
  line-height: 1;
  font-family: "Lato", sans-serif;
}
.rfp-wrapper .form p label,
.rfp-popup-wrapper .form p label {
  display: none;
}
.rfp-wrapper .form p span.checkbox-group,
.rfp-wrapper .form p span.checkbox-radio,
.rfp-popup-wrapper .form p span.checkbox-group,
.rfp-popup-wrapper .form p span.checkbox-radio {
  margin-bottom: 10px;
  width: 100%;
  overflow: hidden;
  float: none;
}
.rfp-wrapper .form p span.checkbox-group label,
.rfp-wrapper .form p span.checkbox-radio label,
.rfp-popup-wrapper .form p span.checkbox-group label,
.rfp-popup-wrapper .form p span.checkbox-radio label {
  float: left;
  width: auto;
  padding-right: 10px;
  vertical-align: top;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p span.checkbox-group,
  .rfp-wrapper .form p span.checkbox-radio,
  .rfp-popup-wrapper .form p span.checkbox-group,
  .rfp-popup-wrapper .form p span.checkbox-radio {
    width: auto;
  }
  .rfp-wrapper .form p span.checkbox-group label,
  .rfp-wrapper .form p span.checkbox-radio label,
  .rfp-popup-wrapper .form p span.checkbox-group label,
  .rfp-popup-wrapper .form p span.checkbox-radio label {
    display: block;
    width: auto;
    float: none;
    margin-bottom: 25px;
  }
  .rfp-wrapper .form p span.checkbox-group label:last-child,
  .rfp-wrapper .form p span.checkbox-radio label:last-child,
  .rfp-popup-wrapper .form p span.checkbox-group label:last-child,
  .rfp-popup-wrapper .form p span.checkbox-radio label:last-child {
    margin-bottom: 0;
  }
}
.rfp-wrapper .form p.col-1,
.rfp-popup-wrapper .form p.col-1 {
  width: calc(34% - 20px);
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.col-1,
  .rfp-popup-wrapper .form p.col-1 {
    width: 100%;
  }
}
.rfp-wrapper .form p.col-2,
.rfp-popup-wrapper .form p.col-2 {
  width: calc(50% - 10px);
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.col-2,
  .rfp-popup-wrapper .form p.col-2 {
    width: 100%;
  }
}
.rfp-wrapper .form p.col-3,
.rfp-popup-wrapper .form p.col-3 {
  width: calc(34% - 20px);
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.col-3,
  .rfp-popup-wrapper .form p.col-3 {
    width: 100%;
  }
}
.rfp-wrapper .form p.col-3:last-child,
.rfp-popup-wrapper .form p.col-3:last-child {
  float: right;
}
.rfp-wrapper .form p.col-50,
.rfp-popup-wrapper .form p.col-50 {
  width: calc(50% - 20px);
}
.rfp-wrapper .form p.col-50.col-start,
.rfp-popup-wrapper .form p.col-50.col-start {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.col-50,
  .rfp-popup-wrapper .form p.col-50 {
    width: 100%;
  }
  .rfp-wrapper .form p.col-50.col-start,
  .rfp-popup-wrapper .form p.col-50.col-start {
    width: 100%;
  }
}
.rfp-wrapper .form p.col-start,
.rfp-popup-wrapper .form p.col-start {
  clear: both;
  margin-left: 0;
}
.rfp-wrapper .form p.type_checkbox,
.rfp-popup-wrapper .form p.type_checkbox {
  padding: 0 0 15px 20px;
}
.rfp-wrapper .form p.type_checkbox label,
.rfp-popup-wrapper .form p.type_checkbox label {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  width: 100%;
  font-weight: 700;
  text-align: left;
  margin: 0 0 7px 0;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.type_checkbox,
  .rfp-popup-wrapper .form p.type_checkbox {
    padding: 0 0 15px 0;
  }
  .rfp-wrapper .form p.type_checkbox label,
  .rfp-popup-wrapper .form p.type_checkbox label {
    margin: 0 0 12px 0;
  }
}
.rfp-wrapper .form p.type_file,
.rfp-popup-wrapper .form p.type_file {
  text-align: right;
  width: calc(100% - 235px);
  margin-bottom: 25px;
}
.rfp-wrapper .form p.type_file input[type=file],
.rfp-popup-wrapper .form p.type_file input[type=file] {
  width: 100%;
  text-align: right;
}
.rfp-wrapper .form p.type_file .fake-input,
.rfp-popup-wrapper .form p.type_file .fake-input {
  right: 0;
  left: auto;
  width: auto;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form p.type_file,
  .rfp-popup-wrapper .form p.type_file {
    text-align: left;
    width: 100%;
  }
  .rfp-wrapper .form p.type_file .fake-input,
  .rfp-popup-wrapper .form p.type_file .fake-input {
    right: auto;
    left: 0;
  }
}
.rfp-wrapper .form input[type=text], .rfp-wrapper .form input[type=date], .rfp-wrapper .form textarea, .rfp-wrapper .form select, .rfp-wrapper .form .input-overlay,
.rfp-popup-wrapper .form input[type=text],
.rfp-popup-wrapper .form input[type=date],
.rfp-popup-wrapper .form textarea,
.rfp-popup-wrapper .form select,
.rfp-popup-wrapper .form .input-overlay {
  width: 100%;
}
.rfp-wrapper .form .controls,
.rfp-popup-wrapper .form .controls {
  text-align: right;
  display: block;
  margin-top: 0;
}
.rfp-wrapper .form .controls p,
.rfp-popup-wrapper .form .controls p {
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .rfp-wrapper .form .controls,
  .rfp-popup-wrapper .form .controls {
    margin-top: 10px;
    text-align: center;
  }
  .rfp-wrapper .form .controls .button,
  .rfp-popup-wrapper .form .controls .button {
    width: 100%;
    font-size: 12px;
  }
  .rfp-wrapper .form .controls p,
  .rfp-popup-wrapper .form .controls p {
    margin: 0 auto;
    width: 100%;
  }
}

.rfp-popup-wrapper {
  display: none;
  position: relative;
  background: #fff;
  padding-bottom: 25px;
  overflow: hidden;
}
.rfp-popup-wrapper.visible {
  display: block;
}
.rfp-popup-wrapper .content-wrapper {
  padding: 0;
  height: 130px;
  position: relative;
}
.rfp-popup-wrapper .info-details {
  bottom: 0;
  position: relative;
}
.rfp-popup-wrapper .logo-rfp {
  position: absolute;
  max-width: 325px;
  height: 44px;
  top: 50%;
  left: 50%;
  margin: 0 auto;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .rfp-popup-wrapper .logo-rfp {
    height: 27px;
    width: 207px;
  }
}
.rfp-popup-wrapper .logo-rfp img {
  display: block;
  width: 100%;
  height: 100%;
}
.rfp-popup-wrapper h2.h1-like {
  display: none;
}
.rfp-popup-wrapper .form .controls {
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
}
.rfp-popup-wrapper .form .controls p {
  margin: 0;
  position: relative;
  padding: 0;
}
.rfp-popup-wrapper .form .controls p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 55px;
  background: #E0B46D;
  width: 100%;
  height: 80px;
  margin: 0 0 0 20px;
  transform: skew(-20deg, 0);
  -webkit-backface-visibility: hidden;
  z-index: 1;
  transition: all 350ms ease-in-out;
}
.rfp-popup-wrapper .form .controls p .button {
  color: #000;
  background: transparent;
  right: -60px;
  padding: 0 80px 0 90px;
  height: 80px;
  z-index: 2;
}
.rfp-popup-wrapper .form .controls p:hover .button {
  color: #fff;
}
.rfp-popup-wrapper .form .controls p:hover:before {
  background: #000;
}
@media only screen and (max-width: 767px) {
  .rfp-popup-wrapper .form .controls {
    position: relative;
    top: auto;
  }
  .rfp-popup-wrapper .form .controls p .button {
    background-color: #E0B46D;
    height: 50px;
    right: auto;
  }
  .rfp-popup-wrapper .form .controls p .button:hover {
    background-color: #000;
    color: #E0B46D;
  }
  .rfp-popup-wrapper .form .controls p:before {
    content: none;
  }
}

.rfp-popup {
  display: none;
  right: 0;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  overflow: auto;
  max-height: 100%;
  padding: 130px 0 0;
  background: rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 767px) {
  .rfp-popup {
    padding: 60px 0 30px;
  }
}
.rfp-popup .close-popup,
.rfp-popup .close-popup-inner {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-indent: -9999px;
  z-index: 5;
}
@media only screen and (max-width: 767px) {
  .rfp-popup .close-popup,
  .rfp-popup .close-popup-inner {
    top: 10px;
    right: 10px;
  }
}
.rfp-popup .close-popup:before, .rfp-popup .close-popup:after,
.rfp-popup .close-popup-inner:before,
.rfp-popup .close-popup-inner:after {
  content: "";
  width: 24px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 1px;
  transform-origin: center center;
  transition: background-color 350ms ease-in-out;
}
.rfp-popup .close-popup:before,
.rfp-popup .close-popup-inner:before {
  transform: rotate(45deg);
}
.rfp-popup .close-popup:after,
.rfp-popup .close-popup-inner:after {
  transform: rotate(-45deg);
}
.rfp-popup .close-popup:hover:before, .rfp-popup .close-popup:hover:after,
.rfp-popup .close-popup-inner:hover:before,
.rfp-popup .close-popup-inner:hover:after {
  background: #E0B46D;
}
.rfp-popup .close-popup {
  display: none;
}
.rfp-popup .close-popup-inner:before, .rfp-popup .close-popup-inner:after {
  background: #000;
}

@media only screen and (max-width: 767px) {
  html.hamburger-navigation-visible {
    overflow: hidden;
  }
}
#hamburger-navigation {
  display: none;
  position: fixed;
  left: -100%;
  top: 0;
  padding-top: 100px;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: #fff;
  text-align: left;
  z-index: 60;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  transition: left 200ms, visibility 200ms;
}
@media only screen and (max-width: 1023px) {
  #hamburger-navigation {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation {
    padding-top: 50px;
  }
}
.hamburger-navigation-visible #hamburger-navigation {
  left: 0;
  visibility: visible;
}
#hamburger-navigation .form-trigger {
  background-color: transparent;
  color: #000;
  padding: 0;
  margin-left: 40px;
  font-size: 18px;
  line-height: 1;
}
#hamburger-navigation .form-trigger:hover {
  color: #E0B46D;
}
#hamburger-navigation .main-menu {
  position: relative;
  max-width: 50%;
  padding: 0 20px 40px 0;
  margin: 0 0 20px 40px;
  border-bottom: 1px dashed #D8D8D8;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .main-menu {
    max-width: 90%;
  }
}
#hamburger-navigation .main-menu .menu li {
  position: relative;
}
#hamburger-navigation .main-menu .menu a {
  display: block;
  padding: 10px 40px 10px 0;
}
#hamburger-navigation .main-menu .menu.level-1 {
  padding-top: 25px;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a {
  font: 400 18px/2 "Montserrat", sans-serif;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
#hamburger-navigation .main-menu .menu.level-1 > li > a:hover, #hamburger-navigation .main-menu .menu.level-1 > li > a.active {
  color: #E0B46D;
}
#hamburger-navigation .main-menu .menu.level-1 > li > .plus {
  top: 15px;
}
#hamburger-navigation .main-menu .menu.submenu {
  position: relative;
  overflow: hidden;
  max-height: 0;
  margin-left: 20px;
  transition: max-height 222ms cubic-bezier(0, 1, 0, 1), padding 333ms, visibility 300ms;
  visibility: hidden;
}
#hamburger-navigation .main-menu .menu.submenu a {
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  color: #000;
  text-transform: none;
  padding: 5px 40px 10px 0;
}
#hamburger-navigation .main-menu .menu.submenu a:hover, #hamburger-navigation .main-menu .menu.submenu a.active {
  text-decoration: underline;
}
#hamburger-navigation .main-menu .parent.expanded > .submenu {
  max-height: 800px;
  padding: 0;
  transition: max-height 222ms cubic-bezier(1, 0, 1, 0), padding 333ms;
  visibility: visible;
}
#hamburger-navigation .main-menu .menu.level-3.submenu {
  padding: 0;
}
#hamburger-navigation .main-menu .plus {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 10px;
  cursor: pointer;
}
#hamburger-navigation .main-menu .plus .horizontal, #hamburger-navigation .main-menu .plus .vertical {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border: solid #000;
  border-width: 0 1px 1px 0;
  margin-left: -4px;
  transform: rotate(45deg);
  transition: all 350ms ease-in-out;
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .vertical, #hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  transform: rotate(225deg);
}
#hamburger-navigation .main-menu .parent.expanded > .plus > .horizontal {
  opacity: 0;
}
#hamburger-navigation .main-menu .menu.submenu .plus {
  top: 0;
}
#hamburger-navigation .logo-hamburger-wrapper {
  background-color: #000;
  width: 100%;
  height: 105px;
  position: absolute;
  bottom: 0;
  padding: 0 30px;
}
#hamburger-navigation .logo-hamburger-wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
}
#hamburger-navigation .logo-hamburger {
  display: block;
  margin: 30px auto 20px;
  max-width: 260px;
  height: auto;
  opacity: 1;
  z-index: 1;
  transition: opacity 350ms ease-in-out;
}
#hamburger-navigation .logo-hamburger img {
  display: block;
  width: 100%;
  height: 100%;
}
#hamburger-navigation .logo-hamburger:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  #hamburger-navigation .logo-hamburger {
    max-width: 260px;
  }
}
#hamburger-navigation .languageselector-wrapper {
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}
#hamburger-navigation .languageselector-wrapper .language-selector {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
#hamburger-navigation .languageselector-wrapper .language-selector li {
  display: inline-block;
  margin-right: 15px;
}
#hamburger-navigation .languageselector-wrapper .language-selector li a {
  display: block;
  font: 400 18px/1.2 "Montserrat", sans-serif;
  text-align: center;
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
}
#hamburger-navigation .languageselector-wrapper .language-selector li a .sep {
  display: none;
  font-weight: bold;
  padding-left: 10px;
}
#hamburger-navigation .languageselector-wrapper .language-selector li:first-child a .sep {
  color: #E0B46D;
  display: inline-block;
  position: relative;
}
#hamburger-navigation .languageselector-wrapper .language-selector li.active a {
  font-weight: bold;
  color: #E0B46D;
}

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

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

.promos-position-a {
  position: relative;
  z-index: 30;
}
.promos-position-a .slideshow {
  overflow: hidden;
}
.promos-position-a .promo {
  position: relative;
  width: 33.33%;
  overflow: hidden;
  white-space: normal;
  background: #266060;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .promos-position-a .promo {
    width: 70%;
  }
}
.promos-position-a .promo .inner-wrapper {
  width: 100%;
  padding-top: 100%;
}
.promos-position-a .promo .promo-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  transform: scale(1.1);
  transition: transform 600ms;
}
.promos-position-a .promo .promo-thumbnail:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}
.promos-position-a .promo .promo-thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #000;
  border-bottom-color: #000;
  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: "Lato", 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 "Lato", 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: 1024px) {
  .promos-position-a .promo {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .promos-position-a .promo {
    width: 83%;
  }
}
.promos-position-a .slideshow-pagination {
  margin-top: 20px;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  .promos-position-a .slideshow-pagination {
    display: none;
  }
}
.promos-position-a .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #327d7d;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.promos-position-a .slideshow-pagination > *:hover, .promos-position-a .slideshow-pagination > *.active {
  background: #54baba;
}

#events {
  position: relative;
  background: #F0F0F0;
  overflow: hidden;
  text-align: center;
}
#events h2 {
  font: 200 36px/1.2 "Lato", sans-serif;
  margin: 15px;
  color: #54baba;
  text-transform: uppercase;
}
#events h2 a {
  text-decoration: none;
}
#events .slideshow {
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
#events .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
#events .event {
  position: relative;
  display: inline-block;
  width: calc(33.33% - 10px);
  height: 666px;
  overflow: hidden;
  vertical-align: top;
  white-space: normal;
  margin: 0 5px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  #events .event {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  #events .event {
    width: 100vw;
    height: 580px;
    margin: 0;
  }
}
#events .event .thumbnail {
  position: relative;
  width: 100%;
  height: 350px;
  background-position: 50% 50%;
  background-size: cover;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  #events .event .thumbnail {
    height: 266px;
  }
}
#events .event .thumbnail.no-thumbnail {
  background: #dbdbdb;
}
#events .event .thumbnail .loading:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #000;
  border-bottom-color: #000;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#events .event .date {
  display: block;
  position: relative;
  margin: 34px 0 37px;
  color: #525252;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #events .event .date {
    margin: 20px 0;
  }
}
#events .event .date a {
  color: inherit;
  text-decoration: none;
}
#events .event .date a:hover {
  text-decoration: underline;
}
#events .event .date:after {
  content: "";
  display: block;
  width: 180px;
  height: 1px;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #E0E0E0;
}
@media only screen and (max-width: 767px) {
  #events .event .date:after {
    bottom: -8px;
  }
}
#events .event h3 {
  font: 200 24px/1.33 "Lato", sans-serif;
  color: #54baba;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  #events .event h3 {
    font-size: 20px;
  }
}
#events .event p {
  font-size: 15px;
  line-height: 1.33;
  color: #525252;
}
@media only screen and (max-width: 767px) {
  #events .event p {
    font-size: 14px;
  }
}
#events .event .copy {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  #events .event .copy {
    padding: 0 10px;
  }
}
#events .event .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
#events .slideshow-pagination {
  margin: 20px 0;
  text-align: center;
  font-size: 0;
}
@media only screen and (max-width: 767px) {
  #events .slideshow-pagination {
    display: none;
  }
}
#events .slideshow-pagination > * {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  text-indent: -9999px;
  overflow: hidden;
  background: #327d7d;
  border-radius: 50%;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
#events .slideshow-pagination > *:hover, #events .slideshow-pagination > *.active {
  background: #54baba;
}

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

.room .amenities {
  clear: both;
  margin: 30px 0;
}
.room .amenities .rooms-icon {
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 20px;
  width: 49%;
}
.room .amenities .rooms-icon:before {
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
  margin-right: 20px;
}
.room .thumbnail {
  position: relative;
  float: right;
  margin: 0 0 20px 20px;
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  .room .thumbnail {
    width: 100%;
    margin: 20px 0;
    max-width: none;
    float: none;
  }
}
.room .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}
.room .links {
  margin: 20px 0;
}

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

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

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

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

#feeds {
  position: relative;
  padding: 50px 0;
  z-index: 10;
}
#feeds h2 {
  font: 200 36px/1.2 "Lato", 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: #000;
  border-bottom-color: #000;
  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 "Montserrat", 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 "Montserrat", sans-serif;
  text-align: left;
  color: #ffffff;
}
@media only screen and (min-width: 1800px) {
  #feeds .feed-item .feed-descr {
    padding: 20px;
  }
}
#feeds .feed-item .feed-title {
  margin-bottom: 10px;
  font-weight: 600;
  text-decoration: underline;
  transition: all 350ms ease-in-out;
  padding-right: 30px;
}
#feeds .feed-item .feed-date {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
}
#feeds .feed-item .feed-text {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
}
#feeds .feed-item .feed-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#feeds .feed-item.instagram {
  background: #833ab4;
}
#feeds .feed-item.instagram:before {
  background-position: 0 0;
}
#feeds .feed-item.instagram .feed-descr {
  display: none;
}
#feeds .feed-item.instagram a {
  color: inherit;
}
#feeds .feed-item.facebook {
  background: #3b5998;
}
#feeds .feed-item.facebook:before {
  background-position: -50px 0;
}
#feeds .feed-item.twitter {
  background: #657786;
}
#feeds .feed-item.twitter:before {
  background-position: -100px 0;
}
#feeds .feed-item.blog:before {
  background-position: -150px 0;
}
#feeds .feed-item.blog h3 {
  color: #ACA394;
  padding-right: 30px;
  margin-bottom: 7px;
  transition: all 350ms ease-in-out;
}
#feeds .feed-item.blog h3:hover {
  opacity: 0.7;
}
#feeds .feed-item.blog .feed-descr {
  color: #5c574f;
}
#feeds .feed-controls {
  display: block;
  text-align: center;
}

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

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

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

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

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

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

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

.footer {
  position: relative;
  padding: 30px 0 30px 0;
  font-size: 12px;
  color: #fff;
  background: #000;
  text-align: center;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 30px 0 100px 0;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #E0B46D;
}
.footer .center-column {
  padding: 0 65px;
}
.footer .center-column:before {
  content: "";
  position: absolute;
  top: -60px;
  left: 65px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
}
@media only screen and (max-width: 1023px) {
  .footer .center-column {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  .footer .center-column:before {
    left: 35px;
  }
}
.footer .footer-column-wrapper {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .footer .footer-column-wrapper {
    display: block;
    justify-content: unset;
  }
}
.footer .footer-column {
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
.footer .footer-column.left {
  width: 30%;
  text-align: left;
  padding-right: 2%;
}
.footer .footer-column.right {
  width: 70%;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .footer .footer-column.left, .footer .footer-column.right {
    width: 100%;
    text-align: center;
    padding-right: 0;
  }
  .footer .footer-column.right {
    display: flex;
    flex-flow: column;
  }
}
.footer .logo-footer {
  display: block;
  margin-top: 23px;
  max-width: 325px;
  height: 44px;
  opacity: 1;
  z-index: 1;
  transition: opacity 350ms ease-in-out;
}
.footer .logo-footer img {
  display: block;
  width: 100%;
  height: auto;
}
@media  {
  .footer .logo-footer img {
    image-rendering: -webkit-optimize-contrast;
  }
}
.footer .logo-footer:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 767px) {
  .footer .logo-footer {
    max-width: 260px;
    margin: 0 auto 40px;
    height: auto;
  }
}
.footer .footer-top-bar {
  position: relative;
}
.footer .footer-top-bar h4 {
  font: 300 22px/1 "Montserrat", sans-serif;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  position: relative;
  margin-right: 20px;
}
.footer .footer-top-bar h4 span {
  color: #E0B46D;
  font-weight: 400;
  font-size: 30px;
  padding-right: 7px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-top-bar {
    order: 2;
    padding-bottom: 60px;
  }
  .footer .footer-top-bar h4 {
    font-size: 18px;
    display: block;
    padding-bottom: 20px;
  }
  .footer .footer-top-bar h4 span {
    font-weight: 300;
    font-size: 24px;
  }
}
.footer .footer-bottom-bar {
  border-top: 1px solid #fff;
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .footer .footer-bottom-bar {
    padding-top: 25px;
  }
}
.footer .socials {
  margin: 3px 0 20px;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
}
.footer .socials li {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  margin: 0 20px 0 0;
}
.footer .socials li:last-child {
  margin-right: 0;
}
.footer .socials a {
  text-indent: -9999px;
  font-size: 0;
}
.footer .socials a svg {
  width: 26px;
  height: 26px;
  fill: #E0B46D;
  transition: fill 350ms ease-in-out;
}
.footer .socials a:hover svg {
  fill: #fff;
}
@media only screen and (max-width: 767px) {
  .footer .socials {
    float: none;
    margin: 0 auto;
  }
}
.footer .footer-menu {
  margin-bottom: 30px;
  width: 50%;
  text-align: right;
  display: inline-block;
  vertical-align: top;
  font-size: 0;
}
.footer .footer-menu ul {
  -moz-column-count: 2;
       column-count: 2;
  text-align: left;
  display: flex;
  flex-flow: wrap;
  width: 100%;
  justify-content: space-between;
}
.footer .footer-menu li {
  display: block;
  width: 50%;
}
.footer .footer-menu a {
  display: block;
  margin: 0 15px;
  font: 12px/2 "Montserrat", sans-serif;
  text-decoration: none;
  color: #fff;
  letter-spacing: 0.5px;
}
.footer .footer-menu a:hover, .footer .footer-menu a.active {
  color: #E0B46D;
}
@media only screen and (max-width: 767px) {
  .footer .footer-menu ul {
    -moz-column-count: unset;
         column-count: unset;
    display: block;
    flex-flow: unset;
    justify-content: unset;
    text-align: center;
  }
  .footer .footer-menu ul li {
    width: auto;
    padding-bottom: 7px;
  }
  .footer .footer-menu ul a {
    font-size: 14px;
  }
}
.footer .copyright {
  display: block;
  text-align: left;
  margin-left: 4%;
}
@media only screen and (max-width: 1023px) {
  .footer .copyright {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer .copyright {
    text-align: 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 */
  /* FULL SIZE IMAGE -> Loading */
  /* THUMBNAILS */
  /* THUMBNAILS -> Navigation */
  /* INFO */
}
#hebs-gallery .galleria {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
#hebs-gallery .close-button {
  position: absolute;
  right: 20px;
  top: 12px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  z-index: 2;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .close-button:hover {
  background-position: -37px 0;
}
#hebs-gallery .close-button:active {
  background-position: -74px 0;
}
#hebs-gallery .galleria-container {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  height: 100% !important;
}
#hebs-gallery .select-wrapper {
  position: relative;
  float: left;
  margin: 5px 0 0 20px;
  z-index: 2;
}
#hebs-gallery .category-selector {
  height: 30px;
  line-height: 30px;
  margin-bottom: 0;
  background: #ddf0f0;
  font-size: 14px;
  color: #132929;
}
#hebs-gallery .galleria-stage {
  position: absolute;
  top: 40px;
  bottom: 120px;
  left: 0;
  right: 0;
  padding: 20px 72px;
  overflow: hidden;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-stage {
    padding: 0;
  }
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-stage {
    bottom: 0;
  }
}
#hebs-gallery .galleria-stage .galleria-image img {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
#hebs-gallery .galleria-container.touch .galleria-stage {
  padding: 0;
}
#hebs-gallery.no-controls .galleria-stage {
  bottom: 0;
  padding: 20px;
}
#hebs-gallery.no-controls .galleria-image-nav {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #hebs-gallery .galleria-image-nav {
    display: none;
  }
}
#hebs-gallery .galleria-image-nav-left, #hebs-gallery .galleria-image-nav-right {
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 31px;
  height: 61px;
  margin-top: -30px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-image-nav-left {
  left: 20px;
  background-position: 0 -37px;
}
#hebs-gallery .galleria-image-nav-left:hover {
  background-position: -51px -37px;
}
#hebs-gallery .galleria-image-nav-left:active {
  background-position: -102px -37px;
}
#hebs-gallery .galleria-image-nav-right {
  right: 20px;
  background-position: 0 -118px;
}
#hebs-gallery .galleria-image-nav-right:hover {
  background-position: -51px -118px;
}
#hebs-gallery .galleria-image-nav-right:active {
  background-position: -102px -118px;
}
#hebs-gallery .galleria-loader {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
}
#hebs-gallery .galleria-loader:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #000;
  border-bottom-color: #000;
  border-radius: 50%;
  animation: loading-icon-spin 1200ms linear infinite;
}
@keyframes loading-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#hebs-gallery.no-controls .galleria-thumbnails-container {
  display: none;
}
#hebs-gallery .galleria-thumbnails-container {
  height: 120px;
  bottom: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  background: #000;
}
@media only screen and (max-width: 1023px) and (orientation: landscape) {
  #hebs-gallery .galleria-thumbnails-container {
    display: none;
  }
}
#hebs-gallery .galleria-carousel .galleria-thumbnails-list {
  margin-left: 52px;
  margin-right: 52px;
}
#hebs-gallery .galleria-thumbnails {
  margin: 20px auto 0;
}
#hebs-gallery .galleria-thumbnails .galleria-image {
  height: 80px !important;
  width: 80px !important;
  background: #000;
  margin: 0 6px 0 0;
  float: left;
  cursor: pointer;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active {
  border: 3px solid #fff;
}
#hebs-gallery .galleria-thumbnails .galleria-image.active img {
  margin: -3px 0 0 -3px;
}
#hebs-gallery .galleria-thumb-nav-left, #hebs-gallery .galleria-thumb-nav-right {
  display: none;
  position: absolute;
  top: 50%;
  cursor: pointer;
  width: 21px;
  height: 21px;
  margin-top: -10px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
}
#hebs-gallery .galleria-carousel .galleria-thumb-nav-left, #hebs-gallery .galleria-carousel .galleria-thumb-nav-right {
  display: block;
}
#hebs-gallery .galleria-thumb-nav-left.disabled, #hebs-gallery .galleria-thumb-nav-right.disabled {
  opacity: 0.5;
  cursor: default;
}
#hebs-gallery .galleria-thumb-nav-left {
  left: 15px;
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:hover {
  background-position: -26px -199px;
}
#hebs-gallery .galleria-thumb-nav-left:active {
  background-position: -57px -199px;
}
#hebs-gallery .galleria-thumb-nav-left.disabled {
  background-position: 5px -199px;
}
#hebs-gallery .galleria-thumb-nav-right {
  right: 15px;
  background-position: 5px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:hover {
  background-position: -26px -240px;
}
#hebs-gallery .galleria-thumb-nav-right:active {
  background-position: -57px -240px;
}
#hebs-gallery .galleria-thumb-nav-right.disabled {
  background-position: 5px -240px;
}
#hebs-gallery .galleria-info {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 40px;
}
#hebs-gallery .galleria-info .galleria-info-description {
  text-align: center;
  line-height: 40px;
  color: #fff;
  position: absolute;
  left: 300px;
  right: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#share-this-site-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABAAQMAAACQp+OdAAAAA1BMVEUAAACnej3aAAAAAXRSTlOzEo46UAAAAA5JREFUeAFjoACMglEAAAJAAAGccJWlAAAAAElFTkSuQmCC");
  background: rgba(0, 0, 0, 0.7);
}
#share-this-site-overlay .wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 140px;
  padding: 20px;
  margin: -90px 0 0 -230px;
  background: #327d7d;
}
#share-this-site-overlay .close-button {
  position: absolute;
  right: 15px;
  top: 10px;
  width: 17px;
  height: 17px;
  text-indent: -9999px;
  overflow: hidden;
  background: url("../images/common.svg") 0 0 no-repeat;
  cursor: pointer;
  z-index: 2;
}
#share-this-site-overlay .close-button:hover {
  background-position: -37px 0;
}
#share-this-site-overlay .close-button:active {
  background-position: -74px 0;
}

#share-this-site {
  padding: 0;
  margin: 0 5px 5px;
  width: 420px;
}
#share-this-site li {
  float: left;
  width: 130px;
  margin: 0 5px;
  font-size: 0;
}
#share-this-site a {
  position: relative;
  display: block;
  height: 16px;
  margin: 5px 0;
  padding-left: 20px;
  font: 12px/16px "Lato", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #f7fcfc;
}
#share-this-site a:hover {
  color: #6dc7c7;
}
#share-this-site a .icon {
  float: left;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  background: url(images/share.png) 0 0 no-repeat;
}
#share-this-site a.share_facebook .icon {
  background-position: 0 0;
}
#share-this-site a.share_facebook:hover .icon {
  background-position: -36px 0;
}
#share-this-site a.share_twitter .icon {
  background-position: 0 -36px;
}
#share-this-site a.share_twitter:hover .icon {
  background-position: -36px -36px;
}
#share-this-site a.share_tumblr .icon {
  background-position: 0 -72px;
}
#share-this-site a.share_tumblr:hover .icon {
  background-position: -36px -72px;
}
#share-this-site a.share_linkedin .icon {
  background-position: 0 -108px;
}
#share-this-site a.share_linkedin:hover .icon {
  background-position: -36px -108px;
}
#share-this-site a.share_digg .icon {
  background-position: 0 -144px;
}
#share-this-site a.share_digg:hover .icon {
  background-position: -36px -144px;
}
#share-this-site a.share_delicious .icon {
  background-position: 0 -180px;
}
#share-this-site a.share_delicious:hover .icon {
  background-position: -36px -180px;
}
#share-this-site a.share_stumbleupon .icon {
  background-position: 0 -216px;
}
#share-this-site a.share_stumbleupon:hover .icon {
  background-position: -36px -216px;
}
#share-this-site a.share_orkut .icon {
  background-position: 0 -252px;
}
#share-this-site a.share_orkut:hover .icon {
  background-position: -36px -252px;
}
#share-this-site a.share_myspace .icon {
  background-position: 0 -288px;
}
#share-this-site a.share_myspace:hover .icon {
  background-position: -36px -288px;
}
#share-this-site a.share_yammer .icon {
  background-position: 0 -324px;
}
#share-this-site a.share_yammer:hover .icon {
  background-position: -36px -324px;
}
#share-this-site a.share_pinterest .icon {
  background-position: 0 -360px;
}
#share-this-site a.share_pinterest:hover .icon {
  background-position: -36px -360px;
}
#share-this-site a.share_bebo .icon {
  background-position: 0 -396px;
}
#share-this-site a.share_bebo:hover .icon {
  background-position: -36px -396px;
}
#share-this-site a.share_live .icon {
  background-position: 0 -432px;
}
#share-this-site a.share_live:hover .icon {
  background-position: -36px -432px;
}
#share-this-site a.share_google .icon {
  background-position: 0 -468px;
}
#share-this-site a.share_google:hover .icon {
  background-position: -36px -468px;
}
#share-this-site a.share_email .icon {
  background-position: 0 -504px;
}
#share-this-site a.share_email:hover .icon {
  background-position: -36px -504px;
}

.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;
}
@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;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .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;
}
@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;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .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: 300px;
  height: 300px;
  margin-left: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .single-special .background {
    width: 100%;
    float: none;
    margin-left: 0;
  }
}

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

.hotel-location-map, .poi-map-canvas {
  height: 444px;
  background: #f5f5f5;
}
.hotel-location-map h4, .poi-map-canvas h4 {
  margin: 0;
  font: 16px "Lato", sans-serif;
  text-transform: uppercase;
  color: #000;
}
.hotel-location-map p, .poi-map-canvas p {
  margin: 5px 0 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}
.hotel-location-map .button, .poi-map-canvas .button {
  display: block;
}
.hotel-location-map .map-content, .poi-map-canvas .map-content {
  overflow: hidden;
}

.map-content {
  background: rgba(0, 0, 0, 0.9);
  font-size: 12px;
  line-height: 1.5;
  overflow: hidden;
  padding: 20px;
  position: relative;
  text-align: center;
  color: #fff;
  width: 300px;
}
.map-content h3, .map-content p {
  margin-bottom: 5px;
}
.map-content h3 {
  font: 600 16px/1.2 "Lato", sans-serif;
  color: #fff;
}
.map-content a {
  color: #fff;
}
.map-content .button {
  margin-top: 20px;
}

.pressroom {
  text-align: center;
}
.pressroom .pressroom-item {
  display: inline-block;
  vertical-align: top;
  width: calc(50% - 22px);
  height: 400px;
  margin: 15px 20px 20px 0px;
  position: relative;
  overflow: hidden;
  border: 1px solid #E9E9E9;
  padding: 20px 0;
  background-color: #f5f5f5;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .pressroom .pressroom-item {
    width: 100%;
    margin: 10px 0;
  }
}
.pressroom .pressroom-item h4 {
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
}
.pressroom .pressroom-item time {
  color: #fff;
  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: 1.5;
  font-size: 12px;
  margin-bottom: 0;
}
.pressroom .pressroom-item .pdf {
  color: #E0B46D;
  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;
  background-color: #E0B46D;
  color: #000;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
}
.pressroom .pressroom-item .view-gallery:hover {
  background-color: #000;
  color: #E0B46D;
}
.pressroom .category-selector {
  text-align: left;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .pressroom .category-selector {
    margin: 40px 0 0 0;
  }
}
.pressroom .category-selector-button {
  font-size: 13px;
  color: #000;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 9px;
  margin-right: 20px;
  margin-bottom: 10px;
  transition: border 100ms ease-in-out, color 100ms ease-in-out;
}
.pressroom .category-selector-button:last-child {
  margin-right: 0;
}
.pressroom .category-selector-button.active, .pressroom .category-selector-button:hover {
  color: #E0B46D;
  border-bottom: 2px solid #000;
}

.galleries {
  text-align: center;
  font-size: 0;
}
.galleries .gallery {
  padding-bottom: calc(50% - 10px);
  width: calc(50% - 10px);
  height: 0;
  margin: 5px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-size: 12px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .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/1.2 "Montserrat", 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;
  line-height: 1.5;
}
.galleries .gallery .description:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -1px;
}
.galleries .gallery .description .centered {
  padding: 15px;
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 4px);
}

.form {
  display: block;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .form {
    text-align: left;
  }
}
.form .ui-menu-item a {
  text-align: left;
}
.form h3 {
  text-align: left;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E9E9E9;
  margin-bottom: 10px;
}
.form label {
  width: 40%;
  line-height: 1.2;
  margin: 17px 20px 0 0;
  float: left;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .form label {
    display: block;
    float: none;
    margin: 0 0 20px;
    text-align: left;
    width: auto;
  }
}
.form label em {
  color: #b31919;
  font-size: 16px;
  font-weight: normal;
  line-height: 10px;
  padding-right: 5px;
}
.form p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .form p {
    margin-bottom: 25px;
  }
}
.form p:after {
  clear: both;
  content: "";
  display: table;
}
.form p span.checkbox-group,
.form p span.checkbox-radio,
.form p span.radio-group {
  margin-bottom: 10px;
  overflow: hidden;
  float: none;
}
.form p span.checkbox-group label,
.form p span.checkbox-radio label,
.form p span.radio-group label {
  float: left;
  padding-right: 10px;
  vertical-align: top;
  font-size: 12px;
  color: #000;
  font-family: "Lato", sans-serif;
}
@media only screen and (max-width: 767px) {
  .form p span.checkbox-group,
  .form p span.checkbox-radio,
  .form p span.radio-group {
    width: auto;
  }
  .form p span.checkbox-group label,
  .form p span.checkbox-radio label,
  .form p span.radio-group label {
    display: block;
    width: auto;
    float: none;
  }
}
.form p.type_checkbox label, .form p.type_radio label {
  margin-bottom: 20px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .form p.type_checkbox label, .form p.type_radio label {
    margin-bottom: 10px;
  }
}
.form p.type_file label {
  margin: 5px 20px 0 0;
}
.form p.terms-privacy {
  font-size: 12px;
  text-align: left !important;
  float: none;
}
.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;
  padding-top: 5px;
  line-height: 16px;
}
.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 {
  font-family: "Lato", sans-serif;
  background: #F8F8F8;
  color: #808285;
  font-size: 15px;
  line-height: 50px;
  width: 250px;
  height: 50px;
  padding: 0 20px;
  resize: none;
  letter-spacing: 0;
  border: 1px solid #414042;
}
@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: -50px;
}
@media only screen and (max-width: 767px) {
  .form .select-wrapper {
    width: 100%;
  }
}
.form textarea {
  height: 128px;
  overflow: auto;
  line-height: 1.2;
  padding: 10px 15px;
}
.form input[type=checkbox],
.form input[type=radio] {
  width: 14px;
  height: 14px;
  padding: 0;
  vertical-align: top;
}
.form input[type=radio] {
  margin-top: 12px;
}
@media only screen and (max-width: 767px) {
  .form input[type=radio] {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .form .group {
    margin-left: 0;
  }
}
.form .group input[type=radio] {
  margin-top: 0;
}
.form .datepicker-input-wrapper {
  float: left;
}
@media only screen and (max-width: 767px) {
  .form .datepicker-input-wrapper {
    float: none;
  }
}
.form input.date-pick, .form .input-overlay {
  width: 122px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .form input.date-pick, .form .input-overlay {
    float: none;
    display: block;
    width: 100%;
  }
}
.form .input-overlay {
  clear: both;
}
.form .ui-datepicker-trigger {
  float: left;
  position: static;
  margin: 17px 0 0 10px;
}
@media only screen and (max-width: 767px) {
  .form .ui-datepicker-trigger {
    display: none;
  }
}
.form .controls {
  text-align: center;
}
.form .controls p {
  padding: 15px 0 0 0;
  width: auto;
  background: none;
}
@media only screen and (max-width: 767px) {
  .form .controls p {
    padding: 0;
    text-align: center;
  }
}
.form .controls .button {
  background-color: #E0B46D;
  color: #000;
  padding: 0 40px;
}
.form .controls .button:hover {
  background-color: #000;
  color: #E0B46D;
}
@media only screen and (max-width: 767px) {
  .form .controls .button {
    display: inline-block;
    margin: 0;
  }
}
.form .custom-checkbox, .form .custom-radio {
  position: relative;
  display: inline-block;
  cursor: pointer;
  padding-left: 2.5em;
  line-height: 1.4em;
}
.form .custom-checkbox:before, .form .custom-radio:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background: #F8F8F8;
  transition: transform 350ms ease-in-out/2;
  border: 1px solid #414042;
}
.form .custom-checkbox:after, .form .custom-radio:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 2px;
  width: 18px;
  height: 8px;
  border-bottom: 2px solid #E30000;
  border-left: 2px solid #E30000;
  transform: rotate(-45deg) scale(2);
  opacity: 0;
  visibility: hidden;
  transition: transform 350ms ease-in-out/2 350ms ease-in-out/3, opacity 350ms ease-in-out/2, visibility 350ms ease-in-out/2;
  pointer-events: none;
}
.form .custom-checkbox.checked:after, .form .custom-radio.checked:after {
  transform: rotate(-45deg) scale(1);
  opacity: 1;
  visibility: visible;
  transition: transform 350ms ease-in-out/3, opacity 350ms ease-in-out/3, visibility 350ms ease-in-out/3;
}
.form .custom-checkbox input, .form .custom-radio input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.form .custom-checkbox.active, .form .custom-radio.active {
  color: #000;
}
.form .custom-radio:before {
  border-radius: 50%;
}
.form .custom-radio:after {
  border: none;
  width: 8px;
  height: 8px;
  top: 9px;
  left: 7px;
  border-radius: 50%;
  transform: scale(2);
  background: #E30000;
}
.form .g-recaptcha {
  margin-bottom: 20px;
  min-width: 320px;
}
@media only screen and (max-width: 449px) {
  .form .g-recaptcha {
    position: relative;
    left: -10px;
    min-width: 0;
  }
}
.form .g-recaptcha.centered > div {
  margin: 0 auto !important;
}
.form .g-recaptcha.non-valid > div {
  border: 1px solid red;
}
.form .g-recaptcha > div {
  margin-left: calc(40% + 20px);
}
@media only screen and (max-width: 767px) {
  .form .g-recaptcha > div {
    margin: 0 auto;
  }
}

#home-poi {
  position: relative;
  padding-top: 50px;
  z-index: 10;
}
#home-poi h2 {
  font: 200 36px/1.2 "Lato", sans-serif;
  margin-bottom: 30px;
  color: #54baba;
  text-transform: uppercase;
  text-align: center;
}

.poi {
  overflow: hidden;
}

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

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

.poi-map {
  height: 800px;
}

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

#calendar {
  padding-bottom: 30px;
}

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

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

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

#calendar-views {
  float: left;
}
#calendar-views:after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (max-width: 767px) {
  #calendar-views {
    float: none;
    text-align: center;
    margin-bottom: 30px;
  }
}
#calendar-views li {
  float: left;
}
@media only screen and (max-width: 767px) {
  #calendar-views li {
    display: inline-block;
    float: none;
  }
}
#calendar-views a {
  position: relative;
  display: block;
  margin-right: 20px;
  padding-left: 30px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  line-height: 1.5;
}
@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: #E0B46D;
}
#calendar-views a:before {
  background: url("../images/common.svg") 0 0 no-repeat;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
#calendar-views a.grid:before {
  background-position: -200px 0;
}
#calendar-views a.grid:hover:before, #calendar-views a.grid.active:before {
  background-position: -240px 0;
}
#calendar-views a.grid:active:before {
  background-position: -280px 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-views a.list:active:before {
  background-position: -280px -38px;
}

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

#calendar-year {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  #calendar-year {
    display: none;
  }
}
#calendar-year:after {
  clear: both;
  content: "";
  display: table;
}
#calendar-year li {
  float: left;
}
#calendar-year a {
  display: block;
  padding: 5px 0;
  margin-right: 1px;
  text-decoration: none;
  border-bottom: 1px solid #b7b7b7;
  color: #b7b7b7;
}
#calendar-year a:hover {
  border-color: #343841;
  color: #343841;
}
#calendar-year .active a {
  border-color: #000;
  color: #000;
}
#calendar-year .active a:hover {
  border-color: #E0B46D;
  color: #E0B46D;
}

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

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

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

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

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

#calendar.list-view h2 a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #calendar.list-view #calendar-month {
    display: none;
  }
}
#calendar.list-view .image-list {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
#calendar.list-view .image-list h2 a {
  text-decoration: 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 0;
  padding: 40px 0;
  height: auto;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 120%;
}

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

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

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

.calendar .image-list-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  width: 100%;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item {
    height: auto;
  }
}
.calendar .image-list-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #e2e2e2;
  z-index: -1;
}
.calendar .image-list-item .background {
  position: relative;
  width: 350px;
  height: 300px;
  margin-left: 40px;
  display: block;
  float: right;
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .calendar .image-list-item .background {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .background {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
.calendar .image-list-item .description {
  width: 100%;
  display: block;
  padding: 25px;
}
@media only screen and (max-width: 767px) {
  .calendar .image-list-item .description {
    padding: 20px 20px 10px 20px;
    text-align: center;
  }
}
.calendar .image-list-item .description h3 {
  font: 24px/30px "Lato", sans-serif;
  color: #000;
  margin-bottom: 15px;
}
.calendar .image-list-item .description h3 a {
  text-decoration: none;
}
.calendar .image-list-item .description h3 a:hover {
  color: #E0B46D;
}
.calendar .image-list-item .description .button {
  position: absolute;
  bottom: 30px;
  left: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .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;
  }
}

@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;
  }
}
.press_form_nt {
  display: none;
}

.press-nt .border_nt_gray {
  border-top: solid thin #E9E9E9;
  border-bottom: solid thin #E9E9E9;
  padding: 3px;
  margin: 15px;
}
.press-nt .press_form_nt {
  display: block;
  background: #e9e9e9;
  padding: 50px 0px;
  box-sizing: border-box;
  clear: both;
}
.press-nt .press_form_nt h2 {
  display: none;
}
.press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field {
  width: auto !important;
  display: inline-block;
}
.press-nt .press_form_nt .footer_form_bt_nt_btn {
  background: #000 !important;
  color: #fff !important;
  height: auto;
  font-size: 13px;
  line-height: 30px;
  padding: 10px 76px;
}
.press-nt .press_form_nt .footer_form_bt_nt {
  width: 380px !important;
  margin: 0 15px;
}
.press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field input:not([type=file]), .press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field select, .press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field textarea, .press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field button {
  font-family: "Lato", sans-serif;
  background: #F8F8F8;
  color: #808285;
  font-size: 15px;
  line-height: 50px;
  width: 250px;
  height: 50px;
  padding: 0 20px;
  resize: none;
  letter-spacing: 0;
  border: 1px solid #414042;
}
.press-nt .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field label {
  display: none;
}
.press-nt .press_form_nt .form {
  display: block;
  margin: 30px 0;
}
.press-nt .press_form_nt h3 {
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  font-weight: 300;
  margin: 10px 0 10px 0;
}
.press-nt .press_form_nt p {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  font-weight: 300;
  margin: 10px 0 10px 0;
}
.press-nt .press_form_nt .newsletter-row {
  display: flex;
  width: 100%;
  justify-content: center;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper {
  position: relative;
  width: 33%;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper label {
  width: auto;
  position: absolute;
  left: 8px;
  top: 8px;
  margin: 0;
  text-align: inherit;
  line-height: 22px;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper input[type=text], .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=date], .press-nt .press_form_nt .newsletter-row .input-wrapper textarea, .press-nt .press_form_nt .newsletter-row .input-wrapper select, .press-nt .press_form_nt .newsletter-row .input-wrapper .input-overlay {
  width: 96%;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button {
  background: #000;
  color: #fff;
  height: auto;
  font-size: 13px;
  line-height: 30px;
  padding: 10px 76px;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button:hover, .press-nt .press_form_nt .newsletter-row .input-wrapper .button.active, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button:hover, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.active {
  background: transparent;
  color: #E0B46D;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button:before, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button:before {
  content: "/";
  color: #E0B46D;
  padding-right: 10px;
  font-size: 13px;
  line-height: 30px;
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .press-nt .press_form_nt .newsletter-row .input-wrapper .button, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button {
    font-size: 10px;
  }
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button.text-button, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button.text-button:hover, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button:hover {
  color: #E0B46D;
}
.press-nt .press_form_nt .newsletter-row .input-wrapper .button.text-button:hover:before, .press-nt .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button:hover:before {
  color: #000;
}
.press-nt .press_form_nt .newsletter-row .width-20 {
  width: 20%;
}
.press-nt .main-content .page-content {
  width: 100%;
  padding-left: 70px;
  padding-top: 30px;
}
@media only screen and (max-width: 767px) {
  .press-nt .main-content .page-content {
    padding-left: 0px;
  }
}
.press-nt .main-content .page-content h1:first-child {
  display: none;
}
.press-nt .sidebar-thumbnail {
  display: none;
}
.press-nt .btn_details p:first-child, .press-nt .btn_details hr {
  display: none;
}
.press-nt .button, .press-nt input[type=submit].button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-nt .button:hover, .press-nt .button.active, .press-nt input[type=submit].button:hover, .press-nt input[type=submit].button.active {
  background: transparent;
  color: #E0B46D;
}
.press-nt .button:before, .press-nt input[type=submit].button:before {
  content: "/";
  color: #E0B46D;
  padding-right: 10px;
  font-size: 13px;
  line-height: 30px;
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .press-nt .button, .press-nt input[type=submit].button {
    font-size: 10px;
  }
}
.press-nt .button.text-button, .press-nt input[type=submit].button.text-button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-nt .button.text-button:hover, .press-nt input[type=submit].button.text-button:hover {
  color: #E0B46D;
}
.press-nt .button.text-button:hover:before, .press-nt input[type=submit].button.text-button:hover:before {
  color: #000;
}
.press-nt .news-slider-acm,
.press-nt .news-slider-acm-custom {
  padding: 16px 0 0px;
  position: relative;
  overflow: hidden;
}
.press-nt .news-slider-acm .slideshow-wrapper-custom,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two items per row */
  gap: 20px; /* Optional: space between items */
}
.press-nt .news-slider-acm .slideshow-wrapper-custom .slide,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom .slide {
  width: 95% !important;
  margin: 0px;
}
.press-nt .news-slider-acm .slideshow-wrapper-custom .slide,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom .slide {
  margin: 0; /* Reset margin */
  display: none; /* Initially hide all slides */
}
.press-nt .news-slider-acm .slideshow-wrapper-custom .slide.active,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom .slide.active {
  display: block; /* Show only active slides */
}
.press-nt .news-slider-acm .slideshow-wrapper-custom .custom-buttons,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom .custom-buttons {
  opacity: 1; /* Full opacity */
  transition: opacity 0.3s ease; /* Smooth transition for opacity */
}
.press-nt .news-slider-acm .slideshow-wrapper-custom .custom-buttons.disabled,
.press-nt .news-slider-acm-custom .slideshow-wrapper-custom .custom-buttons.disabled {
  opacity: 0.5; /* Reduced opacity when disabled */
  pointer-events: none; /* Prevent clicks */
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .press-nt .news-slider-acm,
  .press-nt .news-slider-acm-custom {
    padding: 30px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm,
  .press-nt .news-slider-acm-custom {
    padding: 0 0 50px;
  }
}
.press-nt .news-slider-acm h2,
.press-nt .news-slider-acm-custom h2 {
  font-size: 32px;
  margin: 20px 0 10px 27px;
  width: auto;
  display: inline-block;
}
.press-nt .news-slider-acm .news-acm-bg,
.press-nt .news-slider-acm-custom .news-acm-bg {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  width: 100%;
  right: 50%;
  margin-right: -225px;
  transition: all 350ms ease-in-out;
}
.press-nt .news-slider-acm .news-acm-bg:after,
.press-nt .news-slider-acm-custom .news-acm-bg:after {
  content: "";
  background: #f5f5f5;
  position: absolute;
  top: 40%;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm .news-acm-bg,
  .press-nt .news-slider-acm-custom .news-acm-bg {
    right: 0;
    margin-right: 0;
  }
}
.press-nt .news-slider-acm .center-column,
.press-nt .news-slider-acm-custom .center-column {
  padding: 0;
}
.press-nt .news-slider-acm .news-block-wrapper,
.press-nt .news-slider-acm-custom .news-block-wrapper {
  width: calc(100% - 500px);
  margin: 0;
  position: relative;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm .news-block-wrapper,
  .press-nt .news-slider-acm-custom .news-block-wrapper {
    width: 100%;
  }
}
.press-nt .news-slider-acm .news-block-wrapper .center-column,
.press-nt .news-slider-acm-custom .news-block-wrapper .center-column {
  max-width: 885px;
  text-align: center;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm .news-block-wrapper .center-column,
  .press-nt .news-slider-acm-custom .news-block-wrapper .center-column {
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .press-nt .news-slider-acm .news-block-wrapper .center-column,
  .press-nt .news-slider-acm-custom .news-block-wrapper .center-column {
    max-width: 100%;
  }
}
.press-nt .news-slider-acm .news-block-wrapper span.caption,
.press-nt .news-slider-acm-custom .news-block-wrapper span.caption {
  display: block;
  font: 700 16px/1.5 "Montserrat", sans-serif;
  color: #000;
  text-transform: uppercase;
  text-shadow: 0 0 7px #fff;
}
.press-nt .news-slider-acm .news-block-wrapper .h1-like,
.press-nt .news-slider-acm-custom .news-block-wrapper .h1-like {
  text-transform: none;
  text-shadow: 0 0 7px #fff;
}
.press-nt .news-slider-acm .news-slideshow-wrapper,
.press-nt .news-slider-acm-custom .news-slideshow-wrapper {
  position: relative;
  padding-bottom: 30px;
}
.press-nt .news-slider-acm .news-slideshow-wrapper:before,
.press-nt .news-slider-acm-custom .news-slideshow-wrapper:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 70px;
  width: 6px;
  height: 57px;
  background: #E0B46D;
  transform: skew(-20deg);
  z-index: 5;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm .news-slideshow-wrapper,
  .press-nt .news-slider-acm-custom .news-slideshow-wrapper {
    position: relative;
    max-width: 920px;
  }
}
@media only screen and (max-width: 1023px) {
  .press-nt .news-slider-acm .news-slideshow-wrapper,
  .press-nt .news-slider-acm-custom .news-slideshow-wrapper {
    max-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .news-slideshow-wrapper,
  .press-nt .news-slider-acm-custom .news-slideshow-wrapper {
    padding-bottom: 40px;
  }
  .press-nt .news-slider-acm .news-slideshow-wrapper:before,
  .press-nt .news-slider-acm-custom .news-slideshow-wrapper:before {
    content: none;
  }
}
.press-nt .news-slider-acm .slideshow,
.press-nt .news-slider-acm-custom .slideshow {
  margin: 25px auto 0;
  max-width: 920px;
  position: relative;
  overflow: hidden;
  padding: 0 0 10px 0;
}
@media only screen and (max-width: 1023px) {
  .press-nt .news-slider-acm .slideshow,
  .press-nt .news-slider-acm-custom .slideshow {
    max-width: 100%;
  }
}
.press-nt .news-slider-acm .slideshow-wrapper,
.press-nt .news-slider-acm-custom .slideshow-wrapper {
  font-size: 0;
  white-space: nowrap;
}
.press-nt .news-slider-acm .slide,
.press-nt .news-slider-acm-custom .slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: calc(33.3% - 30px);
  margin: 0 15px;
  background-color: #fff;
  box-shadow: none;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slide,
  .press-nt .news-slider-acm-custom .slide {
    width: calc(100% - 80px);
    height: auto;
    margin: 0;
  }
}
.press-nt .news-slider-acm .slide .thumbnail,
.press-nt .news-slider-acm-custom .slide .thumbnail {
  position: relative;
  height: 167px;
  float: inherit;
  margin: 0px;
}
.press-nt .news-slider-acm .slide .thumbnail img,
.press-nt .news-slider-acm-custom .slide .thumbnail img {
  z-index: 3;
}
.press-nt .news-slider-acm .slide .slide-content,
.press-nt .news-slider-acm-custom .slide .slide-content {
  padding: 15px 25px 10px 0px;
  background: transparent;
  box-sizing: border-box;
  transition: 350ms ease-in-out;
  min-height: 203px;
}
.press-nt .news-slider-acm .slide .slide-content span.item-category,
.press-nt .news-slider-acm-custom .slide .slide-content span.item-category {
  display: block;
  font: normal 12px/1.2 "Montserrat", sans-serif;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.press-nt .news-slider-acm .slide .slide-content h3,
.press-nt .news-slider-acm-custom .slide .slide-content h3 {
  font: 600 16px/1.4 "Montserrat", sans-serif;
  margin-bottom: 10px;
  text-transform: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.press-nt .news-slider-acm .slide .slide-content h3 a,
.press-nt .news-slider-acm-custom .slide .slide-content h3 a {
  text-decoration: none;
}
.press-nt .news-slider-acm .slide .slide-content h3 a:hover,
.press-nt .news-slider-acm-custom .slide .slide-content h3 a:hover {
  text-decoration: underline;
}
.press-nt .news-slider-acm .slide .slide-content p,
.press-nt .news-slider-acm-custom .slide .slide-content p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slide .slide-content p,
  .press-nt .news-slider-acm-custom .slide .slide-content p {
    font-size: 14px;
    line-height: 1.3;
  }
}
.press-nt .news-slider-acm .slide .slide-content .controls,
.press-nt .news-slider-acm-custom .slide .slide-content .controls {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  font-size: 0;
  position: absolute;
  bottom: 10px;
  left: 25px;
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slide .slide-content .controls,
  .press-nt .news-slider-acm-custom .slide .slide-content .controls {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slide .slide-content .controls .text-button,
  .press-nt .news-slider-acm-custom .slide .slide-content .controls .text-button {
    padding: 0 10px;
  }
}
.press-nt .news-slider-acm .slideshow-controls,
.press-nt .news-slider-acm-custom .slideshow-controls {
  position: absolute;
  top: 0;
  bottom: inherit;
  right: 10px;
  width: 150px;
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slideshow-controls,
  .press-nt .news-slider-acm-custom .slideshow-controls {
    display: none;
  }
}
.press-nt .news-slider-acm .slideshow-button,
.press-nt .news-slider-acm-custom .slideshow-button {
  top: auto;
  bottom: 0;
}
.press-nt .news-slider-acm .slideshow-button.previous,
.press-nt .news-slider-acm-custom .slideshow-button.previous {
  left: auto;
  right: 30px;
  bottom: 0;
}
.press-nt .news-slider-acm .slideshow-button.next,
.press-nt .news-slider-acm-custom .slideshow-button.next {
  right: 0;
  bottom: 0;
}
.press-nt .news-slider-acm .slideshow-pagination,
.press-nt .news-slider-acm-custom .slideshow-pagination {
  display: none;
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm .slideshow-pagination,
  .press-nt .news-slider-acm-custom .slideshow-pagination {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .press-nt .news-slider-acm.home-view,
  .press-nt .news-slider-acm-custom.home-view {
    padding: 100px 0 100px;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm.home-view,
  .press-nt .news-slider-acm-custom.home-view {
    padding: 50px 0 50px;
  }
}
.press-nt .news-slider-acm.home-view .center-column,
.press-nt .news-slider-acm-custom.home-view .center-column {
  padding: 0 0px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .press-nt .news-slider-acm.home-view .center-column,
  .press-nt .news-slider-acm-custom.home-view .center-column {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm.home-view .center-column,
  .press-nt .news-slider-acm-custom.home-view .center-column {
    padding: 0 15px;
  }
}
.press-nt .news-slider-acm.home-view .news-acm-bg,
.press-nt .news-slider-acm-custom.home-view .news-acm-bg {
  background-color: #fff;
}
.press-nt .news-slider-acm.home-view .news-acm-bg:after,
.press-nt .news-slider-acm-custom.home-view .news-acm-bg:after {
  content: none;
}
.press-nt .news-slider-acm.home-view .news-block-wrapper,
.press-nt .news-slider-acm-custom.home-view .news-block-wrapper {
  width: auto;
}
.press-nt .news-slider-acm.home-view .news-block-wrapper .center-column,
.press-nt .news-slider-acm-custom.home-view .news-block-wrapper .center-column {
  max-width: 1350px;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm.home-view .news-block-wrapper .center-column,
  .press-nt .news-slider-acm-custom.home-view .news-block-wrapper .center-column {
    margin: 0;
  }
}
@media only screen and (max-width: 1023px) {
  .press-nt .news-slider-acm.home-view .news-block-wrapper .center-column,
  .press-nt .news-slider-acm-custom.home-view .news-block-wrapper .center-column {
    max-width: 100%;
  }
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm.home-view .news-slideshow-wrapper,
  .press-nt .news-slider-acm-custom.home-view .news-slideshow-wrapper {
    position: relative;
    max-width: 100%;
  }
}
.press-nt .news-slider-acm.home-view .slideshow,
.press-nt .news-slider-acm-custom.home-view .slideshow {
  max-width: 1350px;
}
.press-nt .news-slider-acm.home-view .slide,
.press-nt .news-slider-acm-custom.home-view .slide {
  width: calc(25% - 50px);
  margin: 0 25px;
}
@media only screen and (max-width: 1349px) {
  .press-nt .news-slider-acm.home-view .slide,
  .press-nt .news-slider-acm-custom.home-view .slide {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .press-nt .news-slider-acm.home-view .slide,
  .press-nt .news-slider-acm-custom.home-view .slide {
    width: calc(33.3% - 20px);
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .press-nt .news-slider-acm.home-view .slide,
  .press-nt .news-slider-acm-custom.home-view .slide {
    width: calc(100% - 80px);
    height: auto;
    margin: 0;
  }
}
.press-nt .news-slider-acm.home-view .category-8 .slideshow-controls,
.press-nt .news-slider-acm-custom.home-view .category-8 .slideshow-controls {
  position: absolute;
  top: 0;
  bottom: inherit;
  right: 10px !important;
  width: 150px;
}
.press-nt .news-slider-acm.home-view .category-8 .swiper-slide,
.press-nt .news-slider-acm-custom.home-view .category-8 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: calc((100% - 30px) / 2) !important;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.press-nt .category-8 {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .press-nt .category-8 {
    width: 100%;
    flex-wrap: wrap;
  }
}
.press-nt .category-8 .left_sec_nt {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .press-nt .category-8 .left_sec_nt {
    width: 100%;
  }
}
.press-nt .category-8 .left_sec_nt .big-div {
  width: calc(100% - 50px);
  height: 660px;
}
@media only screen and (max-width: 767px) {
  .press-nt .category-8 .left_sec_nt .big-div {
    width: calc(100% - 0px);
    height: 400px;
  }
}
.press-nt .category-8 .left_sec_nt .slide .thumbnail {
  height: 518px;
}
@media only screen and (max-width: 767px) {
  .press-nt .category-8 .left_sec_nt .slide .thumbnail {
    height: 240px;
  }
}
.press-nt .category-8 .right_sec_nt {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  .press-nt .category-8 .right_sec_nt {
    width: 100%;
  }
}
.press-nt .btn_new_nt_see {
  font-size: 12px;
  text-decoration: none;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
  display: inline-block;
  position: relative;
  top: 8px;
  right: -20px;
}
.press-nt #newsletter .inputsubmit_FP7w1gzoVofxs5OVXRKN {
  text-align: center;
  width: 100% !important;
}

.press-category-nt .cat-form {
  display: block;
}
.press-category-nt .cat-form .press_form_nt {
  display: block;
  background: #e9e9e9;
  padding: 50px 0px;
  box-sizing: border-box;
  clear: both;
  margin: 70px 0px;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .cat-form .press_form_nt {
    width: 90%;
  }
}
.press-category-nt .cat-form .press_form_nt h2 {
  display: none;
}
.press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field {
  width: auto !important;
  display: inline-block;
}
.press-category-nt .cat-form .press_form_nt .footer_form_bt_nt_btn {
  background: #000 !important;
  color: #fff !important;
  height: auto;
  font-size: 13px;
  line-height: 30px;
  padding: 10px 76px;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .cat-form .press_form_nt .footer_form_bt_nt_btn {
    margin-left: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field {
    overflow: visible;
    width: 90% !important;
  }
}
.press-category-nt .cat-form .press_form_nt .footer_form_bt_nt {
  width: 350px !important;
  margin: 0 15px;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .cat-form .press_form_nt .footer_form_bt_nt {
    width: 100% !important;
  }
}
.press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field input:not([type=file]), .press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field select, .press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field textarea, .press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field button {
  font-family: "Lato", sans-serif;
  background: #F8F8F8;
  color: #808285;
  font-size: 15px;
  line-height: 50px;
  width: 250px;
  height: 50px;
  padding: 0 20px;
  resize: none;
  letter-spacing: 0;
  border: 1px solid #414042;
}
.press-category-nt .cat-form .press_form_nt [id*=form_form_] .form-builder-group .form-builder-field label {
  display: none;
}
.press-category-nt .cat-form .press_form_nt .form {
  display: block;
  margin: 30px 0;
}
.press-category-nt .cat-form .press_form_nt h3 {
  font-size: 32px;
  line-height: 36px;
  text-align: center;
  font-weight: 300;
  margin: 10px 0 10px 0;
}
.press-category-nt .cat-form .press_form_nt p {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  font-weight: 300;
  margin: 10px 0 10px 0;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row {
  display: flex;
  width: 100%;
  justify-content: center;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper {
  position: relative;
  width: 33%;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper label {
  width: auto;
  position: absolute;
  left: 8px;
  top: 8px;
  margin: 0;
  text-align: inherit;
  line-height: 22px;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=text], .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=date], .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper textarea, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper select, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .input-overlay {
  width: 96%;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button {
  background: #000;
  color: #fff;
  height: auto;
  font-size: 13px;
  line-height: 30px;
  padding: 10px 76px;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button:hover, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button.active, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button:hover, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.active {
  background: transparent;
  color: #E0B46D;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button:before, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button:before {
  content: "/";
  color: #E0B46D;
  padding-right: 10px;
  font-size: 13px;
  line-height: 30px;
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button {
    font-size: 10px;
  }
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button.text-button, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button.text-button:hover, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button:hover {
  color: #E0B46D;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper .button.text-button:hover:before, .press-category-nt .cat-form .press_form_nt .newsletter-row .input-wrapper input[type=submit].button.text-button:hover:before {
  color: #000;
}
.press-category-nt .cat-form .press_form_nt .newsletter-row .width-20 {
  width: 20%;
}
.press-category-nt .main-content .page-content {
  width: 100%;
  padding-left: 70px;
  padding-top: 30px;
}
.press-category-nt .main-content .page-content h3 {
  margin: 6px 0;
}
.press-category-nt .sidebar-thumbnail {
  display: none;
}
.press-category-nt .btn_details p:first-child, .press-category-nt .btn_details hr {
  display: none;
}
.press-category-nt .button, .press-category-nt input[type=submit].button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-category-nt .button:hover, .press-category-nt .button.active, .press-category-nt input[type=submit].button:hover, .press-category-nt input[type=submit].button.active {
  background: transparent;
  color: #E0B46D;
}
.press-category-nt .button:before, .press-category-nt input[type=submit].button:before {
  content: "/";
  color: #E0B46D;
  padding-right: 10px;
  font-size: 13px;
  line-height: 30px;
  transition: all 350ms ease-in-out;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .button, .press-category-nt input[type=submit].button {
    font-size: 10px;
  }
}
.press-category-nt .button.text-button, .press-category-nt input[type=submit].button.text-button {
  background: transparent;
  color: #000;
  height: 30px;
  font-size: 13px;
  line-height: 30px;
  padding: 0;
}
.press-category-nt .button.text-button:hover, .press-category-nt input[type=submit].button.text-button:hover {
  color: #E0B46D;
}
.press-category-nt .button.text-button:hover:before, .press-category-nt input[type=submit].button.text-button:hover:before {
  color: #000;
}
.press-category-nt h1 {
  font-size: 32px;
  margin: 20px 0 10px 27px;
  width: auto;
  display: inline-block;
}
.press-category-nt .pressroom {
  text-align: left;
}
.press-category-nt .pressroom .pressroom-item {
  width: calc(25% - 50px);
  margin: 0 22px;
  padding: 0;
  background-color: #fff;
  border: none;
  height: 300px;
}
@media only screen and (max-width: 1349px) {
  .press-category-nt .pressroom .pressroom-item {
    width: calc(25% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .press-category-nt .pressroom .pressroom-item {
    width: calc(33.3% - 20px);
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .press-category-nt .pressroom .pressroom-item {
    width: calc(100% - 80px);
    height: auto;
    margin: 0;
  }
}
.press-category-nt .pressroom .pressroom-item .thumbnail {
  position: relative;
  height: 167px;
  float: inherit;
  margin: 0px;
}
.press-category-nt .pressroom .pressroom-item .thumbnail img {
  z-index: 3;
}
.press-category-nt .pressroom .pressroom-item h4 {
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #fff;
}
.press-category-nt .pressroom .pressroom-item time {
  color: #fff;
  display: block;
  margin: 5px 0;
}
.press-category-nt .pressroom .pressroom-item .description {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  padding: 10px 0px 20px 0px;
  text-align: left;
}
.press-category-nt .pressroom .pressroom-item .description .centered time {
  margin: 10px 0;
  display: block;
  font-weight: bold;
}
.press-category-nt .pressroom .pressroom-item .description p {
  color: #fff;
  line-height: 1.5;
  font-size: 12px;
  margin-bottom: 0;
}
.press-category-nt .pressroom .pressroom-item .pdf {
  color: #E0B46D;
  margin: 10px 0 0 0;
  display: block;
  position: relative;
  line-height: 16px;
  padding-left: 0 !important;
}
.press-category-nt .pressroom .pressroom-item .pdf:hover {
  color: #fff;
}
.press-category-nt .pressroom .pressroom-item .view-gallery {
  margin-top: 20px;
  background-color: #E0B46D;
  color: #000;
  font-size: 12px;
  height: 40px;
  line-height: 40px;
}
.press-category-nt .pressroom .pressroom-item .view-gallery:hover {
  background-color: #000;
  color: #E0B46D;
}
.press-category-nt .pressroom .category-selector {
  text-align: left;
  margin-top: 60px;
}
@media only screen and (max-width: 767px) {
  .press-category-nt .pressroom .category-selector {
    margin: 40px 0 0 0;
  }
}
.press-category-nt .pressroom .category-selector-button {
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  padding-bottom: 9px;
  margin-right: 20px;
  margin-bottom: 10px;
  transition: border 100ms ease-in-out;
}
.press-category-nt .pressroom .category-selector-button:last-child {
  margin-right: 0;
}
.press-category-nt .pressroom .category-selector-button.active, .press-category-nt .pressroom .category-selector-button:hover {
  border-bottom: 2px solid #000;
}
.press-category-nt #newsletter .inputsubmit_FP7w1gzoVofxs5OVXRKN {
  text-align: center;
  width: 100% !important;
}
