﻿@charset "utf-8";

:root {
  --ourStoryTimelineBG: url("/application/themes/sabi_sabi/images/leopard-in-tree-about.jpg");
}

/* Note: If need Disable Decimal-value functionilty open function.scss file */
/* mini laptop resolution 1349 X 662 and 1246 X 681 and 1218 X 672 */
/* Mozila Firefox */
/*
    Dots plugin
*/
/*
    Navigation plugin
*/
.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *, .carousel *:before, .carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: flex;
}

.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  box-shadow: var(--carousel-button-shadow, none);
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev, .carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

/*
  Thumbs plugin
*/
/* 3/2 */
/*
  HTML plugin
*/
/*
  Toolbar plugin
*/
html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  /* For Safari */
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: flex;
  height: 100%;
}

.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}

.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

/* Close button located inside content area */
.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

/* Opening */
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: 0.15s ease backwards fancybox-fadeIn;
}

/* Closing */
.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  animation: 0.15s ease both fancybox-zoomOutDown;
}

/* Both `throwOut` classes are for closing animation after dragging up/down */
.fancybox-throwOutUp {
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  animation: 0.15s ease both fancybox-throwOutDown;
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}

.fancybox__image {
  transform-origin: 0 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
  /* Fix Mac OS Safari 11 - 13 */
}
.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  /* Keep aspect ratio */
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top, hsla(0, 0%, 0%, 0) 0%, hsla(0, 0%, 0%, 0.006) 8.1%, hsla(0, 0%, 0%, 0.021) 15.5%, hsla(0, 0%, 0%, 0.046) 22.5%, hsla(0, 0%, 0%, 0.077) 29%, hsla(0, 0%, 0%, 0.114) 35.3%, hsla(0, 0%, 0%, 0.155) 41.2%, hsla(0, 0%, 0%, 0.198) 47.1%, hsla(0, 0%, 0%, 0.242) 52.9%, hsla(0, 0%, 0%, 0.285) 58.8%, hsla(0, 0%, 0%, 0.326) 64.7%, hsla(0, 0%, 0%, 0.363) 71%, hsla(0, 0%, 0%, 0.394) 77.5%, hsla(0, 0%, 0%, 0.419) 84.5%, hsla(0, 0%, 0%, 0.434) 91.9%, hsla(0, 0%, 0%, 0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

/**
 * Swiper 7.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 9, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

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

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

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

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

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

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

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

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

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

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

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
.ms-parent {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  width: 100% !important;
}

.ms-choice {
  width: 100%;
  height: 2.63rem;
  padding: 0 20px 0 8px;
  color: #24402A;
  font-size: 1rem;
  font-weight: 400;
  border: 1px solid #B8BEB9;
  border-radius: 3px;
  background-color: #ffffff;
  text-align: left;
  text-transform: capitalize;
}
.ms-choice:hover, .ms-choice:focus {
  color: #000000;
  background-color: #ffffff;
}
.ms-choice > span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
}
.ms-choice > span.placeholder {
  color: #999;
  text-transform: initial;
}

.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

.ms-choice > div {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.ms-choice > div:after {
  content: "";
  border-style: solid;
  position: relative;
  border-width: 0.69rem 0.5rem 0 0.5rem;
  border-color: #70940C transparent transparent;
  width: 0;
  height: 0;
}

.ms-drop {
  width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.ms-drop.bottom {
  top: 100%;
}

.ms-drop.top {
  bottom: 100%;
}

.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 0;
}

.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
  padding: 10px 15px;
}

.ms-drop ul > li .disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
}

.ms-drop ul > li.multiple {
  display: block;
  float: left;
}

.ms-drop ul > li.group {
  clear: both;
}

.ms-drop ul > li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ms-drop ul > li label {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  position: relative;
  margin-bottom: 0;
}

.ms-drop ul > li label.optgroup {
  font-weight: bold;
}

.ms-drop input[type=checkbox] {
  position: absolute;
}

.ms-drop .ms-no-results {
  display: none;
}

.ms-drop label span {
  position: relative;
  display: block;
  padding-left: 25px;
  text-transform: capitalize;
}

.ms-drop label span:before,
.ms-drop label span:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 16px;
  width: 16px;
}

.ms-drop label span:before {
  background-color: #ffffff;
  border: 2px solid #9e9c9a;
  border-radius: 2px;
  box-shadow: inset 2px 2px 0 0 rgba(0, 0, 0, 0.14);
}

.ms-drop label span:after {
  border: 3px solid #8F3533;
  border-left: 0;
  border-top: 0;
  width: 8px;
  height: 13px;
  transform: rotate(45deg);
  opacity: 0;
}

.ms-drop label input:checked + span:after {
  opacity: 1;
}

@font-face {
  font-family: "Anantha Signature";
  src: url("/application/themes/sabi_sabi/fonts/generated/AnanthaSignatureRegular.woff2") format("woff2"), url("/application/themes/sabi_sabi/fonts/generated/AnanthaSignatureRegular.woff") format("woff"), url("/application/themes/sabi_sabi/fonts/generated/AnanthaSignatureRegular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "sabisabi";
  src: url("/application/themes/sabi_sabi/fonts/icon-fonts/sabisabi.eot");
  src: url("/application/themes/sabi_sabi/fonts/icon-fonts/sabisabi.eot?#iefix") format("embedded-opentype"), url("/application/themes/sabi_sabi/fonts/icon-fonts/sabisabi.woff") format("woff"), url("/application/themes/sabi_sabi/fonts/icon-fonts/sabisabi.ttf") format("truetype"), url("/application/themes/sabi_sabi/fonts/icon-fonts/sabisabi.svg#sabisabi") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "sabisabi" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "sabisabi" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-instagram:before {
  content: "c";
}

.icon-primary-arrow:before {
  content: "e";
}

.icon-stars:before {
  content: "f";
}

.icon-play:before {
  content: "d";
}

.icon-area:before {
  content: "g";
}

.icon-bathtub:before {
  content: "h";
}

.icon-bed:before {
  content: "i";
}

.icon-info:before {
  content: "j";
}

.icon-leaf:before {
  content: "k";
}

.icon-ac:before {
  content: "l";
}

.icon-security:before {
  content: "m";
}

.icon-tea:before {
  content: "n";
}

.icon-hearth:before {
  content: "o";
}

.icon-rest-bed:before {
  content: "p";
}

.icon-bar-snacks:before {
  content: "q";
}

.icon-down:before {
  content: "r";
}

.icon-download:before {
  content: "s";
}

.icon-arrow-down:before {
  content: "t";
}

.icon-email:before {
  content: "b";
}

.icon-youtube:before {
  content: "u";
}

.icon-facebook:before {
  content: "v";
}

.icon-close-icon:before {
  content: "w";
}

.icon-compass:before {
  content: "a";
}

.icon-twitter:before {
  content: "x";
}

.icon-linkedin:before {
  content: "y";
}

.icon-close-bg:before {
  content: "z";
}

.icon-search:before {
  content: "A";
}

@font-face {
  font-family: "sabisabiNew";
  src: url("/application/themes/sabi_sabi/fonts/icon-fonts/new-icons/sabisabi.eot");
  src: url("/application/themes/sabi_sabi/fonts/icon-fonts/new-icons/sabisabi.eot?#iefix") format("embedded-opentype"), url("/application/themes/sabi_sabi/fonts/icon-fonts/new-icons/sabisabi.woff") format("woff"), url("/application/themes/sabi_sabi/fonts/icon-fonts/new-icons/sabisabi.ttf") format("truetype"), url("/application/themes/sabi_sabi/fonts/icon-fonts/new-icons/sabisabi.svg#sabisabi") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=newicon-]:before,
[class*=" newicon-"]:before {
  font-family: "sabisabiNew" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.newicon-x-logo:before {
  content: "A";
}

/* Reset css
   ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
a,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-size: inherit;
  background: transparent;
  border: 0;
  outline: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

article,
aside,
footer,
header,
nav,
section,
figcaption,
figure,
main {
  display: block;
}

/* Text-level semantics
   ========================================================================== */
sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
audio,
video {
  display: inline-block;
}

/**
 * Basic typography style for copy text
 */
html {
  font-size: 100%;
}
@media screen and (min-width: 2100px) {
  html {
    font-size: 125%;
  }
}

body {
  min-height: 100%;
  height: auto;
  color: #423718;
  font-size: 1rem;
  font-family: "Lato", "Arial", sans-serif;
  line-height: 1.5;
  background-color: #ffffff;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(143, 53, 51, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
body::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    height: 100%;
  }
}

.h1, h1 {
  font-size: 1.625rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h1, h1 {
    font-size: 2.1666666667rem;
  }
}
@media (min-width: 992px) {
  .h1, h1 {
    font-size: 3.25rem;
  }
}
.h1 a, h1 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.h2, h2 {
  font-size: 1.5rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h2, h2 {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  .h2, h2 {
    font-size: 3rem;
  }
}
.h2 a, h2 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.h3, h3 {
  font-size: 1.315rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h3, h3 {
    font-size: 1.7533333333rem;
  }
}
@media (min-width: 992px) {
  .h3, h3 {
    font-size: 2.63rem;
  }
}
.h3 a, h3 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.h4, h4 {
  font-size: 1rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h4, h4 {
    font-size: 1.3333333333rem;
  }
}
@media (min-width: 992px) {
  .h4, h4 {
    font-size: 2rem;
  }
}
.h4 a, h4 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.h5, h5 {
  font-size: 0.875rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h5, h5 {
    font-size: 1.1666666667rem;
  }
}
@media (min-width: 992px) {
  .h5, h5 {
    font-size: 1.75rem;
  }
}
.h5 a, h5 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.h6, h6 {
  font-size: 0.565rem;
  margin-bottom: 1.13rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.3;
  color: currentColor;
}
@media (min-width: 768px) {
  .h6, h6 {
    font-size: 0.7533333333rem;
  }
}
@media (min-width: 992px) {
  .h6, h6 {
    font-size: 1.13rem;
  }
}
.h6 a, h6 a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.semi-title {
  font-weight: 700;
  color: #BE8E36;
  letter-spacing: 0.3em;
  display: block;
  margin-bottom: 0.63rem;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.semi-title-21 {
  font-size: 1.32rem;
}

.display-1 {
  line-height: 1.5;
  font-size: 2.7173913043rem;
}
@media (min-width: 768px) {
  .display-1 {
    font-size: 3.6764705882rem;
  }
}
@media (min-width: 992px) {
  .display-1 {
    font-size: 4.8076923077rem;
  }
}
@media (min-width: 1440px) {
  .display-1 {
    font-size: 6.25rem;
  }
}

.display-2 {
  line-height: 1.5;
  font-size: 1.9565217391rem;
}
@media (min-width: 768px) {
  .display-2 {
    font-size: 2.6470588235rem;
  }
}
@media (min-width: 992px) {
  .display-2 {
    font-size: 3.4615384615rem;
  }
}
@media (min-width: 1440px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  line-height: 1.5;
  font-size: 1.7695652174rem;
}
@media (min-width: 768px) {
  .display-3 {
    font-size: 2.3941176471rem;
  }
}
@media (min-width: 992px) {
  .display-3 {
    font-size: 3.1307692308rem;
  }
}
@media (min-width: 1440px) {
  .display-3 {
    font-size: 4.07rem;
  }
}

.display-4 {
  line-height: 1.5;
  font-size: 1.3043478261rem;
}
@media (min-width: 768px) {
  .display-4 {
    font-size: 1.7647058824rem;
  }
}
@media (min-width: 992px) {
  .display-4 {
    font-size: 2.3076923077rem;
  }
}
@media (min-width: 1440px) {
  .display-4 {
    font-size: 3rem;
  }
}

.display-5 {
  line-height: 1.5;
  font-size: 0.8695652174rem;
}
@media (min-width: 768px) {
  .display-5 {
    font-size: 1.1764705882rem;
  }
}
@media (min-width: 992px) {
  .display-5 {
    font-size: 1.5384615385rem;
  }
}
@media (min-width: 1440px) {
  .display-5 {
    font-size: 2rem;
  }
}

p {
  margin-bottom: 15px;
  font-size: 1.13rem;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 0.63rem;
  margin-bottom: 0.94rem;
}
ul ul {
  margin-bottom: 0;
}
ul li {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}
ul li:last-child {
  padding-bottom: 0;
}
ul.list-unstyled {
  padding-left: 0;
  list-style: none;
}

ol {
  padding-left: 1.25rem;
  margin-bottom: 0.94rem;
}
ol ol {
  margin-bottom: 0;
}
ol li {
  padding-top: 0.38rem;
  padding-bottom: 0.38rem;
}
ol li:last-child {
  padding-bottom: 0;
}

blockquote {
  position: relative;
  display: block;
  margin-bottom: 1.25rem;
  text-align: left;
  font-size: 1.5rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  color: #24402A;
}
@media (min-width: 768px) {
  blockquote {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  blockquote {
    font-size: 2.63rem;
  }
}
blockquote p {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}

hr {
  height: 0;
  margin: 0.63rem auto 2.5rem;
  border: 0 #000000 solid;
  border-top-width: 0.07rem;
  overflow: visible;
}

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
  vertical-align: top;
  border: none;
}
img[src$=".svg"] {
  width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

picture {
  display: inline-block;
  vertical-align: top;
}

/* Link
------------------------------------------------------------------------------*/
a {
  color: #8F3533;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}
a:hover, a:focus {
  color: #000000;
  text-decoration: underline;
  outline: none;
}

/* Tables
------------------------------------------------------------------------------*/
table {
  border-spacing: 0;
  border-collapse: collapse;
}
table td {
  text-align: left;
  font-weight: normal;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-bordered {
  width: 100%;
  max-width: 100%;
  text-align: left;
}
.table-bordered td,
.table-bordered th {
  vertical-align: bottom;
  border-bottom: 0.07rem solid #dee3e2;
  padding: 0.63rem;
}

.icon {
  display: inline-block;
  vertical-align: middle;
}

/**
 * Main content containers
 */
.container-1440 {
  width: 100%;
  max-width: 90rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-1280 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-768 {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.container-full {
  width: 100%;
  max-width: 100%;
}

/* row and column */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -2rem;
  margin-left: -2rem;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > [class*=cell-] {
  padding-right: 0;
  padding-left: 0;
}

[class*=cell-] {
  position: relative;
  width: 100%;
}
.row [class*=cell-] {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* align item */
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.d-flex-inline {
  display: inline-flex;
}
.d-flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.d-flex-h-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.d-flex img {
  align-self: center;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.align-items-start {
  align-items: flex-start;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.align-content-center {
  align-content: center;
}
.alignnone {
  float: none;
  margin: 1.25rem 0;
}
.aligncenter {
  display: block;
  clear: both;
  margin: 1.25rem auto;
}
.alignleft {
  float: left;
  margin: 0 1.25rem 1.25rem 0;
}
.alignright {
  float: right;
  margin: 0 0 1.25rem 1.25rem;
}

.justify-content-start {
  justify-content: flex-start;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-evenly {
  justify-content: space-evenly;
}

/* text alignment */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}

.font-lato {
  font-family: "Lato", "Arial", sans-serif;
}
.font-playfair {
  font-family: "Playfair Display", "Arial", sans-serif;
}
.font-anantha {
  font-family: "Anantha Signature", "Arial", sans-serif;
}
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}

.h-full {
  height: 100%;
}
.h-max-screen {
  max-height: calc(100vh - 210px);
}
.h-max-full {
  max-height: 100%;
}
.h-max-height-100 {
  max-height: 100vh;
}

.w-full {
  width: 100%;
}

.bg-white {
  background-color: #ffffff;
}

.text-white {
  color: #ffffff;
}

.bg-air {
  background-color: #F7F0E3;
}

.text-air {
  color: #F7F0E3;
}

.bg-gold {
  background-color: #BE8E36;
}

.text-gold {
  color: #BE8E36;
}

.bg-forest {
  background-color: #24402A;
}

.text-forest {
  color: #24402A;
}

.bg-forest-100 {
  background-color: #212B1A;
}

.text-forest-100 {
  color: #212B1A;
}

.bg-forest-200 {
  background-color: #919F69;
}

.text-forest-200 {
  color: #919F69;
}

.bg-glass {
  background-color: #BAB97F;
}

.text-glass {
  color: #BAB97F;
}

.bg-sky {
  background-color: #58778D;
}

.text-sky {
  color: #58778D;
}

.bg-sky-light {
  background-color: #FDFEFE;
}

.text-sky-light {
  color: #FDFEFE;
}

.bg-gray {
  background-color: #dee3e2;
}

.text-gray {
  color: #dee3e2;
}

.bg-rock {
  background-color: #423718;
}

.text-rock {
  color: #423718;
}

.bg-bush {
  background-color: #0A5D7E;
}

.text-bush {
  color: #0A5D7E;
}

.bg-sand {
  background-color: #C2805D;
}

.text-sand {
  color: #C2805D;
}

.bg-secondary {
  background-color: #70940C;
}

.text-secondary {
  color: #70940C;
}

.bg-secondary-100 {
  background-color: #D4DFB6;
}

.text-secondary-100 {
  color: #D4DFB6;
}

.bg-primary {
  background-color: #8F3533;
}

.text-primary {
  color: #8F3533;
}

.bg-primary-100 {
  background-color: #CEA496;
}

.text-primary-100 {
  color: #CEA496;
}

.bg-bush-100 {
  background-color: #E7EFF2;
}

.text-bush-100 {
  color: #E7EFF2;
}

.bg-light-gray {
  background-color: #F1F1E5;
}

.text-light-gray {
  color: #F1F1E5;
}

.bg-forest-dark-100 {
  background-color: #344E39;
}

.text-forest-dark-100 {
  color: #344E39;
}

.pos-relative {
  position: relative;
}
.pos-absolute {
  position: absolute;
}

/* column structure */
.cell-1 {
  width: 6.25%;
}

.cell-2 {
  width: 12.5%;
}

.cell-3 {
  width: 18.75%;
}

.cell-4 {
  width: 25%;
}

.cell-5 {
  width: 31.25%;
}

.cell-6 {
  width: 37.5%;
}

.cell-7 {
  width: 43.75%;
}

.cell-8 {
  width: 50%;
}

.cell-9 {
  width: 56.25%;
}

.cell-10 {
  width: 62.5%;
}

.cell-11 {
  width: 68.75%;
}

.cell-12 {
  width: 75%;
}

.cell-13 {
  width: 81.25%;
}

.cell-14 {
  width: 87.5%;
}

.cell-15 {
  width: 93.75%;
}

.cell-16 {
  width: 100%;
}

.mt-0,
.m-0,
.my-0 {
  margin-top: 0rem;
}

.pt-0,
.p-0,
.py-0 {
  padding-top: 0rem;
}

.mb-0,
.m-0,
.my-0 {
  margin-bottom: 0rem;
}

.pb-0,
.p-0,
.py-0 {
  padding-bottom: 0rem;
}

.ml-0,
.m-0,
.mx-0 {
  margin-left: 0rem;
}

.pl-0,
.p-0,
.px-0 {
  padding-left: 0rem;
}

.mr-0,
.m-0,
.mx-0 {
  margin-right: 0rem;
}

.pr-0,
.p-0,
.px-0 {
  padding-right: 0rem;
}

.mt-16,
.m-16,
.my-16 {
  margin-top: 1rem;
}

.pt-16,
.p-16,
.py-16 {
  padding-top: 1rem;
}

.mb-16,
.m-16,
.my-16 {
  margin-bottom: 1rem;
}

.pb-16,
.p-16,
.py-16 {
  padding-bottom: 1rem;
}

.ml-16,
.m-16,
.mx-16 {
  margin-left: 1rem;
}

.pl-16,
.p-16,
.px-16 {
  padding-left: 1rem;
}

.mr-16,
.m-16,
.mx-16 {
  margin-right: 1rem;
}

.pr-16,
.p-16,
.px-16 {
  padding-right: 1rem;
}

.mt-32,
.m-32,
.my-32 {
  margin-top: 2rem;
}

.pt-32,
.p-32,
.py-32 {
  padding-top: 2rem;
}

.mb-32,
.m-32,
.my-32 {
  margin-bottom: 2rem;
}

.pb-32,
.p-32,
.py-32 {
  padding-bottom: 2rem;
}

.ml-32,
.m-32,
.mx-32 {
  margin-left: 2rem;
}

.pl-32,
.p-32,
.px-32 {
  padding-left: 2rem;
}

.mr-32,
.m-32,
.mx-32 {
  margin-right: 2rem;
}

.pr-32,
.p-32,
.px-32 {
  padding-right: 2rem;
}

.mt-64,
.m-64,
.my-64 {
  margin-top: 4rem;
}

.pt-64,
.p-64,
.py-64 {
  padding-top: 4rem;
}

.mb-64,
.m-64,
.my-64 {
  margin-bottom: 4rem;
}

.pb-64,
.p-64,
.py-64 {
  padding-bottom: 4rem;
}

.ml-64,
.m-64,
.mx-64 {
  margin-left: 4rem;
}

.pl-64,
.p-64,
.px-64 {
  padding-left: 4rem;
}

.mr-64,
.m-64,
.mx-64 {
  margin-right: 4rem;
}

.pr-64,
.p-64,
.px-64 {
  padding-right: 4rem;
}

.mt-128,
.m-128,
.my-128 {
  margin-top: 8rem;
}

.pt-128,
.p-128,
.py-128 {
  padding-top: 8rem;
}

.mb-128,
.m-128,
.my-128 {
  margin-bottom: 8rem;
}

.pb-128,
.p-128,
.py-128 {
  padding-bottom: 8rem;
}

.ml-128,
.m-128,
.mx-128 {
  margin-left: 8rem;
}

.pl-128,
.p-128,
.px-128 {
  padding-left: 8rem;
}

.mr-128,
.m-128,
.mx-128 {
  margin-right: 8rem;
}

.pr-128,
.p-128,
.px-128 {
  padding-right: 8rem;
}

.mt-250,
.m-250,
.my-250 {
  margin-top: 15.625rem;
}

.pt-250,
.p-250,
.py-250 {
  padding-top: 15.625rem;
}

.mb-250,
.m-250,
.my-250 {
  margin-bottom: 15.625rem;
}

.pb-250,
.p-250,
.py-250 {
  padding-bottom: 15.625rem;
}

.ml-250,
.m-250,
.mx-250 {
  margin-left: 15.625rem;
}

.pl-250,
.p-250,
.px-250 {
  padding-left: 15.625rem;
}

.mr-250,
.m-250,
.mx-250 {
  margin-right: 15.625rem;
}

.pr-250,
.p-250,
.px-250 {
  padding-right: 15.625rem;
}

@media (min-width: 480px) {
  .cell-sm-1 {
    width: 6.25%;
  }
  .cell-sm-2 {
    width: 12.5%;
  }
  .cell-sm-3 {
    width: 18.75%;
  }
  .cell-sm-4 {
    width: 25%;
  }
  .cell-sm-5 {
    width: 31.25%;
  }
  .cell-sm-6 {
    width: 37.5%;
  }
  .cell-sm-7 {
    width: 43.75%;
  }
  .cell-sm-8 {
    width: 50%;
  }
  .cell-sm-9 {
    width: 56.25%;
  }
  .cell-sm-10 {
    width: 62.5%;
  }
  .cell-sm-11 {
    width: 68.75%;
  }
  .cell-sm-12 {
    width: 75%;
  }
  .cell-sm-13 {
    width: 81.25%;
  }
  .cell-sm-14 {
    width: 87.5%;
  }
  .cell-sm-15 {
    width: 93.75%;
  }
  .cell-sm-16 {
    width: 100%;
  }
  .mt-sm-0,
  .m-sm-0,
  .my-sm-0 {
    margin-top: 0rem;
  }
  .pt-sm-0,
  .p-sm-0,
  .py-sm-0 {
    padding-top: 0rem;
  }
  .mb-sm-0,
  .m-sm-0,
  .my-sm-0 {
    margin-bottom: 0rem;
  }
  .pb-sm-0,
  .p-sm-0,
  .py-sm-0 {
    padding-bottom: 0rem;
  }
  .ml-sm-0,
  .m-sm-0,
  .mx-sm-0 {
    margin-left: 0rem;
  }
  .pl-sm-0,
  .p-sm-0,
  .px-sm-0 {
    padding-left: 0rem;
  }
  .mr-sm-0,
  .m-sm-0,
  .mx-sm-0 {
    margin-right: 0rem;
  }
  .pr-sm-0,
  .p-sm-0,
  .px-sm-0 {
    padding-right: 0rem;
  }
  .mt-sm-16,
  .m-sm-16,
  .my-sm-16 {
    margin-top: 1rem;
  }
  .pt-sm-16,
  .p-sm-16,
  .py-sm-16 {
    padding-top: 1rem;
  }
  .mb-sm-16,
  .m-sm-16,
  .my-sm-16 {
    margin-bottom: 1rem;
  }
  .pb-sm-16,
  .p-sm-16,
  .py-sm-16 {
    padding-bottom: 1rem;
  }
  .ml-sm-16,
  .m-sm-16,
  .mx-sm-16 {
    margin-left: 1rem;
  }
  .pl-sm-16,
  .p-sm-16,
  .px-sm-16 {
    padding-left: 1rem;
  }
  .mr-sm-16,
  .m-sm-16,
  .mx-sm-16 {
    margin-right: 1rem;
  }
  .pr-sm-16,
  .p-sm-16,
  .px-sm-16 {
    padding-right: 1rem;
  }
  .mt-sm-32,
  .m-sm-32,
  .my-sm-32 {
    margin-top: 2rem;
  }
  .pt-sm-32,
  .p-sm-32,
  .py-sm-32 {
    padding-top: 2rem;
  }
  .mb-sm-32,
  .m-sm-32,
  .my-sm-32 {
    margin-bottom: 2rem;
  }
  .pb-sm-32,
  .p-sm-32,
  .py-sm-32 {
    padding-bottom: 2rem;
  }
  .ml-sm-32,
  .m-sm-32,
  .mx-sm-32 {
    margin-left: 2rem;
  }
  .pl-sm-32,
  .p-sm-32,
  .px-sm-32 {
    padding-left: 2rem;
  }
  .mr-sm-32,
  .m-sm-32,
  .mx-sm-32 {
    margin-right: 2rem;
  }
  .pr-sm-32,
  .p-sm-32,
  .px-sm-32 {
    padding-right: 2rem;
  }
  .mt-sm-64,
  .m-sm-64,
  .my-sm-64 {
    margin-top: 4rem;
  }
  .pt-sm-64,
  .p-sm-64,
  .py-sm-64 {
    padding-top: 4rem;
  }
  .mb-sm-64,
  .m-sm-64,
  .my-sm-64 {
    margin-bottom: 4rem;
  }
  .pb-sm-64,
  .p-sm-64,
  .py-sm-64 {
    padding-bottom: 4rem;
  }
  .ml-sm-64,
  .m-sm-64,
  .mx-sm-64 {
    margin-left: 4rem;
  }
  .pl-sm-64,
  .p-sm-64,
  .px-sm-64 {
    padding-left: 4rem;
  }
  .mr-sm-64,
  .m-sm-64,
  .mx-sm-64 {
    margin-right: 4rem;
  }
  .pr-sm-64,
  .p-sm-64,
  .px-sm-64 {
    padding-right: 4rem;
  }
  .mt-sm-128,
  .m-sm-128,
  .my-sm-128 {
    margin-top: 8rem;
  }
  .pt-sm-128,
  .p-sm-128,
  .py-sm-128 {
    padding-top: 8rem;
  }
  .mb-sm-128,
  .m-sm-128,
  .my-sm-128 {
    margin-bottom: 8rem;
  }
  .pb-sm-128,
  .p-sm-128,
  .py-sm-128 {
    padding-bottom: 8rem;
  }
  .ml-sm-128,
  .m-sm-128,
  .mx-sm-128 {
    margin-left: 8rem;
  }
  .pl-sm-128,
  .p-sm-128,
  .px-sm-128 {
    padding-left: 8rem;
  }
  .mr-sm-128,
  .m-sm-128,
  .mx-sm-128 {
    margin-right: 8rem;
  }
  .pr-sm-128,
  .p-sm-128,
  .px-sm-128 {
    padding-right: 8rem;
  }
  .mt-sm-250,
  .m-sm-250,
  .my-sm-250 {
    margin-top: 15.625rem;
  }
  .pt-sm-250,
  .p-sm-250,
  .py-sm-250 {
    padding-top: 15.625rem;
  }
  .mb-sm-250,
  .m-sm-250,
  .my-sm-250 {
    margin-bottom: 15.625rem;
  }
  .pb-sm-250,
  .p-sm-250,
  .py-sm-250 {
    padding-bottom: 15.625rem;
  }
  .ml-sm-250,
  .m-sm-250,
  .mx-sm-250 {
    margin-left: 15.625rem;
  }
  .pl-sm-250,
  .p-sm-250,
  .px-sm-250 {
    padding-left: 15.625rem;
  }
  .mr-sm-250,
  .m-sm-250,
  .mx-sm-250 {
    margin-right: 15.625rem;
  }
  .pr-sm-250,
  .p-sm-250,
  .px-sm-250 {
    padding-right: 15.625rem;
  }
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .align-sm-items-start {
    align-items: flex-start;
  }
  .align-sm-items-center {
    align-items: center;
  }
  .align-sm-items-end {
    align-items: flex-end;
  }
  .align-sm-content-center {
    align-content: center;
  }
  .justify-sm-content-start {
    justify-content: flex-start;
  }
  .justify-sm-content-center {
    justify-content: center;
  }
  .justify-sm-content-end {
    justify-content: flex-end;
  }
  .justify-sm-content-between {
    justify-content: space-between;
  }
  .justify-sm-content-around {
    justify-content: space-around;
  }
  .justify-sm-content-evenly {
    justify-content: space-evenly;
  }
  .text-sm-center {
    text-align: center;
  }
  .text-sm-right {
    text-align: right;
  }
  .text-sm-left {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .cell-md-1 {
    width: 6.25%;
  }
  .cell-md-2 {
    width: 12.5%;
  }
  .cell-md-3 {
    width: 18.75%;
  }
  .cell-md-4 {
    width: 25%;
  }
  .cell-md-5 {
    width: 31.25%;
  }
  .cell-md-6 {
    width: 37.5%;
  }
  .cell-md-7 {
    width: 43.75%;
  }
  .cell-md-8 {
    width: 50%;
  }
  .cell-md-9 {
    width: 56.25%;
  }
  .cell-md-10 {
    width: 62.5%;
  }
  .cell-md-11 {
    width: 68.75%;
  }
  .cell-md-12 {
    width: 75%;
  }
  .cell-md-13 {
    width: 81.25%;
  }
  .cell-md-14 {
    width: 87.5%;
  }
  .cell-md-15 {
    width: 93.75%;
  }
  .cell-md-16 {
    width: 100%;
  }
  .mt-md-0,
  .m-md-0,
  .my-md-0 {
    margin-top: 0rem;
  }
  .pt-md-0,
  .p-md-0,
  .py-md-0 {
    padding-top: 0rem;
  }
  .mb-md-0,
  .m-md-0,
  .my-md-0 {
    margin-bottom: 0rem;
  }
  .pb-md-0,
  .p-md-0,
  .py-md-0 {
    padding-bottom: 0rem;
  }
  .ml-md-0,
  .m-md-0,
  .mx-md-0 {
    margin-left: 0rem;
  }
  .pl-md-0,
  .p-md-0,
  .px-md-0 {
    padding-left: 0rem;
  }
  .mr-md-0,
  .m-md-0,
  .mx-md-0 {
    margin-right: 0rem;
  }
  .pr-md-0,
  .p-md-0,
  .px-md-0 {
    padding-right: 0rem;
  }
  .mt-md-16,
  .m-md-16,
  .my-md-16 {
    margin-top: 1rem;
  }
  .pt-md-16,
  .p-md-16,
  .py-md-16 {
    padding-top: 1rem;
  }
  .mb-md-16,
  .m-md-16,
  .my-md-16 {
    margin-bottom: 1rem;
  }
  .pb-md-16,
  .p-md-16,
  .py-md-16 {
    padding-bottom: 1rem;
  }
  .ml-md-16,
  .m-md-16,
  .mx-md-16 {
    margin-left: 1rem;
  }
  .pl-md-16,
  .p-md-16,
  .px-md-16 {
    padding-left: 1rem;
  }
  .mr-md-16,
  .m-md-16,
  .mx-md-16 {
    margin-right: 1rem;
  }
  .pr-md-16,
  .p-md-16,
  .px-md-16 {
    padding-right: 1rem;
  }
  .mt-md-32,
  .m-md-32,
  .my-md-32 {
    margin-top: 2rem;
  }
  .pt-md-32,
  .p-md-32,
  .py-md-32 {
    padding-top: 2rem;
  }
  .mb-md-32,
  .m-md-32,
  .my-md-32 {
    margin-bottom: 2rem;
  }
  .pb-md-32,
  .p-md-32,
  .py-md-32 {
    padding-bottom: 2rem;
  }
  .ml-md-32,
  .m-md-32,
  .mx-md-32 {
    margin-left: 2rem;
  }
  .pl-md-32,
  .p-md-32,
  .px-md-32 {
    padding-left: 2rem;
  }
  .mr-md-32,
  .m-md-32,
  .mx-md-32 {
    margin-right: 2rem;
  }
  .pr-md-32,
  .p-md-32,
  .px-md-32 {
    padding-right: 2rem;
  }
  .mt-md-64,
  .m-md-64,
  .my-md-64 {
    margin-top: 4rem;
  }
  .pt-md-64,
  .p-md-64,
  .py-md-64 {
    padding-top: 4rem;
  }
  .mb-md-64,
  .m-md-64,
  .my-md-64 {
    margin-bottom: 4rem;
  }
  .pb-md-64,
  .p-md-64,
  .py-md-64 {
    padding-bottom: 4rem;
  }
  .ml-md-64,
  .m-md-64,
  .mx-md-64 {
    margin-left: 4rem;
  }
  .pl-md-64,
  .p-md-64,
  .px-md-64 {
    padding-left: 4rem;
  }
  .mr-md-64,
  .m-md-64,
  .mx-md-64 {
    margin-right: 4rem;
  }
  .pr-md-64,
  .p-md-64,
  .px-md-64 {
    padding-right: 4rem;
  }
  .mt-md-128,
  .m-md-128,
  .my-md-128 {
    margin-top: 8rem;
  }
  .pt-md-128,
  .p-md-128,
  .py-md-128 {
    padding-top: 8rem;
  }
  .mb-md-128,
  .m-md-128,
  .my-md-128 {
    margin-bottom: 8rem;
  }
  .pb-md-128,
  .p-md-128,
  .py-md-128 {
    padding-bottom: 8rem;
  }
  .ml-md-128,
  .m-md-128,
  .mx-md-128 {
    margin-left: 8rem;
  }
  .pl-md-128,
  .p-md-128,
  .px-md-128 {
    padding-left: 8rem;
  }
  .mr-md-128,
  .m-md-128,
  .mx-md-128 {
    margin-right: 8rem;
  }
  .pr-md-128,
  .p-md-128,
  .px-md-128 {
    padding-right: 8rem;
  }
  .mt-md-250,
  .m-md-250,
  .my-md-250 {
    margin-top: 15.625rem;
  }
  .pt-md-250,
  .p-md-250,
  .py-md-250 {
    padding-top: 15.625rem;
  }
  .mb-md-250,
  .m-md-250,
  .my-md-250 {
    margin-bottom: 15.625rem;
  }
  .pb-md-250,
  .p-md-250,
  .py-md-250 {
    padding-bottom: 15.625rem;
  }
  .ml-md-250,
  .m-md-250,
  .mx-md-250 {
    margin-left: 15.625rem;
  }
  .pl-md-250,
  .p-md-250,
  .px-md-250 {
    padding-left: 15.625rem;
  }
  .mr-md-250,
  .m-md-250,
  .mx-md-250 {
    margin-right: 15.625rem;
  }
  .pr-md-250,
  .p-md-250,
  .px-md-250 {
    padding-right: 15.625rem;
  }
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .align-md-items-start {
    align-items: flex-start;
  }
  .align-md-items-center {
    align-items: center;
  }
  .align-md-items-end {
    align-items: flex-end;
  }
  .align-md-content-center {
    align-content: center;
  }
  .justify-md-content-start {
    justify-content: flex-start;
  }
  .justify-md-content-center {
    justify-content: center;
  }
  .justify-md-content-end {
    justify-content: flex-end;
  }
  .justify-md-content-between {
    justify-content: space-between;
  }
  .justify-md-content-around {
    justify-content: space-around;
  }
  .justify-md-content-evenly {
    justify-content: space-evenly;
  }
  .text-md-center {
    text-align: center;
  }
  .text-md-right {
    text-align: right;
  }
  .text-md-left {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .cell-lg-1 {
    width: 6.25%;
  }
  .cell-lg-2 {
    width: 12.5%;
  }
  .cell-lg-3 {
    width: 18.75%;
  }
  .cell-lg-4 {
    width: 25%;
  }
  .cell-lg-5 {
    width: 31.25%;
  }
  .cell-lg-6 {
    width: 37.5%;
  }
  .cell-lg-7 {
    width: 43.75%;
  }
  .cell-lg-8 {
    width: 50%;
  }
  .cell-lg-9 {
    width: 56.25%;
  }
  .cell-lg-10 {
    width: 62.5%;
  }
  .cell-lg-11 {
    width: 68.75%;
  }
  .cell-lg-12 {
    width: 75%;
  }
  .cell-lg-13 {
    width: 81.25%;
  }
  .cell-lg-14 {
    width: 87.5%;
  }
  .cell-lg-15 {
    width: 93.75%;
  }
  .cell-lg-16 {
    width: 100%;
  }
  .mt-lg-0,
  .m-lg-0,
  .my-lg-0 {
    margin-top: 0rem;
  }
  .pt-lg-0,
  .p-lg-0,
  .py-lg-0 {
    padding-top: 0rem;
  }
  .mb-lg-0,
  .m-lg-0,
  .my-lg-0 {
    margin-bottom: 0rem;
  }
  .pb-lg-0,
  .p-lg-0,
  .py-lg-0 {
    padding-bottom: 0rem;
  }
  .ml-lg-0,
  .m-lg-0,
  .mx-lg-0 {
    margin-left: 0rem;
  }
  .pl-lg-0,
  .p-lg-0,
  .px-lg-0 {
    padding-left: 0rem;
  }
  .mr-lg-0,
  .m-lg-0,
  .mx-lg-0 {
    margin-right: 0rem;
  }
  .pr-lg-0,
  .p-lg-0,
  .px-lg-0 {
    padding-right: 0rem;
  }
  .mt-lg-16,
  .m-lg-16,
  .my-lg-16 {
    margin-top: 1rem;
  }
  .pt-lg-16,
  .p-lg-16,
  .py-lg-16 {
    padding-top: 1rem;
  }
  .mb-lg-16,
  .m-lg-16,
  .my-lg-16 {
    margin-bottom: 1rem;
  }
  .pb-lg-16,
  .p-lg-16,
  .py-lg-16 {
    padding-bottom: 1rem;
  }
  .ml-lg-16,
  .m-lg-16,
  .mx-lg-16 {
    margin-left: 1rem;
  }
  .pl-lg-16,
  .p-lg-16,
  .px-lg-16 {
    padding-left: 1rem;
  }
  .mr-lg-16,
  .m-lg-16,
  .mx-lg-16 {
    margin-right: 1rem;
  }
  .pr-lg-16,
  .p-lg-16,
  .px-lg-16 {
    padding-right: 1rem;
  }
  .mt-lg-32,
  .m-lg-32,
  .my-lg-32 {
    margin-top: 2rem;
  }
  .pt-lg-32,
  .p-lg-32,
  .py-lg-32 {
    padding-top: 2rem;
  }
  .mb-lg-32,
  .m-lg-32,
  .my-lg-32 {
    margin-bottom: 2rem;
  }
  .pb-lg-32,
  .p-lg-32,
  .py-lg-32 {
    padding-bottom: 2rem;
  }
  .ml-lg-32,
  .m-lg-32,
  .mx-lg-32 {
    margin-left: 2rem;
  }
  .pl-lg-32,
  .p-lg-32,
  .px-lg-32 {
    padding-left: 2rem;
  }
  .mr-lg-32,
  .m-lg-32,
  .mx-lg-32 {
    margin-right: 2rem;
  }
  .pr-lg-32,
  .p-lg-32,
  .px-lg-32 {
    padding-right: 2rem;
  }
  .mt-lg-64,
  .m-lg-64,
  .my-lg-64 {
    margin-top: 4rem;
  }
  .pt-lg-64,
  .p-lg-64,
  .py-lg-64 {
    padding-top: 4rem;
  }
  .mb-lg-64,
  .m-lg-64,
  .my-lg-64 {
    margin-bottom: 4rem;
  }
  .pb-lg-64,
  .p-lg-64,
  .py-lg-64 {
    padding-bottom: 4rem;
  }
  .ml-lg-64,
  .m-lg-64,
  .mx-lg-64 {
    margin-left: 4rem;
  }
  .pl-lg-64,
  .p-lg-64,
  .px-lg-64 {
    padding-left: 4rem;
  }
  .mr-lg-64,
  .m-lg-64,
  .mx-lg-64 {
    margin-right: 4rem;
  }
  .pr-lg-64,
  .p-lg-64,
  .px-lg-64 {
    padding-right: 4rem;
  }
  .mt-lg-128,
  .m-lg-128,
  .my-lg-128 {
    margin-top: 8rem;
  }
  .pt-lg-128,
  .p-lg-128,
  .py-lg-128 {
    padding-top: 8rem;
  }
  .mb-lg-128,
  .m-lg-128,
  .my-lg-128 {
    margin-bottom: 8rem;
  }
  .pb-lg-128,
  .p-lg-128,
  .py-lg-128 {
    padding-bottom: 8rem;
  }
  .ml-lg-128,
  .m-lg-128,
  .mx-lg-128 {
    margin-left: 8rem;
  }
  .pl-lg-128,
  .p-lg-128,
  .px-lg-128 {
    padding-left: 8rem;
  }
  .mr-lg-128,
  .m-lg-128,
  .mx-lg-128 {
    margin-right: 8rem;
  }
  .pr-lg-128,
  .p-lg-128,
  .px-lg-128 {
    padding-right: 8rem;
  }
  .mt-lg-250,
  .m-lg-250,
  .my-lg-250 {
    margin-top: 15.625rem;
  }
  .pt-lg-250,
  .p-lg-250,
  .py-lg-250 {
    padding-top: 15.625rem;
  }
  .mb-lg-250,
  .m-lg-250,
  .my-lg-250 {
    margin-bottom: 15.625rem;
  }
  .pb-lg-250,
  .p-lg-250,
  .py-lg-250 {
    padding-bottom: 15.625rem;
  }
  .ml-lg-250,
  .m-lg-250,
  .mx-lg-250 {
    margin-left: 15.625rem;
  }
  .pl-lg-250,
  .p-lg-250,
  .px-lg-250 {
    padding-left: 15.625rem;
  }
  .mr-lg-250,
  .m-lg-250,
  .mx-lg-250 {
    margin-right: 15.625rem;
  }
  .pr-lg-250,
  .p-lg-250,
  .px-lg-250 {
    padding-right: 15.625rem;
  }
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .align-lg-items-start {
    align-items: flex-start;
  }
  .align-lg-items-center {
    align-items: center;
  }
  .align-lg-items-end {
    align-items: flex-end;
  }
  .align-lg-content-center {
    align-content: center;
  }
  .justify-lg-content-start {
    justify-content: flex-start;
  }
  .justify-lg-content-center {
    justify-content: center;
  }
  .justify-lg-content-end {
    justify-content: flex-end;
  }
  .justify-lg-content-between {
    justify-content: space-between;
  }
  .justify-lg-content-around {
    justify-content: space-around;
  }
  .justify-lg-content-evenly {
    justify-content: space-evenly;
  }
  .text-lg-center {
    text-align: center;
  }
  .text-lg-right {
    text-align: right;
  }
  .text-lg-left {
    text-align: left;
  }
}
@media (min-width: 1440px) {
  .cell-xl-1 {
    width: 6.25%;
  }
  .cell-xl-2 {
    width: 12.5%;
  }
  .cell-xl-3 {
    width: 18.75%;
  }
  .cell-xl-4 {
    width: 25%;
  }
  .cell-xl-5 {
    width: 31.25%;
  }
  .cell-xl-6 {
    width: 37.5%;
  }
  .cell-xl-7 {
    width: 43.75%;
  }
  .cell-xl-8 {
    width: 50%;
  }
  .cell-xl-9 {
    width: 56.25%;
  }
  .cell-xl-10 {
    width: 62.5%;
  }
  .cell-xl-11 {
    width: 68.75%;
  }
  .cell-xl-12 {
    width: 75%;
  }
  .cell-xl-13 {
    width: 81.25%;
  }
  .cell-xl-14 {
    width: 87.5%;
  }
  .cell-xl-15 {
    width: 93.75%;
  }
  .cell-xl-16 {
    width: 100%;
  }
  .mt-xl-0,
  .m-xl-0,
  .my-xl-0 {
    margin-top: 0rem;
  }
  .pt-xl-0,
  .p-xl-0,
  .py-xl-0 {
    padding-top: 0rem;
  }
  .mb-xl-0,
  .m-xl-0,
  .my-xl-0 {
    margin-bottom: 0rem;
  }
  .pb-xl-0,
  .p-xl-0,
  .py-xl-0 {
    padding-bottom: 0rem;
  }
  .ml-xl-0,
  .m-xl-0,
  .mx-xl-0 {
    margin-left: 0rem;
  }
  .pl-xl-0,
  .p-xl-0,
  .px-xl-0 {
    padding-left: 0rem;
  }
  .mr-xl-0,
  .m-xl-0,
  .mx-xl-0 {
    margin-right: 0rem;
  }
  .pr-xl-0,
  .p-xl-0,
  .px-xl-0 {
    padding-right: 0rem;
  }
  .mt-xl-16,
  .m-xl-16,
  .my-xl-16 {
    margin-top: 1rem;
  }
  .pt-xl-16,
  .p-xl-16,
  .py-xl-16 {
    padding-top: 1rem;
  }
  .mb-xl-16,
  .m-xl-16,
  .my-xl-16 {
    margin-bottom: 1rem;
  }
  .pb-xl-16,
  .p-xl-16,
  .py-xl-16 {
    padding-bottom: 1rem;
  }
  .ml-xl-16,
  .m-xl-16,
  .mx-xl-16 {
    margin-left: 1rem;
  }
  .pl-xl-16,
  .p-xl-16,
  .px-xl-16 {
    padding-left: 1rem;
  }
  .mr-xl-16,
  .m-xl-16,
  .mx-xl-16 {
    margin-right: 1rem;
  }
  .pr-xl-16,
  .p-xl-16,
  .px-xl-16 {
    padding-right: 1rem;
  }
  .mt-xl-32,
  .m-xl-32,
  .my-xl-32 {
    margin-top: 2rem;
  }
  .pt-xl-32,
  .p-xl-32,
  .py-xl-32 {
    padding-top: 2rem;
  }
  .mb-xl-32,
  .m-xl-32,
  .my-xl-32 {
    margin-bottom: 2rem;
  }
  .pb-xl-32,
  .p-xl-32,
  .py-xl-32 {
    padding-bottom: 2rem;
  }
  .ml-xl-32,
  .m-xl-32,
  .mx-xl-32 {
    margin-left: 2rem;
  }
  .pl-xl-32,
  .p-xl-32,
  .px-xl-32 {
    padding-left: 2rem;
  }
  .mr-xl-32,
  .m-xl-32,
  .mx-xl-32 {
    margin-right: 2rem;
  }
  .pr-xl-32,
  .p-xl-32,
  .px-xl-32 {
    padding-right: 2rem;
  }
  .mt-xl-64,
  .m-xl-64,
  .my-xl-64 {
    margin-top: 4rem;
  }
  .pt-xl-64,
  .p-xl-64,
  .py-xl-64 {
    padding-top: 4rem;
  }
  .mb-xl-64,
  .m-xl-64,
  .my-xl-64 {
    margin-bottom: 4rem;
  }
  .pb-xl-64,
  .p-xl-64,
  .py-xl-64 {
    padding-bottom: 4rem;
  }
  .ml-xl-64,
  .m-xl-64,
  .mx-xl-64 {
    margin-left: 4rem;
  }
  .pl-xl-64,
  .p-xl-64,
  .px-xl-64 {
    padding-left: 4rem;
  }
  .mr-xl-64,
  .m-xl-64,
  .mx-xl-64 {
    margin-right: 4rem;
  }
  .pr-xl-64,
  .p-xl-64,
  .px-xl-64 {
    padding-right: 4rem;
  }
  .mt-xl-128,
  .m-xl-128,
  .my-xl-128 {
    margin-top: 8rem;
  }
  .pt-xl-128,
  .p-xl-128,
  .py-xl-128 {
    padding-top: 8rem;
  }
  .mb-xl-128,
  .m-xl-128,
  .my-xl-128 {
    margin-bottom: 8rem;
  }
  .pb-xl-128,
  .p-xl-128,
  .py-xl-128 {
    padding-bottom: 8rem;
  }
  .ml-xl-128,
  .m-xl-128,
  .mx-xl-128 {
    margin-left: 8rem;
  }
  .pl-xl-128,
  .p-xl-128,
  .px-xl-128 {
    padding-left: 8rem;
  }
  .mr-xl-128,
  .m-xl-128,
  .mx-xl-128 {
    margin-right: 8rem;
  }
  .pr-xl-128,
  .p-xl-128,
  .px-xl-128 {
    padding-right: 8rem;
  }
  .mt-xl-250,
  .m-xl-250,
  .my-xl-250 {
    margin-top: 15.625rem;
  }
  .pt-xl-250,
  .p-xl-250,
  .py-xl-250 {
    padding-top: 15.625rem;
  }
  .mb-xl-250,
  .m-xl-250,
  .my-xl-250 {
    margin-bottom: 15.625rem;
  }
  .pb-xl-250,
  .p-xl-250,
  .py-xl-250 {
    padding-bottom: 15.625rem;
  }
  .ml-xl-250,
  .m-xl-250,
  .mx-xl-250 {
    margin-left: 15.625rem;
  }
  .pl-xl-250,
  .p-xl-250,
  .px-xl-250 {
    padding-left: 15.625rem;
  }
  .mr-xl-250,
  .m-xl-250,
  .mx-xl-250 {
    margin-right: 15.625rem;
  }
  .pr-xl-250,
  .p-xl-250,
  .px-xl-250 {
    padding-right: 15.625rem;
  }
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .align-xl-items-start {
    align-items: flex-start;
  }
  .align-xl-items-center {
    align-items: center;
  }
  .align-xl-items-end {
    align-items: flex-end;
  }
  .align-xl-content-center {
    align-content: center;
  }
  .justify-xl-content-start {
    justify-content: flex-start;
  }
  .justify-xl-content-center {
    justify-content: center;
  }
  .justify-xl-content-end {
    justify-content: flex-end;
  }
  .justify-xl-content-between {
    justify-content: space-between;
  }
  .justify-xl-content-around {
    justify-content: space-around;
  }
  .justify-xl-content-evenly {
    justify-content: space-evenly;
  }
  .text-xl-center {
    text-align: center;
  }
  .text-xl-right {
    text-align: right;
  }
  .text-xl-left {
    text-align: left;
  }
}
.z-9 {
  z-index: 9;
}

.section-feature {
  padding-top: 4rem;
  padding-bottom: 8rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-feature {
    padding-top: 2rem;
  }
}
@media (max-width: 991px) {
  .section-feature {
    padding-bottom: 4rem;
  }
}
@media (max-width: 479px) {
  .section-feature {
    padding-bottom: 2rem;
  }
}

.section-feature-a {
  padding-top: 4rem;
  padding-bottom: 15.625rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-feature-a {
    padding-top: 2rem;
  }
}

.section-intro {
  padding-top: 8rem;
  padding-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-intro {
    padding-top: 4rem;
  }
}
@media (max-width: 479px) {
  .section-intro {
    padding-top: 2rem;
  }
}
@media (max-width: 991px) {
  .section-intro {
    padding-bottom: 2rem;
  }
}

.section-s0 {
  position: relative;
}

.section-s0a {
  padding-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s0a {
    padding-bottom: 2rem;
  }
}

.section-s0b {
  padding-bottom: 8rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s0b {
    padding-bottom: 4rem;
  }
}
@media (max-width: 479px) {
  .section-s0b {
    padding-bottom: 2rem;
  }
}

.section-s1 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-s1a {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s1a {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-s1b {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s1b {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .section-s1b {
    margin-bottom: 2rem;
  }
}

.section-s1c {
  padding-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s1c {
    padding-bottom: 2rem;
  }
}

.section-s2 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s2 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.section-s2a {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s2a {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.section-s2b {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s2b {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .section-s2b {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-s2c {
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s2c {
    margin-bottom: 2rem;
  }
}

.section-s3 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  margin-left: 2rem;
  margin-right: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.section-s3a {
  margin-top: 4rem;
  margin-bottom: 4rem;
  margin-left: 2rem;
  margin-right: 2rem;
  padding-bottom: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s3a {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.section-s3b {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s3b {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}

.section-s3c {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s3c {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .section-s3c {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.section-s4 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
}
@media (max-width: 991px) {
  .section-s4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 479px) {
  .section-s4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.pt-single {
  padding-top: 4rem;
}
@media (max-width: 991px) {
  .pt-single {
    padding-top: 2rem;
  }
}

.pt-half {
  padding-top: 2rem;
}

.pb-single {
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .pb-single {
    padding-bottom: 2rem;
  }
}

.p-bt-single {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .p-bt-single {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.bg-glass {
  background-color: rgba(186, 185, 127, 0.3);
}

.bg-forest-suites {
  background-color: rgba(186, 185, 127, 0.2);
}

.z-99 {
  z-index: 99;
}

.mt-0i {
  margin-top: 0 !important;
}

.fancybox__container button.carousel__button {
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  text-decoration: inherit;
  font-weight: inherit;
  min-width: inherit;
  text-transform: inherit;
}

.alert {
  padding: 30px 10px;
  margin-bottom: 10px;
}
.alert.alert-success {
  background-color: #A9C851;
  color: white;
  font-size: 1.25rem;
}

button,
input[type=button],
input[type=reset],
input[type=submit], .btn {
  display: inline-block;
  padding: 0.94rem 1.57rem;
  vertical-align: top;
  color: #F7F0E3;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border: none;
  border-radius: 3px;
  background-color: #8F3533;
  min-width: 11.88rem;
  transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
  text-transform: capitalize;
}
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover, .btn:hover, button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus, .btn:focus, a:hover button,
a:hover input[type=button],
a:hover input[type=reset],
a:hover input[type=submit], a:hover .btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: #C2805D;
}
button.btn-secondary,
input.btn-secondary[type=button],
input.btn-secondary[type=reset],
input.btn-secondary[type=submit], .btn-secondary.btn {
  background-color: #70940C;
}
button.btn-secondary:hover,
input.btn-secondary[type=button]:hover,
input.btn-secondary[type=reset]:hover,
input.btn-secondary[type=submit]:hover, .btn-secondary.btn:hover, button.btn-secondary:focus,
input.btn-secondary[type=button]:focus,
input.btn-secondary[type=reset]:focus,
input.btn-secondary[type=submit]:focus, .btn-secondary.btn:focus, a:hover button.btn-secondary,
a:hover input.btn-secondary[type=button],
a:hover input.btn-secondary[type=reset],
a:hover input.btn-secondary[type=submit], a:hover .btn-secondary.btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: #A9C851;
}
button.btn-forest,
input.btn-forest[type=button],
input.btn-forest[type=reset],
input.btn-forest[type=submit], .btn-forest.btn {
  background-color: #24402A;
}
button.btn-forest:hover,
input.btn-forest[type=button]:hover,
input.btn-forest[type=reset]:hover,
input.btn-forest[type=submit]:hover, .btn-forest.btn:hover, button.btn-forest:focus,
input.btn-forest[type=button]:focus,
input.btn-forest[type=reset]:focus,
input.btn-forest[type=submit]:focus, .btn-forest.btn:focus, a:hover button.btn-forest,
a:hover input.btn-forest[type=button],
a:hover input.btn-forest[type=reset],
a:hover input.btn-forest[type=submit], a:hover .btn-forest.btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: #919F69;
}
button.btn-gold,
input.btn-gold[type=button],
input.btn-gold[type=reset],
input.btn-gold[type=submit], .btn-gold.btn {
  background-color: #BE8E36;
}
button.btn-gold:hover,
input.btn-gold[type=button]:hover,
input.btn-gold[type=reset]:hover,
input.btn-gold[type=submit]:hover, .btn-gold.btn:hover, button.btn-gold:focus,
input.btn-gold[type=button]:focus,
input.btn-gold[type=reset]:focus,
input.btn-gold[type=submit]:focus, .btn-gold.btn:focus, a:hover button.btn-gold,
a:hover input.btn-gold[type=button],
a:hover input.btn-gold[type=reset],
a:hover input.btn-gold[type=submit], a:hover .btn-gold.btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(190, 142, 54, 0.5);
}
button.btn-grey,
input.btn-grey[type=button],
input.btn-grey[type=reset],
input.btn-grey[type=submit], .btn-grey.btn {
  background-color: #CDCDCD;
}
button.btn-grey:hover,
input.btn-grey[type=button]:hover,
input.btn-grey[type=reset]:hover,
input.btn-grey[type=submit]:hover, .btn-grey.btn:hover, button.btn-grey:focus,
input.btn-grey[type=button]:focus,
input.btn-grey[type=reset]:focus,
input.btn-grey[type=submit]:focus, .btn-grey.btn:focus, a:hover button.btn-grey,
a:hover input.btn-grey[type=button],
a:hover input.btn-grey[type=reset],
a:hover input.btn-grey[type=submit], a:hover .btn-grey.btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: #70940C;
}
button.btn-mega-menu,
input.btn-mega-menu[type=button],
input.btn-mega-menu[type=reset],
input.btn-mega-menu[type=submit], .btn-mega-menu.btn {
  background-color: #F7F0E3;
  border: 1px solid #8F3533;
  color: #8F3533;
}
button.btn-mega-menu:hover,
input.btn-mega-menu[type=button]:hover,
input.btn-mega-menu[type=reset]:hover,
input.btn-mega-menu[type=submit]:hover, .btn-mega-menu.btn:hover, button.btn-mega-menu:focus,
input.btn-mega-menu[type=button]:focus,
input.btn-mega-menu[type=reset]:focus,
input.btn-mega-menu[type=submit]:focus, .btn-mega-menu.btn:focus, a:hover button.btn-mega-menu,
a:hover input.btn-mega-menu[type=button],
a:hover input.btn-mega-menu[type=reset],
a:hover input.btn-mega-menu[type=submit], a:hover .btn-mega-menu.btn {
  cursor: pointer;
  color: #ffffff;
  text-decoration: none;
  background-color: rgba(247, 240, 227, 0.5);
}

.btn-link {
  margin-bottom: 0.13rem;
  color: #70940C;
  font-size: 1.13rem;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  text-transform: capitalize;
}
.btn-link:hover, .btn-link:focus, a:hover .btn-link {
  color: #A9C851;
  text-decoration: none;
}
.btn-large {
  padding: 0.75rem 4rem;
}
.btn-outline {
  background-color: #F7F0E3;
  font-size: 1rem;
  font-weight: 600;
}
.btn-outline-primary {
  border: 1px solid #8F3533;
  color: #8F3533;
}
.btn-outline-secondary {
  border: 1px solid #70940C;
  color: #70940C;
}
.btn-transparent {
  background-color: transparent;
}
.btn-full {
  width: 100%;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
}

form label {
  display: block;
  margin-bottom: 0.63rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Lato", "Arial", sans-serif;
  font-size: 0.88rem;
  color: #423718;
}

input,
textarea,
button,
select {
  font-family: "Lato", "Arial", sans-serif;
}

input[type=url],
input[type=text],
input[type=submit],
input[type=button],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
textarea {
  -webkit-appearance: none;
  outline: none;
}

input[type=url],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=search],
input[type=number],
textarea,
select {
  width: 100%;
  height: 2.63rem;
  padding: 0 0.94rem;
  color: #000000;
  font-size: 1rem;
  font-weight: 400;
  border: 0.07rem solid #70940C;
  border-radius: 0;
}
input[type=url]:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=search]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border-color: #70940C;
  outline: none;
}
input[type=url]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
input[type=url]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=number]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
input[type=url]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=number]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
input[type=url]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

textarea {
  display: block;
  height: 9.38rem;
  padding: 0.63rem 0.94rem;
  resize: none;
  overflow: auto;
}

select {
  -webkit-appearance: none;
  padding-right: 1.875em;
  background-image: url(/application/themes/sabi_sabi/images/select-down-arrow.svg);
  background-size: 0.88rem 0.44rem;
  background-position: right 0.5em center;
  background-repeat: no-repeat;
}

select:focus {
  outline: none;
}

/* for ie */
select::-ms-expand {
  display: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form-group {
  margin-bottom: 1.25rem;
}

.radio-btn-group .radio-option {
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}
.radio-btn-group .radio-option:first-child {
  padding-left: 0;
}
.radio-btn-group .radio-option .radio-custom {
  opacity: 0;
  position: absolute;
}
.radio-btn-group .radio-option .radio-custom:focus + .radio-custom-label {
  outline: none;
}
.radio-btn-group .radio-option .radio-custom:checked + .radio-custom-label:before {
  background-color: #000000;
}
.radio-btn-group .radio-option .radio-custom-label {
  margin: 0;
  cursor: pointer;
  color: #000000;
}
.radio-btn-group .radio-option .radio-custom-label:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 0.63rem;
  width: 0.63rem;
  margin-top: -0.19rem;
  margin-right: 0.63rem;
  background-color: #ffffff;
  border: 0.13rem solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0px 2px #000000;
  cursor: pointer;
}

.checkbox input[type=checkbox] {
  display: none;
  width: initial;
  height: initial;
  margin-bottom: 0;
  padding: 0;
  cursor: pointer;
}
.checkbox input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  display: block;
  width: 0.32rem;
  height: 0.63rem;
  border: solid #70940C;
  border-width: 0 0.13rem 0.13rem 0;
  transform: rotate(42deg);
}
.checkbox label {
  position: relative;
  cursor: pointer;
}
.checkbox label::before {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  padding: 0.5rem;
  background-color: transparent;
  border: 0.13rem solid #70940C;
  -webkit-appearance: none;
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: #24402A !important;
  opacity: 0.5 !important;
}

::-moz-placeholder {
  color: #24402A !important;
  opacity: 0.5 !important;
} /* firefox 19+ */
:-ms-input-placeholder {
  color: #24402A !important;
  opacity: 0.5 !important;
} /* ie */
input:-moz-placeholder {
  color: #24402A !important;
  opacity: 0.5 !important;
}

.aspect-ratio {
  position: relative;
  display: block;
  background-color: #F7F0E3;
}
.aspect-ratio:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: calc(var(--rh) / var(--rw) * 100%);
}
.aspect-ratio > picture,
.aspect-ratio > picture img,
.aspect-ratio > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between;
  width: 100%;
  min-height: 100%;
  background-color: #ffffff;
}

.main-container {
  width: 100%;
}

.slick-dots li {
  padding: 0 0.32rem;
}

/* responsive nav for small devices */
.hamburger {
  --humburgerBox: 1.94rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--humburgerBox);
  height: var(--humburgerBox);
  padding: 0;
  margin: 0 1.69rem 0 0;
  text-align: center;
  background-color: transparent;
  z-index: 999;
  order: 2;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger:hover, .hamburger:focus {
  background-color: transparent;
  outline: none;
  cursor: pointer;
}
.hamburger span {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  border-radius: 0;
  height: 3px;
  width: 100%;
  background: #8F3533;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before, .hamburger span:after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #8F3533;
  transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  border-radius: 2px;
}
.hamburger span:before {
  top: -8px;
}
.hamburger span:after {
  bottom: -8px;
}
.hamburger.is-clicked span {
  background-color: transparent !important;
}
.hamburger.is-clicked span:before, .hamburger.is-clicked span:after {
  top: 0;
}
.hamburger.is-clicked span:before {
  transform: rotate(45deg);
}
.hamburger.is-clicked span:after {
  transform: translateY(-6px) rotate(-45deg);
  top: 6px;
}

.mbnav {
  position: relative;
  display: none;
  z-index: 999;
}
@media (max-width: 991px) {
  .mbnav {
    display: block;
  }
}
.mbnav.is-open .btn-wrap {
  transform: translateY(0);
}
.mbnav.is-open + header {
  position: fixed;
}
.mbnav__state {
  position: fixed;
  top: 5rem;
  bottom: 0;
  left: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  z-index: 999;
  pointer-events: none;
}
.mbnav__inner {
  position: relative;
  max-height: 100vh;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.mbnav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #d4dfb6;
}
.mbnav__logo {
  color: #ffffff;
  padding: 15px;
}
.mbnav__enquiryblock {
  display: flex;
  flex-direction: column;
  padding: 2rem 2.19rem;
}
.mbnav__enquiryblock a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.13rem;
}
.mbnav__enquiryblock a.btn {
  background-color: #F7F0E3;
  color: #8F3533;
}
.mbnav .menu-wrap {
  --leftSlide: 0;
  position: absolute;
  top: 0;
  right: var(--leftSlide);
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: 0.4s ease;
}
.mbnav .menu-wrap .menu-wrap {
  right: -100%;
  opacity: 0;
  visibility: hidden;
  background-color: #ffffff;
}
.mbnav .menu-wrap > .menu-inner {
  max-height: 100%;
  padding-top: 4.69rem;
  background-color: #F7F0E3;
  pointer-events: auto;
  overflow: hidden auto;
}
.mbnav ul {
  padding-left: 0;
  position: static;
  left: 0;
  width: 100%;
  margin: 0;
  transition: 0.4s ease;
}
.mbnav ul li.is-open > .menu-wrap {
  opacity: 1;
  visibility: visible;
}
.mbnav ul li:not(.btn-wrap) {
  position: static;
  display: flex;
  justify-content: space-between;
  padding: 0 2.19rem;
  margin: 0 0 0 0;
  list-style: none;
  color: #CEA496;
  font-weight: 500;
  border-bottom: 1px solid #DDD3C0;
}
@media (max-width: 767px) {
  .mbnav ul li:not(.btn-wrap) {
    padding: 0 1.57rem;
  }
}
.mbnav ul li:not(.btn-wrap):last-child {
  border-bottom: 0;
}
.mbnav ul li:not(.btn-wrap)::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap).has-sub a::after {
  display: none;
}
.mbnav ul li:not(.btn-wrap).breadcrumb a {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: #BE8E36;
  font-family: "Lato", "Arial", sans-serif;
}
.mbnav ul li:not(.btn-wrap).breadcrumb a:after {
  display: none;
}
.mbnav ul li:not(.btn-wrap) .mbnav__caret::before, .mbnav ul li:not(.btn-wrap) a::after {
  content: "";
  --sArrowWidth: 15px;
  display: flex;
  align-items: center;
  margin: auto;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  border: calc(var(--sArrowWidth) / 7) solid #8F3533;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}
.mbnav ul li:not(.btn-wrap) a {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.57rem 0;
  color: #24402A;
  font-size: 1.88rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  line-height: 1.3;
  text-decoration: none !important;
  text-transform: capitalize;
  z-index: 2;
  cursor: pointer;
  flex: 1 1 auto;
  order: -1;
}
@media (max-width: 767px) {
  .mbnav ul li:not(.btn-wrap) a {
    font-size: 1.5rem;
    padding: 0.94rem 0;
  }
}
.mbnav ul li:not(.btn-wrap) a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin-left: auto;
  margin-right: 0;
}
.mbnav ul li:not(.btn-wrap) a p {
  color: #000000;
  font-size: 0.88rem;
  font-family: "Lato", "Arial", sans-serif;
}
.mbnav__caret {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 1.88rem;
  cursor: pointer;
  z-index: 1;
}
.mbnav__caret:not(.trigger-caret) {
  pointer-events: none;
}
.color-mbnav .mbnav__caret::before {
  color: #CEA496 !important;
}

.mbnav ul li:not(.btn-wrap).is-open > .mbnav__caret:after {
  transform: rotate(0);
}
.mbnav ul li:not(.btn-wrap).has-sub > a {
  flex: 1 1 auto;
  padding: 1.57rem 0;
  margin-right: -1.87rem;
  padding-right: 3.75rem !important;
}
@media (max-width: 767px) {
  .mbnav ul li:not(.btn-wrap).has-sub > a {
    padding: 0.94rem 0;
    font-size: 1.5rem;
  }
}
.mbnav ul li:not(.btn-wrap) .btn-wrap {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  margin: 0;
  transform: translateY(200%);
  transition: 0.4s ease-in-out;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap::before {
  display: none;
}
.mbnav ul li:not(.btn-wrap) .btn-wrap a {
  display: block;
}
.mbnav ul ul li {
  font-size: 16px;
}
.mbnav ul ul li a {
  padding-left: 25px;
}
.mbnav ul ul li li {
  font-size: 14px;
}
.mbnav ul ul li li a {
  padding-left: 35px;
}
.mbnav ul li.back-click {
  display: flex;
  align-items: baseline;
  width: 100%;
  order: -1;
  color: currentColor;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.mbnav ul li.back-click em {
  position: relative;
}
.mbnav ul li.back-click em::before {
  content: "";
  --sArrowWidth: 8px;
  display: inline-block;
  margin: 0 7px 0 0;
  width: var(--sArrowWidth);
  height: var(--sArrowWidth);
  border: calc(var(--sArrowWidth) / 4) solid #8F3533;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(225deg);
}
.mbnav ul#menu-top-menu li:not(.btn-wrap) {
  font-weight: 300;
}
.mbnav ul#menu-top-menu li:not(.btn-wrap) a::after {
  display: none;
}
.mbnav__backdrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  visibility: hidden;
  transition: all 0.4s ease-in;
  background: white;
  opacity: 0;
  z-index: -1;
}
.mbnav__overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s ease-in;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}
.mbnav__overlay.is-show {
  opacity: 1;
  visibility: visible;
}
.mbnav.is-open .mbnav__state {
  left: 0;
}
.mbnav.is-open .mbnav__backdrop {
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

.mbnav__inner > .menu-wrap > .menu-inner {
  padding-top: 0px !important;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner {
  padding-top: 0px !important;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li {
  position: relative;
  flex-direction: column;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li.level-3.is-open {
  position: static;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li.level-3 em.mbnav__caret:before {
  transform: rotate(45deg);
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li.prev-text {
  color: #8F3533;
  font-size: 1.13rem;
  font-weight: 300;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li.prev-text a {
  color: inherit;
  text-decoration: underline !important;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li em {
  position: absolute;
  right: 0;
  top: 0;
  height: 1.88rem;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li em::before {
  transform: rotate(136deg);
  transition: 0.4s ease;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li em.is-click::before {
  transform: rotate(-45deg);
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li > .mobile-menu-wrapper {
  display: none;
  padding: 0 1.25rem;
  transition: none;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li > .mobile-menu-wrapper .back-btn {
  display: none;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li > .mobile-menu-wrapper > ul {
  padding: 0;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul > li a {
  width: calc(100% - 40px);
  padding: 2rem 0;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .mobile-menu-wrapper {
  padding-bottom: 2rem;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .has-sub .mbnav__caret {
  top: 2rem;
  bottom: 0;
  right: 2.19rem;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .has-sub.is-open:not(.level-3) {
  background-color: #ffffff;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .has-sub.is-open:not(.level-3) a {
  color: #8F3533;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .has-sub.is-open:not(.level-3) .sub-menu li {
  border: none;
  padding-left: 0%;
  padding-right: 0;
}
.mbnav__inner > .menu-wrap > .menu-inner > ul > li > .menu-wrap > .menu-inner > .mobile-menu-wrapper > ul.sub-menu .has-sub.is-open:not(.level-3) .sub-menu li a {
  padding: 1rem 0;
  color: #24402A;
  font-size: 1.38rem;
  font-family: "Lato", "Arial", sans-serif;
}

.mobile-menu-wrapper {
  display: flex;
  flex-direction: column;
  padding: 0.63rem 0 0 0;
}
.mobile-menu-wrapper .featured-post-wrapper {
  margin-top: 1.57rem;
  padding: 0 2.19rem;
  order: 1;
}
.mobile-menu-wrapper .featured-menu-post-img {
  max-width: 12.25rem;
  padding-top: 1.88rem;
  margin-bottom: 6px;
  border-top: 1px solid #CEA496;
}
.mobile-menu-wrapper .featured-menu-post-img figure {
  padding-top: 51.0204081633%;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(206, 164, 150, 0.1);
  overflow: hidden;
}
.mobile-menu-wrapper .featured-menu-post-content {
  max-width: 16.88rem;
}
.mobile-menu-wrapper .featured-menu-post-content h5,
.mobile-menu-wrapper .featured-menu-post-content .h5 {
  font-size: 1rem;
}
.mobile-menu-wrapper .featured-menu-post-content h5 a,
.mobile-menu-wrapper .featured-menu-post-content .h5 a {
  padding: 6px 0;
}
.mobile-menu-wrapper .featured-menu-post-content p {
  display: none;
}
.mobile-menu-wrapper .featured-cat {
  color: rgba(143, 53, 51, 0.8);
  font-size: 0.88rem;
  font-weight: 600;
}

.search-box-m {
  padding: 1rem 2.19rem;
  margin-bottom: 0.63rem;
  background-color: #D4DFB6;
}
.search-box-m .search-field {
  position: relative;
}
.search-box-m input[type=search] {
  height: 3.5rem;
  padding-right: 3.13rem;
  border: 1px solid #CEA496;
  border-radius: 3px;
}
.search-box-m button {
  position: absolute;
  top: 2px;
  right: 0;
  height: 3.38rem;
  padding: 0 0.82rem;
  color: #8F3533;
  font-size: 1.25rem;
  background-color: transparent;
  border: 0;
}

.level-3 .menu-wrap .menu-inner {
  padding-top: 0 !important;
}
.level-3 .menu-wrap .sub-menu .has-sub {
  flex-direction: column;
  position: relative;
}
.level-3 .menu-wrap .sub-menu .has-sub .back-btn {
  display: none;
}
.level-3 .menu-wrap .sub-menu .has-sub > .mobile-menu-wrapper {
  display: none;
}
.level-3 .menu-wrap .sub-menu .has-sub > .mobile-menu-wrapper > ul li.is-open {
  font-weight: bold;
}
.level-3 .menu-wrap .sub-menu .has-sub > .mobile-menu-wrapper > ul li em {
  z-index: 2;
}
.level-3 .menu-wrap .sub-menu .has-sub > .mobile-menu-wrapper > ul li ul {
  padding-left: 1.25rem;
}
.level-3 .menu-wrap .sub-menu .has-sub .has-sub .mbnav__caret:before {
  display: none !important;
}

ul:not(.sub-menu) li.back-click:before {
  display: none;
}
ul:not(.sub-menu) li .semi-title:after {
  display: none;
}
ul.sub-menu li.back-click:before {
  display: block;
}

.sub-menu li.back-click .semi-title {
  display: inline-block;
  padding-right: 1.25rem;
  vertical-align: middle;
  position: relative;
}
.sub-menu li.back-click .semi-title:last-of-type:after {
  display: none;
}
.sub-menu li.back-click .semi-title:after {
  position: absolute;
  content: "\\";
  right: 0.32rem;
  display: inline-block;
  height: 1.25rem;
  font-size: 0.75rem;
  width: 0.63rem;
  color: #BE8E36;
  font-weight: bold;
}

.mbnav ul li .menu-inner {
  padding-top: 0px !important;
}
.mbnav ul li .trigger-caret {
  pointer-events: none;
}
.mbnav ul li.drop-down {
  position: relative !important;
  flex-wrap: wrap;
  background: transparent;
}
.mbnav ul li.drop-down a {
  transition: all 0.5s;
}
.mbnav ul li.drop-down .trigger-caret {
  transform: rotate(90deg);
  position: absolute;
  top: 24px;
  right: 22px;
  height: 33px;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s;
}
.mbnav ul li.drop-down .trigger-caret:before {
  --sArrowWidth: 12px;
  border-width: 2px;
}
@media (max-width: 767px) {
  .mbnav ul li.drop-down .trigger-caret {
    top: 12px;
  }
}
.mbnav ul li.drop-down .menu-wrap {
  position: unset;
  opacity: 1;
  visibility: visible;
  transition: inherit;
  display: none;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner {
  padding-top: 0 !important;
  max-height: unset;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu {
  padding-bottom: 25px;
}
@media (max-width: 767px) {
  .mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu {
    padding-bottom: 0.94rem;
  }
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li {
  padding: 16px 26px;
  border: none;
}
@media (max-width: 767px) {
  .mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li {
    padding: 13px 15px;
  }
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li a {
  font-size: 1.5rem;
  font-family: "Lato";
  font-weight: 500;
  border: none;
  padding: 0;
}
@media (max-width: 767px) {
  .mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li a {
    font-size: 1.25rem;
  }
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li:first-child {
  padding-top: 0;
  display: none;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li:nth-child(2) {
  padding-top: 0;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu li:last-child {
  padding-bottom: 0.63rem;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu ul {
  padding-top: 16px;
  transition: inherit;
  padding-bottom: 0;
}
.mbnav ul li.drop-down .menu-wrap .menu-inner .sub-menu ul li:first-child {
  display: none;
}
.mbnav ul li.drop-down.is-open > a {
  color: #8f3533;
}
.mbnav ul li.drop-down.is-open .menu-inner {
  background: #fff;
}
.mbnav ul li.drop-down.is-open .menu-inner a:hover {
  color: #8f3533;
}
.mbnav ul li.drop-down.is-open:after {
  background: #fff;
}
.mbnav ul li.drop-down.is-open .trigger-caret {
  transform: rotate(-90deg);
}
.mbnav ul li.drop-down:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #f7f0e3;
  transition: all 1s;
}

body.scroll-fixed {
  overflow: hidden;
}

.enquiry_menu {
  text-align: center;
  padding: 1.88rem 2.19rem;
  background: #8F3533;
}
@media (max-width: 767px) {
  .enquiry_menu {
    padding: 1.25rem 2.19rem;
  }
}
.enquiry_menu a {
  background: #F7F0E3;
  color: #8F3533;
  width: 100%;
  font-size: 1.13rem;
}
.enquiry_connect {
  padding: 1.88rem 2.19rem 2.19rem;
  background: #24402A;
}
@media (max-width: 767px) {
  .enquiry_connect {
    padding: 1.25rem 2.19rem 1.57rem;
  }
}
.enquiry_connect .heading {
  display: block;
  margin-bottom: 0.69rem;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 3rem;
  letter-spacing: 0.5em;
  color: #BE8E36;
}
.enquiry_connect a {
  font-weight: 500;
  font-size: 1.63rem;
  line-height: 2.25rem;
  display: block;
  margin-bottom: 0.75rem;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .enquiry_connect a {
    font-size: 1.38rem;
    margin-bottom: 0.44rem;
  }
}
.enquiry_connect a:hover {
  color: #BE8E36;
}

/*--- header ---*/
.main-header {
  width: 100%;
  height: auto;
  padding-top: 1.57rem;
  padding-bottom: 1.57rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .main-header {
    display: flex;
    align-items: center;
    padding-top: 0.94rem;
    padding-bottom: 0.94rem;
    line-height: 1.3;
  }
}
.main-header .mh-brand {
  text-align: center;
  position: relative;
}
@media (min-width: 768px) {
  .main-header .mh-brand {
    padding-left: 1.88rem;
    padding-right: 1.88rem;
    margin-left: 3.13rem;
    margin-right: 3.13rem;
  }
  .main-header .mh-brand img {
    max-width: 312px;
  }
}
.main-header .mh-brand img {
  max-width: 250px;
}
@media (max-width: 767px) {
  .main-header .mh-brand img {
    max-width: 200px;
  }
}
@media (max-width: 479px) {
  .main-header .mh-brand img {
    max-width: 185px;
  }
}
.main-header .mh-brand-tag {
  color: #24402A;
  font-weight: 500;
  display: block;
  background-color: #ffffff;
  padding-bottom: 0.32rem;
  border-radius: 0 0 20px 20px;
  letter-spacing: 0.1em;
  white-space: nowrap;
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .main-header .mh-brand-tag {
    width: 100%;
    position: absolute;
    padding-bottom: 0.63rem;
    bottom: -3.12rem;
    left: 0;
    padding-left: 0.63rem;
    padding-right: 0.63rem;
  }
}
@media (max-width: 479px) {
  .main-header .mh-brand-tag {
    font-size: 0.69rem;
  }
}
.main-header .mh-brand a:after {
  display: none;
}
@media (max-width: 991px) {
  .main-header .mh-nav {
    display: none;
  }
}
.main-header .mh-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
}
.main-header .mh-nav a:not(.btn) {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #24402A;
  padding: 0.25rem 0;
}
.main-header .mh-nav a:not(.btn):hover, .main-header .mh-nav a:not(.btn).active {
  color: #8F3533;
}
.main-header .mh-nav a.nav-item {
  cursor: pointer;
}
.main-header .mh-nav a.nav-item:first-of-type:after {
  position: absolute;
  content: "";
  top: 180%;
  left: 0;
  right: 0;
  height: 2.13rem;
  width: 2.13rem;
  transform: rotate(45deg) scale(0);
  text-align: center;
  margin: 0 auto;
  transition: 0.3s;
  background-color: #ffffff;
  opacity: 0;
}
.main-header .mh-nav a.nav-item.active {
  color: #8F3533;
  font-weight: 600;
  border-bottom: 2px solid #8F3533;
  position: relative;
}
.main-header .mh-nav li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.main-header .mh-nav li.home-icon img {
  width: 1.63rem;
  margin-right: 0.63rem;
}
.main-header .mh-nav li.active-shape .nav-item:after {
  transform: rotate(45deg) scale(1);
  opacity: 1;
}
.main-header .mh-nav li .btn {
  margin-right: 0;
}
.main-header .mh-nav li .btn:focus {
  background-color: #8F3533;
}
.main-header .mh-nav-left {
  flex: 1;
}
.main-header .mh-nav-right {
  flex: 1;
}
.main-header.logo-left .mh-brand {
  order: 1;
  padding: 0;
  margin: 0;
}
@media (max-width: 1439px) {
  .main-header.logo-left .mh-brand img {
    max-width: 100%;
    width: 13.44rem;
  }
}
@media (max-width: 991px) {
  .main-header.logo-left .mh-brand img {
    max-width: 85%;
    width: 13.44rem;
  }
}
.main-header.logo-left .mh-brand .mh-brand-tag {
  bottom: -1.75rem;
  padding-left: 0;
  font-size: 0.57rem;
  padding-right: 0;
}
@media (min-width: 1440px) {
  .main-header.logo-left .mh-brand .mh-brand-tag {
    font-size: 0.82rem;
  }
}
.main-header.logo-left .mh-nav-left {
  order: 2;
  flex: 1;
}
.main-header.logo-left .mh-nav-right {
  order: 3;
  flex: unset;
}
.main-header.logo-left .mh-nav ul {
  justify-content: flex-end;
}
.main-header.logo-left .mh-nav ul li a {
  margin-left: 1.88rem;
  margin-right: 1.88rem;
}
@media (max-width: 1439px) {
  .main-header.logo-left .mh-nav ul li a {
    font-size: 0.75rem;
    margin-left: 0.94rem;
    margin-right: 0.94rem;
  }
}
.main-header.logo-left .mh-nav ul li a.btn {
  margin-right: 0;
}
.main-header.logo-left .mh-nav ul li a.btn:focus {
  background-color: #8F3533;
}

.menu__overlay {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: -1;
  background-color: #F7F0E3;
  transition: 0.3s;
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
}
.menu__overlay .mo__column-right .menu-button {
  min-width: initial;
  padding: 0.5rem 1rem;
  margin-right: 10px;
}
.menu__overlay .mo__column-right div.button-row {
  margin-top: 10px;
}
.menu__overlay .mo__column-right div.button-row:first-child {
  margin-top: initial; /* limits the scope of the previous rule */
}
.menu__overlay.overlay-active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.menu__overlay .mo__row {
  padding: 0;
  margin-top: 4rem;
  margin-bottom: 4rem;
  width: 100%;
}
.menu__overlay .mo__column {
  padding: 0 1.5rem;
  border-right: 1px solid #BAB97F;
}
.menu__overlay .mo__column:last-of-type {
  border-right: 0;
}
.menu__overlay .mo__column-left {
  padding-left: calc((100% - 1440px) / 2);
  max-width: 25%;
  flex-basis: 25%;
}
@media (min-width: 2000px) {
  .menu__overlay .mo__column-left {
    max-width: 35%;
    flex-basis: 35%;
  }
}
.menu__overlay .mo__column-left .mo__innermenu-link.active {
  position: relative;
  color: #8F3533;
  font-weight: bold;
  text-decoration: underline;
}
.menu__overlay .mo__column-left .mo__innermenu-link.active:after {
  position: absolute;
  content: "";
  left: 110%;
  height: 1.63rem;
  width: 1.63rem;
  transform: rotate(45deg);
  background-color: #58778D;
}
.menu__overlay .mo__column-right {
  max-width: 75%;
  flex-basis: 75%;
  padding-right: calc((100% - 1440px) / 2);
  color: #ffffff;
  transition: 0.5s;
  background-color: #58778D;
}
@media (min-width: 2000px) {
  .menu__overlay .mo__column-right {
    max-width: 65%;
    flex-basis: 65%;
  }
}
.menu__overlay .mo__column-right p {
  font-size: 1rem;
}
@media (max-width: 1439px) {
  .menu__overlay .mo__column-right p {
    font-size: 0.88rem;
  }
}
.menu__overlay .mo__column-right.bush {
  background-color: #919F69;
}
.menu__overlay .mo__column-right.bush .btn {
  background-color: #24402A;
}
.menu__overlay .mo__column-right.selati {
  background-color: #CEA496;
}
.menu__overlay .mo__column-right.selati .btn {
  background-color: #8F3533;
}
.menu__overlay .mo__column-right.little-bush {
  background-color: #24402A;
}
.menu__overlay .mo__column-right.little-bush .btn {
  background-color: #70940C;
}
.menu__overlay .mo__column-right.earth-lodge {
  background-color: #0A5D7E;
}
.menu__overlay .mo__column-right.earth-lodge .btn {
  background-color: #BE8E36;
}
.menu__overlay .mo__column-right .mo__container {
  padding: 0 2rem;
  display: none;
}
.menu__overlay .mo__column-right .mo__container.active-block {
  display: flex;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innertitle {
  color: #ffffff;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innermenu {
  display: none;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innermenu.active-lodge {
  display: flex;
  flex-wrap: wrap;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innermenu-link {
  color: white;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innermenu-link.active {
  font-weight: bold;
  text-decoration: underline;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__innermenu-wrapper {
  display: flex;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__inner-left {
  border-right: 1px solid #ffffff;
}
.menu__overlay .mo__column-right .mo__container.active-block .mo__inner-left .mo__innermenu {
  display: block;
}
.menu__overlay .mo__column-right .semi-title {
  color: #ffffff;
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-left {
  border-right: 1px solid rgba(255, 255, 255, 0.7);
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-lefttitle {
  color: #ffffff;
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-leftmenu-link, .menu__overlay .mo__column-right.our-lodges .mo__inner-leftmenu-text {
  color: #ffffff;
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-leftmenu-link {
  text-transform: capitalize;
  transition: 0.3s;
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-leftmenu-link.active, .menu__overlay .mo__column-right.our-lodges .mo__inner-leftmenu-link:hover {
  font-weight: 700;
  text-decoration: underline;
  color: #ffffff;
}
.menu__overlay .mo__column-right.our-lodges .mo__inner-right {
  width: 100%;
}
.menu__overlay .mo__column-right.our-lodges .mo .semi-title {
  color: #ffffff;
}
.menu__overlay .mo__column-right.our-lodges.bush, .menu__overlay .mo__column-right.our-lodges.selati, .menu__overlay .mo__column-right.our-lodges.little-bush, .menu__overlay .mo__column-right.our-lodges.earth-lodge {
  display: none;
}
.menu__overlay .mo__column-right.our-lodges.bush {
  background-color: #919F69;
}
.menu__overlay .mo__column-right.our-lodges.bush .btn {
  background-color: #24402A;
}
.menu__overlay .mo__container {
  padding: 0 2rem;
}
.menu__overlay .mo__innertitle {
  margin-bottom: 1.88rem;
  color: #24402A;
  font-size: 1.5rem;
  font-weight: 500;
  text-transform: capitalize;
}
@media (max-width: 1439px) {
  .menu__overlay .mo__innertitle {
    font-size: 1.13rem;
  }
}
.menu__overlay .mo__innermenu-link {
  display: block;
  margin-bottom: 1.88rem;
  color: #423718;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .menu__overlay .mo__innermenu-link {
    font-size: 0.88rem;
  }
}
.menu__overlay .mo__innermenu-link:last-of-type {
  margin-bottom: 0;
}
.menu__overlay .mo__innermenu-link:hover {
  color: #8F3533;
}
.menu__overlay .featured__strip {
  width: 100%;
  padding: 0.94rem 0;
  background-color: #ffffff;
}
.menu__overlay .featured__strip-block {
  display: flex;
  align-items: center;
  max-width: 50%;
  flex-basis: 50%;
  text-decoration: none;
  color: #423718;
}
.menu__overlay .featured__strip-block .semi-title {
  margin-bottom: 0;
}
.menu__overlay .featured__strip-block > .icon {
  margin-right: 0.94rem;
}
.menu__overlay .featured__strip-block > .icon:before {
  font-size: 2.25rem;
}
.menu__overlay .featured__strip-blockinner {
  display: flex;
  flex-direction: column;
}
.menu__overlay .featured__strip-blockinner .cta {
  text-transform: capitalize;
}
.menu__overlay .featured__strip .rating {
  display: flex;
  align-items: center;
}
.menu__overlay .featured__strip .rating .icon-primary-arrow {
  text-transform: capitalize;
  margin-left: 0.38rem;
}
.menu__overlay .featured__strip .rating .icon-primary-arrow:before {
  display: flex;
}
.menu__overlay .featured__strip .rating__stars {
  display: inline-flex;
  align-items: center;
  margin-right: 0.63rem;
}
.menu__overlay .featured__strip .rating__stars img {
  max-width: 0.88rem;
}

/*============== css for headroom ==============*/
.headroom {
  will-change: transform;
  transition: transform 200ms linear;
}
.headroom--pinned {
  transform: translateY(0);
}
.headroom--unpinned {
  transform: translateY(-150%);
}
.headroom--unpinned .overlay-active {
  display: none;
}
.headroom--top, .headroom--not-top {
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: 0.7s;
}

/*--- footer ---*/
.main-footer {
  width: 100%;
  background-color: #24402A;
}
.main-footer hr {
  border: 1px rgba(247, 240, 227, 0.1) solid;
}
.main-footer-top {
  padding: 4rem;
}
@media (max-width: 1439px) {
  .main-footer-top {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .main-footer-top {
    padding: 2rem 0;
  }
}
@media (max-width: 991px) {
  .main-footer-top .footer-content-wrap {
    margin-bottom: 1.88rem;
  }
}
@media (max-width: 767px) {
  .main-footer-top .footer-content-wrap {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .main-footer-top .footer-content-wrap .fcw-inner {
    margin-bottom: 0.94rem;
  }
}
.main-footer-top .footer-content-wrap .fcw-inner-title {
  margin-bottom: 0;
  color: #BE8E36;
  font-size: 0.88rem;
  line-height: 2.13rem;
  text-transform: uppercase;
}
.main-footer-top .footer-content-wrap .fcw-about p {
  max-width: 14.32rem;
  color: #F7F0E3;
  font-size: 0.88rem;
  line-height: 1.13rem;
}
@media (max-width: 767px) {
  .main-footer-top .footer-content-wrap .fcw-about p {
    margin-left: auto;
    margin-right: auto;
  }
}
.main-footer-top .footer-content-wrap .fcw-email-wrap {
  position: relative;
}
.main-footer-top .footer-content-wrap .fcw-email-wrap input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #F7F0E3;
  padding-left: 0;
}
.main-footer-top .footer-content-wrap .fcw-email-wrap input::-moz-placeholder {
  color: #F7F0E3 !important;
}
.main-footer-top .footer-content-wrap .fcw-email-wrap input::placeholder {
  color: #F7F0E3 !important;
}
.main-footer-top .footer-content-wrap .fcw-email-wrap .btn {
  position: absolute;
  right: 0;
  top: 0;
  min-width: unset;
  padding: 0.32rem 0.94rem;
}
.main-footer-top .footer-content-wrap .fcw-email-wrap .btn i:before {
  font-size: 1.57rem;
}
.main-footer-top .footer-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.main-footer-top .footer-list a {
  color: #F7F0E3;
  text-decoration: none;
  font-size: 0.88rem;
}
.main-footer-top .footer-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}
.main-footer-top .footer-social-list li {
  display: flex;
  padding: 0;
}
.main-footer-top .footer-social-list a {
  display: flex;
  color: #F7F0E3;
  text-decoration: none;
  font-size: 2.19rem;
}
.main-footer-top .footer-social-list i {
  display: flex;
}
.main-footer-top .footer-main-title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: #F7F0E3;
  text-transform: capitalize;
}
.main-footer-content {
  padding: 0 2rem 2rem;
}
.main-footer-bottom {
  background-color: #2D3A2A;
}
.main-footer-bottom .fcw-outer-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 991px) {
  .main-footer-bottom .fcw-outer-wrap {
    text-align: center;
  }
}
.main-footer-bottom .fcw-image {
  max-width: 4.19rem;
  margin-right: 1.25rem;
}
@media (max-width: 991px) {
  .main-footer-bottom .fcw-image {
    margin: 0 auto 1.25rem;
  }
}
.main-footer-bottom .fcw-description {
  max-width: 50rem;
}
.main-footer-bottom .fcw-description p {
  font-size: 0.69rem;
  line-height: 0.94rem;
  color: #F7F0E3;
}
@media (max-width: 991px) {
  .main-footer-bottom .fcw-description p {
    text-align: center;
    margin-bottom: 1.88rem;
  }
}
.main-footer-bottom .fcw-outer-link {
  max-width: 11.25rem;
  position: relative;
}
@media (max-width: 991px) {
  .main-footer-bottom .fcw-outer-link {
    margin: 0 auto;
  }
}
.main-footer-bottom .fcw-outer-link span {
  color: #F7F0E3;
}
.main-footer-bottom .fcw-outer-item {
  color: #F7F0E3;
  font-size: 0.69rem;
  line-height: 2rem;
  text-decoration: none;
  font-weight: 400;
}
.main-footer-bottom .fcw-outer-item.copyrights {
  display: block;
  width: 100%;
}
.main-footer-bottom .logo-strip-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 2rem 0;
}
.main-footer-bottom .logo-image {
  display: block;
  width: 16.6666666667%;
}
@media (max-width: 1439px) {
  .main-footer-bottom .logo-image {
    width: 25%;
    margin-bottom: 1.38rem;
  }
}
@media (max-width: 767px) {
  .main-footer-bottom .logo-image {
    width: 33.3333333333%;
    margin-bottom: 1.38rem;
  }
}
@media (max-width: 479px) {
  .main-footer-bottom .logo-image {
    width: 100%;
    margin-bottom: 1.38rem;
    text-align: center;
  }
}

.bgt-shape {
  pointer-events: none;
  position: absolute;
  top: var(--top);
  bottom: var(--bottom);
  left: var(--left);
  right: var(--right);
  max-width: var(--mxwidth);
}

@media (max-width: 991px) {
  .experienced-team .bgt-shape {
    bottom: 90% !important;
  }
}

.overflow-hidden {
  overflow: hidden;
}

.panel-intro {
  margin-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .panel-intro {
    margin-bottom: 2rem;
  }
}
.panel-intro-desc {
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .panel-intro-desc {
    font-size: 1rem;
  }
}
.panel-intro-content {
  max-width: 39.63rem;
  display: inline-block;
}
.panel-intro .s-half {
  margin-bottom: 2rem;
}
.panel-intro .s-quater {
  margin-bottom: 1rem;
}
.panel-intro .fi-img {
  max-width: 9.82rem;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .panel-intro .fi-img {
    max-width: 5.32rem;
    margin: 0 auto 1rem;
  }
}
@media (max-width: 479px) {
  .panel-intro {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .panel-intro h5.font-lato {
    font-size: 1.38rem;
  }
}

.panel-intro-s2 {
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  z-index: 99;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 991px) {
  .panel-intro-s2 {
    padding-bottom: 2rem;
  }
}
.panel-intro-s2-desc {
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .panel-intro-s2-desc {
    font-size: 1rem;
  }
}
.panel-intro-s2-content {
  max-width: 39.63rem;
  display: inline-block;
}
.panel-intro-s2 .s-half {
  margin-bottom: 2rem;
}
.panel-intro-s2 .s-quater {
  margin-bottom: 1rem;
}
.panel-intro-s2 .fi-img {
  max-width: 9.82rem;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .panel-intro-s2 .fi-img {
    max-width: 5.32rem;
    margin: 0 auto 1rem;
  }
}

.panel-intro-s3 {
  text-align: center;
  position: relative;
  z-index: 99;
}
.panel-intro-s3-desc {
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .panel-intro-s3-desc {
    font-size: 1rem;
  }
}
.panel-intro-s3-content {
  max-width: 39.63rem;
  display: inline-block;
}
.panel-intro-s3 .s-half {
  margin-bottom: 2rem;
}
.panel-intro-s3 .s-quater {
  margin-bottom: 1rem;
}
.panel-intro-s3 .fi-img {
  max-width: 9.82rem;
  margin: 0 auto 1rem;
}
@media (max-width: 767px) {
  .panel-intro-s3 .fi-img {
    max-width: 5.32rem;
    margin: 0 auto 1rem;
  }
}

.page-intro {
  margin-bottom: 0;
}

.page-banner {
  position: relative;
}
@media (max-width: 991px) {
  .page-banner .spa-banner-swiper {
    height: 100vh;
  }
}
@media (max-width: 991px) {
  .page-banner.top-align-banner img {
    -o-object-position: top;
       object-position: top;
  }
}
@media (max-width: 479px) {
  .page-banner.home-banner-mobile .aspect-ratio {
    min-height: 16rem;
  }
}
.page-banner .pb-img,
.page-banner .hs-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-banner .pb-caption,
.page-banner .hs-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  z-index: 9;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner .pb-caption.overlay-bg,
.page-banner .hs-caption.overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-banner .pb-caption.overlay-bg h1,
.page-banner .hs-caption.overlay-bg h1 {
  font-size: 3.75rem;
}
.page-banner .pb-caption.overlay-bg h1 span,
.page-banner .hs-caption.overlay-bg h1 span {
  line-height: 6.25rem;
  margin-bottom: 1.88rem;
}
@media (max-width: 991px) {
  .page-banner .pb-caption.overlay-bg h1 span,
  .page-banner .hs-caption.overlay-bg h1 span {
    margin-bottom: 0rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption.overlay-bg h1 span,
  .page-banner .hs-caption.overlay-bg h1 span {
    line-height: 4.69rem;
  }
}
@media (max-width: 991px) {
  .page-banner .pb-caption.overlay-bg h1,
  .page-banner .hs-caption.overlay-bg h1 {
    font-size: 2.19rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption.overlay-bg h1,
  .page-banner .hs-caption.overlay-bg h1 {
    font-size: 1.5rem;
  }
}
.page-banner .pb-caption h1,
.page-banner .hs-caption h1 {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
}
.page-banner .pb-caption span,
.page-banner .hs-caption span {
  line-height: 3.75rem;
}
.page-banner .pb-caption .title-60 h1,
.page-banner .hs-caption .title-60 h1 {
  font-size: 3.75rem;
}
.page-banner .pb-caption.large h1,
.page-banner .hs-caption.large h1 {
  margin-bottom: 0;
  display: inline-block;
  text-align: left;
  font-size: 5.63rem;
  line-height: 7.5rem;
}
@media (max-width: 991px) {
  .page-banner .pb-caption.large h1,
  .page-banner .hs-caption.large h1 {
    font-size: 2.63rem;
    line-height: 4.88rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption.large h1,
  .page-banner .hs-caption.large h1 {
    font-size: 1.75rem;
    line-height: 2.63rem;
  }
}
.page-banner .pb-caption.large h1 span,
.page-banner .hs-caption.large h1 span {
  font-family: "Playfair Display", "Arial", sans-serif;
  display: block;
  font-size: 3.75rem;
  line-height: 5rem;
}
@media (max-width: 991px) {
  .page-banner .pb-caption.large h1 span,
  .page-banner .hs-caption.large h1 span {
    font-size: 1.75rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption.large h1 span,
  .page-banner .hs-caption.large h1 span {
    font-size: 1.75rem;
    line-height: 2.63rem;
  }
}
.page-banner .pb-caption.large.center h1,
.page-banner .hs-caption.large.center h1 {
  text-align: center;
}
.page-banner .pb-caption .fancy-title-wrap,
.page-banner .hs-caption .fancy-title-wrap {
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1439px) {
  .page-banner .pb-caption .fancy-title-wrap,
  .page-banner .hs-caption .fancy-title-wrap {
    max-width: 33.75rem;
  }
}
@media (max-width: 767px) {
  .page-banner .pb-caption .fancy-title-wrap,
  .page-banner .hs-caption .fancy-title-wrap {
    max-width: 27.5rem;
  }
}
.page-banner .pb-caption .fancy-title-wrap.small-title,
.page-banner .hs-caption .fancy-title-wrap.small-title {
  align-items: center;
}
@media (max-width: 767px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title,
  .page-banner .hs-caption .fancy-title-wrap.small-title {
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title,
  .page-banner .hs-caption .fancy-title-wrap.small-title {
    max-width: 20rem;
    align-items: flex-start;
  }
}
.page-banner .pb-caption .fancy-title-wrap.small-title h1,
.page-banner .hs-caption .fancy-title-wrap.small-title h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 479px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title h1,
  .page-banner .hs-caption .fancy-title-wrap.small-title h1 {
    text-align: center;
  }
}
.page-banner .pb-caption .fancy-title-wrap.small-title h1 .fancy-font,
.page-banner .hs-caption .fancy-title-wrap.small-title h1 .fancy-font {
  font-size: 6.25rem;
  margin-left: 100%;
  font-size: 6.25rem;
  margin-top: -1.5rem;
}
@media (max-width: 1439px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title h1 .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap.small-title h1 .fancy-font {
    font-size: 4.38rem;
  }
}
@media (max-width: 767px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title h1 .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap.small-title h1 .fancy-font {
    margin-left: 0;
    font-size: 3.75rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption .fancy-title-wrap.small-title h1 .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap.small-title h1 .fancy-font {
    margin: 0 auto;
    font-size: 3.13rem;
  }
}
.page-banner .pb-caption .fancy-title-wrap h1,
.page-banner .hs-caption .fancy-title-wrap h1 {
  font-size: 3.75rem;
}
@media (max-width: 1439px) {
  .page-banner .pb-caption .fancy-title-wrap h1,
  .page-banner .hs-caption .fancy-title-wrap h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .page-banner .pb-caption .fancy-title-wrap h1,
  .page-banner .hs-caption .fancy-title-wrap h1 {
    font-size: 1.88rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption .fancy-title-wrap h1,
  .page-banner .hs-caption .fancy-title-wrap h1 {
    font-size: 1.38rem;
  }
}
.page-banner .pb-caption .fancy-title-wrap .fancy-font,
.page-banner .hs-caption .fancy-title-wrap .fancy-font {
  color: inherit;
  margin-left: auto;
  display: flex;
  line-height: 4.38rem;
  padding-left: 0;
}
@media (max-width: 1439px) {
  .page-banner .pb-caption .fancy-title-wrap .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap .fancy-font {
    font-size: 3.75rem;
  }
}
@media (max-width: 767px) {
  .page-banner .pb-caption .fancy-title-wrap .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap .fancy-font {
    font-size: 3.75rem;
    margin-top: -1.87rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-caption .fancy-title-wrap .fancy-font,
  .page-banner .hs-caption .fancy-title-wrap .fancy-font {
    font-size: 35px;
    margin-top: -20px;
    margin-right: auto;
  }
}
.page-banner .pb-container,
.page-banner .hs-container {
  padding-top: 3.13rem;
  position: relative;
}
@media (max-width: 767px) {
  .page-banner .pb-container,
  .page-banner .hs-container {
    padding-top: 20px;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-container .responsive-fixed-height,
  .page-banner .hs-container .responsive-fixed-height {
    height: 18.75rem;
  }
}
.page-banner .pb-highlight-text, .page-banner .pb-textwrap,
.page-banner .hs-highlight-text,
.page-banner .hs-textwrap {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  padding-top: 2rem;
  color: #ffffff;
  min-height: 11.25rem;
  height: 100%;
}
@media (max-width: 767px) {
  .page-banner .pb-highlight-text,
  .page-banner .hs-highlight-text {
    min-height: unset;
  }
}
.page-banner .pb-text-container, .page-banner .pb-textcontainer,
.page-banner .hs-text-container,
.page-banner .hs-textcontainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1439px) {
  .page-banner .pb-text-container .btn, .page-banner .pb-textcontainer .btn,
  .page-banner .hs-text-container .btn,
  .page-banner .hs-textcontainer .btn {
    margin-top: 2.5rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-text-container .btn, .page-banner .pb-textcontainer .btn,
  .page-banner .hs-text-container .btn,
  .page-banner .hs-textcontainer .btn {
    margin-top: 0.63rem;
  }
}
@media (max-width: 991px) {
  .page-banner .pb-text-container, .page-banner .pb-textcontainer,
  .page-banner .hs-text-container,
  .page-banner .hs-textcontainer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.page-banner .pb-text-variant, .page-banner .pb-textvariant,
.page-banner .hs-text-variant,
.page-banner .hs-textvariant {
  font-size: 4.5rem;
  margin-left: 0.32rem;
  margin-right: 0.32rem;
}
@media (max-width: 991px) {
  .page-banner .pb-text-variant, .page-banner .pb-textvariant,
  .page-banner .hs-text-variant,
  .page-banner .hs-textvariant {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  .page-banner .pb-text-variant, .page-banner .pb-textvariant,
  .page-banner .hs-text-variant,
  .page-banner .hs-textvariant {
    font-size: 1.32rem;
    line-height: 2.5rem;
  }
}
.page-banner .pb-btn-wrap,
.page-banner .hs-btn-wrap {
  align-items: center;
  display: flex;
}
.page-banner.small-banner.top-aligned .top-aligned-image img {
  -o-object-position: top;
     object-position: top;
}
.page-banner.small-banner.center-aligned .center-aligned-image img {
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 767px) {
  .page-banner.small-banner .aspect-ratio {
    height: 22.5rem;
  }
}
@media (max-width: 479px) {
  .page-banner.small-banner .aspect-ratio {
    height: 10rem;
  }
}
@media (max-width: 767px) {
  .page-banner.small-banner .pb-caption {
    top: 0;
  }
}
.page-banner.small-banner .pb-caption.top-0 {
  top: 0;
}
@media (max-width: 991px) {
  .page-banner.small-banner .pb-caption h1 {
    font-size: 2.75rem;
  }
}
.page-banner.small-banner .pb-caption h1 span {
  font-size: 3.75rem;
  line-height: 4.38rem;
}
@media (max-width: 767px) {
  .page-banner.small-banner .pb-caption h1 span {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .page-banner.small-banner .pb-caption {
    padding-top: 0;
  }
  .page-banner.small-banner .pb-caption h1 {
    margin-bottom: 0;
  }
}

.page-text-banner {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 991px) {
  .page-text-banner {
    padding: 0 !important;
  }
  .page-text-banner.page-banner {
    margin-top: 5rem;
  }
}
.page-text-banner.page-banner-secondary {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-text-banner .container-1440 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .page-text-banner .container-1440 {
    flex-direction: column;
  }
}
.page-text-banner .ptb-wrapper {
  margin: 8rem auto;
  padding-right: 3.75rem;
}
@media (max-width: 1439px) {
  .page-text-banner .ptb-wrapper.moveY {
    margin-top: -15%;
  }
}
@media (max-width: 991px) {
  .page-text-banner .ptb-wrapper.moveY {
    margin-top: 0;
  }
}
.page-text-banner .ptb-title-block {
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
@media (max-width: 991px) {
  .page-text-banner .ptb-title-block {
    color: #8F3533;
  }
}
.page-text-banner .ptb-title-block h1 {
  font-size: 3.75rem;
  line-height: 4.38rem;
}
@media (max-width: 991px) {
  .page-text-banner .ptb-title-block h1 {
    color: inherit;
    font-size: 2rem;
    line-height: 2.63rem;
  }
}
@media (max-width: 479px) {
  .page-text-banner .ptb-title-block h1 {
    font-size: 2.5rem;
    line-height: 3.13rem;
  }
}
.page-text-banner .ptb-title-block span {
  font-size: 6.25rem;
  line-height: 5.63rem;
  display: block;
  margin-left: 21%;
  margin-top: -7%;
  width: 100%;
}
@media (max-width: 991px) {
  .page-text-banner .ptb-title-block span {
    margin-top: 0;
    margin-left: 0;
    color: inherit;
    font-size: 5rem;
    line-height: 2.63rem;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .page-text-banner .ptb-title-block span {
    font-size: 3.75rem;
    line-height: 1.38rem;
    margin-left: 0%;
    margin-top: 0;
  }
}

.no-image-banner-forest {
  background-color: #24402A;
}

.font-90 {
  font-size: 5.63rem;
  line-height: 6.88rem;
}

.hs-secondary h2 {
  display: inline-block;
  text-align: center;
  margin-bottom: 3.13rem;
}
@media (max-width: 767px) {
  .hs-secondary h2 {
    margin-bottom: 1.88rem;
  }
}
.hs-secondary h2 span {
  display: inline-block;
  margin: 0 0.63rem;
  font-size: 4.5rem;
  line-height: 7.5rem;
}
@media (max-width: 479px) {
  .hs-secondary h2 span {
    font-size: 2.25rem;
    line-height: 5.32rem;
  }
}
.hs-secondary-btn-wrap .btn {
  color: #70940C;
  background-color: #F7F0E3;
}
.hs-secondary-btn-wrap .btn:hover, .hs-secondary-btn-wrap .btn:focus {
  background-color: #8F3533;
  color: #ffffff;
}

@media (min-width: 1400px) {
  .rates-highlighted.highlighted-strip .bgt-shape {
    max-width: 25% !important;
  }
}
.rates-highlighted.highlighted-strip .hs-textcontainer h3 {
  margin-left: 10%;
  line-height: 4.69rem;
  font-size: 2.38rem;
}

.overflow-hidden {
  overflow: hidden;
}

@media (min-width: 1140px) {
  .highlight-cta-full .rates-highlighted .bgt-shape {
    max-width: 25% !important;
  }
}
.highlight-cta-full .rates-highlighted .hs-textcontainer .row {
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}
.highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text {
  max-width: 65%;
  flex-basis: 65%;
  margin-left: auto;
}
@media (max-width: 1439px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text {
    max-width: 70%;
    flex-basis: 70%;
  }
}
@media (max-width: 991px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text {
    max-width: 100%;
    flex-basis: 100%;
    margin-left: 0;
  }
}
.highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 {
  line-height: 4.69rem;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 991px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 {
    font-size: 1.13rem;
    line-height: 2rem;
  }
}
.highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 span {
  font-size: 4.5rem;
  line-height: 4.69rem;
}
@media (max-width: 1439px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 span {
    font-size: 2.75rem;
    line-height: 3.13rem;
  }
}
@media (max-width: 767px) {
  .highlight-cta-full .rates-highlighted .hs-textcontainer .highlightCta-text h3 span {
    font-size: 1.13rem;
    line-height: 2rem;
  }
}
@media (max-width: 991px) {
  .highlight-cta-full .rates-highlighted .pb-btn-wrap {
    justify-content: center;
    width: 100%;
  }
}
.highlight-cta-full .rates-highlighted .pb-btn-wrap .btn {
  margin-top: 0;
  align-items: center;
  min-width: auto;
}
@media (max-width: 767px) {
  .highlight-cta-full .rates-highlighted .pb-btn-wrap .btn {
    margin-top: 0.94rem;
    padding: 0.63rem 0.94rem;
    font-size: 0.88rem;
  }
}

.primary-slider-navigation .swiper-button-next,
.primary-slider-navigation .swiper-button-prev,
.secondary-slider-navigation .swiper-button-next,
.secondary-slider-navigation .swiper-button-prev,
.secondary-arrows .swiper-button-next,
.secondary-arrows .swiper-button-prev,
.forest-swiper .swiper-button-next,
.forest-swiper .swiper-button-prev,
.forest-light-swiper .swiper-button-next,
.forest-light-swiper .swiper-button-prev,
.primary-swiper .swiper-button-next,
.primary-swiper .swiper-button-prev {
  height: 6.63rem;
  width: 6.63rem;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  background-color: rgba(143, 53, 51, 0.75);
  top: 45%;
}
.primary-slider-navigation .swiper-button-next .icon-primary-arrow,
.primary-slider-navigation .swiper-button-prev .icon-primary-arrow,
.secondary-slider-navigation .swiper-button-next .icon-primary-arrow,
.secondary-slider-navigation .swiper-button-prev .icon-primary-arrow,
.secondary-arrows .swiper-button-next .icon-primary-arrow,
.secondary-arrows .swiper-button-prev .icon-primary-arrow,
.forest-swiper .swiper-button-next .icon-primary-arrow,
.forest-swiper .swiper-button-prev .icon-primary-arrow,
.forest-light-swiper .swiper-button-next .icon-primary-arrow,
.forest-light-swiper .swiper-button-prev .icon-primary-arrow,
.primary-swiper .swiper-button-next .icon-primary-arrow,
.primary-swiper .swiper-button-prev .icon-primary-arrow {
  display: flex;
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .primary-slider-navigation .swiper-button-next .icon-primary-arrow,
  .primary-slider-navigation .swiper-button-prev .icon-primary-arrow,
  .secondary-slider-navigation .swiper-button-next .icon-primary-arrow,
  .secondary-slider-navigation .swiper-button-prev .icon-primary-arrow,
  .secondary-arrows .swiper-button-next .icon-primary-arrow,
  .secondary-arrows .swiper-button-prev .icon-primary-arrow,
  .forest-swiper .swiper-button-next .icon-primary-arrow,
  .forest-swiper .swiper-button-prev .icon-primary-arrow,
  .forest-light-swiper .swiper-button-next .icon-primary-arrow,
  .forest-light-swiper .swiper-button-prev .icon-primary-arrow,
  .primary-swiper .swiper-button-next .icon-primary-arrow,
  .primary-swiper .swiper-button-prev .icon-primary-arrow {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .primary-slider-navigation .swiper-button-next,
  .primary-slider-navigation .swiper-button-prev,
  .secondary-slider-navigation .swiper-button-next,
  .secondary-slider-navigation .swiper-button-prev,
  .secondary-arrows .swiper-button-next,
  .secondary-arrows .swiper-button-prev,
  .forest-swiper .swiper-button-next,
  .forest-swiper .swiper-button-prev,
  .forest-light-swiper .swiper-button-next,
  .forest-light-swiper .swiper-button-prev,
  .primary-swiper .swiper-button-next,
  .primary-swiper .swiper-button-prev {
    height: 3.32rem;
    width: 3.32rem;
  }
}
.primary-slider-navigation .swiper-button-next:after,
.primary-slider-navigation .swiper-button-prev:after,
.secondary-slider-navigation .swiper-button-next:after,
.secondary-slider-navigation .swiper-button-prev:after,
.secondary-arrows .swiper-button-next:after,
.secondary-arrows .swiper-button-prev:after,
.forest-swiper .swiper-button-next:after,
.forest-swiper .swiper-button-prev:after,
.forest-light-swiper .swiper-button-next:after,
.forest-light-swiper .swiper-button-prev:after,
.primary-swiper .swiper-button-next:after,
.primary-swiper .swiper-button-prev:after {
  content: none;
}
.primary-slider-navigation .swiper-button-prev,
.secondary-slider-navigation .swiper-button-prev,
.secondary-arrows .swiper-button-prev,
.forest-swiper .swiper-button-prev,
.forest-light-swiper .swiper-button-prev,
.primary-swiper .swiper-button-prev {
  transform: rotate(180deg);
}

.secondary-arrows .swiper-button-next,
.secondary-arrows .swiper-button-prev {
  background-color: rgba(112, 148, 12, 0.75);
}

.forest-swiper .swiper-button-next,
.forest-swiper .swiper-button-prev,
.style-forest .swiper-button-next,
.style-forest .swiper-button-prev {
  background-color: rgba(36, 64, 42, 0.75);
}

.secondary-slider-navigation .swiper-button-next,
.secondary-slider-navigation .swiper-button-prev {
  background-color: rgba(36, 64, 42, 0.75);
}

.forest-light-swiper .swiper-button-next,
.forest-light-swiper .swiper-button-prev {
  background-color: rgba(36, 64, 42, 0.2);
  top: 50%;
}
@media (max-width: 767px) {
  .forest-light-swiper .swiper-button-next,
  .forest-light-swiper .swiper-button-prev {
    top: 60%;
  }
}

.navigation-wrapper,
.tab-gallery-nav-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.63rem;
}
@media (max-width: 991px) {
  .navigation-wrapper,
  .tab-gallery-nav-wrapper {
    height: 2.5rem;
  }
}
.navigation-wrapper.primary-slider-navigation .sc-pagination,
.tab-gallery-nav-wrapper.primary-slider-navigation .sc-pagination {
  position: relative !important;
  height: 5.63rem !important;
  margin: 0 !important;
  order: 2;
  bottom: 0;
}
@media (max-width: 991px) {
  .navigation-wrapper.primary-slider-navigation .sc-pagination,
  .tab-gallery-nav-wrapper.primary-slider-navigation .sc-pagination {
    order: 2 !important;
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  .navigation-wrapper.primary-slider-navigation .sc-pagination .swiper-pagination-bullet,
  .tab-gallery-nav-wrapper.primary-slider-navigation .sc-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.navigation-wrapper.primary-slider-navigation .swiper-button-next,
.navigation-wrapper.primary-slider-navigation .swiper-button-prev,
.tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-next,
.tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-prev {
  margin: 0;
  top: initial;
  left: 0;
  right: 0;
  position: relative;
  height: 5.63rem;
  width: 5.25rem;
  border-radius: 0;
  background-color: rgba(194, 128, 93, 0.75);
}
.navigation-wrapper.primary-slider-navigation .swiper-button-prev,
.tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-prev {
  order: 1;
}
@media (max-width: 991px) {
  .navigation-wrapper.primary-slider-navigation .swiper-button-prev,
  .tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-prev {
    order: 1;
    height: 100%;
  }
}
.navigation-wrapper.primary-slider-navigation .swiper-button-next,
.tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-next {
  order: 3;
}
@media (max-width: 991px) {
  .navigation-wrapper.primary-slider-navigation .swiper-button-next,
  .tab-gallery-nav-wrapper.primary-slider-navigation .swiper-button-next {
    order: 3;
    height: 100%;
  }
}

.secondary-slider-navigation .sc-pagination {
  order: 2;
  position: relative !important;
  height: 5.63rem !important;
  margin: 0 !important;
  background-color: rgba(36, 64, 42, 0.75);
}
@media (max-width: 991px) {
  .secondary-slider-navigation .sc-pagination {
    height: 100% !important;
    order: 2 !important;
  }
}
@media (max-width: 767px) {
  .secondary-slider-navigation .sc-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.secondary-slider-navigation .sc-pagination .swiper-pagination-bullet:after {
  border: 2px solid transparent;
}
.secondary-slider-navigation .swiper-button-next,
.secondary-slider-navigation .swiper-button-prev {
  margin: 0;
  top: initial;
  position: relative;
  height: 5.63rem;
  width: 5.25rem;
  border-radius: 0;
  background-color: rgba(10, 93, 126, 0.75);
}
@media (max-width: 991px) {
  .secondary-slider-navigation .swiper-button-next,
  .secondary-slider-navigation .swiper-button-prev {
    height: 100% !important;
  }
}
.secondary-slider-navigation .swiper-button-prev {
  order: 1 !important;
  left: 0;
}
.secondary-slider-navigation .swiper-button-next {
  order: 3 !important;
  right: 0;
}

@media (max-width: 479px) {
  .aspect-ratio.h-sm-320 {
    min-height: 20rem;
  }
}

.latest-posts-card {
  padding: 5.25rem 4.63rem;
}
@media (max-width: 767px) {
  .latest-posts-card {
    padding: 2.75rem 2.13rem;
  }
}
@media (max-width: 479px) {
  .latest-posts-card {
    padding: 1.5rem 0.88rem;
  }
}
.latest-posts-card .lpc-post {
  padding: 0 0.94rem;
}
.latest-posts-card .lpc-inner-content {
  padding: 1.88rem 0.63rem;
}
.latest-posts-card .lpc-image {
  position: relative;
  display: block;
}
.latest-posts-card .lpc-overlay {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.88rem 0.94rem;
  background-color: rgba(112, 148, 12, 0.7);
}
@media (max-width: 767px) {
  .latest-posts-card .lpc-overlay {
    padding: 0.94rem;
  }
}
.latest-posts-card .lpc-overlay h3,
.latest-posts-card .lpc-overlay .h3 {
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 0;
}
.latest-posts-card .lpc-icon {
  max-width: 2.38rem;
  margin-right: 0.94rem;
}
.latest-posts-card .lpc-date {
  margin: 0 0 0.5rem 0;
}
.latest-posts-card .lpc-title-wrap {
  color: #423718;
  text-decoration: none;
}
.latest-posts-card .lpc-title {
  font-size: 1.38rem;
  line-height: 1.38rem;
  margin: 0 0 1.5rem 0;
}

.no-scroll {
  height: 100%;
  overflow: hidden;
}

@media (max-width: 767px) {
  .enquiry-form,
  .info-form {
    padding: 0;
  }
}
.enquiry-form .enq-label,
.info-form .enq-label {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #24402A;
  font-weight: bold;
  text-transform: capitalize;
}
.enquiry-form .enq-form-elements,
.info-form .enq-form-elements {
  margin-bottom: 1.13rem;
}
.enquiry-form .radio-btn-wrap,
.info-form .radio-btn-wrap {
  display: inline-flex;
  align-items: center;
  width: 45%;
}
@media (max-width: 479px) {
  .enquiry-form .radio-btn-wrap,
  .info-form .radio-btn-wrap {
    width: 40%;
  }
}
.enquiry-form .radio-btn-wrap.t-and-c,
.info-form .radio-btn-wrap.t-and-c {
  width: 100%;
}
.enquiry-form .radio-btn-wrap .round-radio,
.info-form .radio-btn-wrap .round-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.enquiry-form .radio-btn-wrap .round-radio input[type=radio],
.enquiry-form .radio-btn-wrap .round-radio input[type=checkbox],
.info-form .radio-btn-wrap .round-radio input[type=radio],
.info-form .radio-btn-wrap .round-radio input[type=checkbox] {
  opacity: 0;
  position: absolute;
  box-sizing: border-box;
  padding: 0;
}
.enquiry-form .radio-btn-wrap .round-radio input[type=radio]:checked + .round-radio-button,
.enquiry-form .radio-btn-wrap .round-radio input[type=checkbox]:checked + .round-radio-button,
.info-form .radio-btn-wrap .round-radio input[type=radio]:checked + .round-radio-button,
.info-form .radio-btn-wrap .round-radio input[type=checkbox]:checked + .round-radio-button {
  border: 1px solid #70940C;
}
.enquiry-form .radio-btn-wrap .round-radio input[type=radio]:checked + .round-radio-button:after,
.enquiry-form .radio-btn-wrap .round-radio input[type=checkbox]:checked + .round-radio-button:after,
.info-form .radio-btn-wrap .round-radio input[type=radio]:checked + .round-radio-button:after,
.info-form .radio-btn-wrap .round-radio input[type=checkbox]:checked + .round-radio-button:after {
  opacity: 1;
  visibility: visible;
}
.enquiry-form .radio-btn-wrap .round-radio input,
.info-form .radio-btn-wrap .round-radio input {
  font-size: 1rem;
  line-height: 1.5;
  padding: 11px 23px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  outline: 0;
  background-color: transparent;
}
.enquiry-form .radio-btn-wrap .round-radio-label,
.info-form .radio-btn-wrap .round-radio-label {
  color: #24402A;
}
.enquiry-form .radio-btn-wrap .round-radio-button,
.info-form .radio-btn-wrap .round-radio-button {
  position: relative;
  display: block;
  height: 1.57rem;
  min-height: 1.57rem;
  width: 1.57rem;
  min-width: 1.57rem;
  border-radius: 50%;
  border: 1px solid #B8BEB9;
  margin-right: 0.75rem;
}
.enquiry-form .radio-btn-wrap .round-radio-button:after,
.info-form .radio-btn-wrap .round-radio-button:after {
  content: "";
  display: block;
  position: absolute;
  width: 0.88rem;
  height: 0.88rem;
  background-color: #70940C;
  border-radius: 50%;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
}
.enquiry-form .radio-btn-wrap.square-radio,
.info-form .radio-btn-wrap.square-radio {
  width: 100%;
}
.enquiry-form .radio-btn-wrap.square-radio .round-radio-button,
.info-form .radio-btn-wrap.square-radio .round-radio-button {
  border-radius: 0.19rem;
  border: 1px solid rgba(36, 64, 42, 0.2);
}
.enquiry-form .radio-btn-wrap.square-radio .round-radio-button:after,
.info-form .radio-btn-wrap.square-radio .round-radio-button:after {
  display: inline-block;
  height: 0.94rem;
  width: 0.38rem;
  margin: 0 auto;
  transform: rotate(38deg);
  border-bottom: 0.13rem solid #70940C;
  border-right: 0.13rem solid #70940C;
  background-color: transparent;
  border-radius: 0;
}
.enquiry-form input,
.enquiry-form textarea,
.info-form input,
.info-form textarea {
  border: 1px solid #B8BEB9;
  border-radius: 0.25rem;
}
.enquiry-popup-block,
.info-popup-block {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  background-color: #F7F0E3;
  transform: scale(0);
  transition: 0.6s;
}
.enquiry-popup-block.is-visible,
.info-popup-block.is-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
@media (max-width: 767px) {
  .enquiry-popup-block,
  .info-popup-block {
    z-index: 9999;
  }
}
.enquiry-popup-block .epb-wrapper,
.enquiry-popup-block .ipb-wrapper,
.info-popup-block .epb-wrapper,
.info-popup-block .ipb-wrapper {
  position: relative;
  height: calc(100% - 135px);
  overflow-y: scroll;
  padding: 0 0 2rem;
  margin-top: 6.88rem;
}
@media (max-width: 767px) {
  .enquiry-popup-block .epb-wrapper,
  .enquiry-popup-block .ipb-wrapper,
  .info-popup-block .epb-wrapper,
  .info-popup-block .ipb-wrapper {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .enquiry-popup-block .epb-wrapper .bgt-shape-1,
  .enquiry-popup-block .ipb-wrapper .bgt-shape-1,
  .info-popup-block .epb-wrapper .bgt-shape-1,
  .info-popup-block .ipb-wrapper .bgt-shape-1 {
    top: 0 !important;
    max-width: 40% !important;
  }
}
@media (max-width: 767px) {
  .enquiry-popup-block .epb-wrapper .bgt-shape-2,
  .enquiry-popup-block .ipb-wrapper .bgt-shape-2,
  .info-popup-block .epb-wrapper .bgt-shape-2,
  .info-popup-block .ipb-wrapper .bgt-shape-2 {
    top: 150% !important;
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .enquiry-popup-block .epb-wrapper .bgt-shape-2,
  .enquiry-popup-block .ipb-wrapper .bgt-shape-2,
  .info-popup-block .epb-wrapper .bgt-shape-2,
  .info-popup-block .ipb-wrapper .bgt-shape-2 {
    top: 130% !important;
    max-width: 80% !important;
  }
}
.enquiry-popup-block .epb-container,
.enquiry-popup-block .ipb-container,
.info-popup-block .epb-container,
.info-popup-block .ipb-container {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
  z-index: 9;
}
.enquiry-popup-block .epb-container > h2,
.enquiry-popup-block .ipb-container > h2,
.info-popup-block .epb-container > h2,
.info-popup-block .ipb-container > h2 {
  margin-bottom: 0;
  width: 100%;
  display: inline-block;
}
@media (max-width: 479px) {
  .enquiry-popup-block .epb-container > h2,
  .enquiry-popup-block .ipb-container > h2,
  .info-popup-block .epb-container > h2,
  .info-popup-block .ipb-container > h2 {
    font-size: 1.5rem;
  }
}
.enquiry-popup-block .epb-mobile-header,
.enquiry-popup-block .ipb-mobile-header,
.info-popup-block .epb-mobile-header,
.info-popup-block .ipb-mobile-header {
  padding: 1.25rem 1.57rem;
  background-color: #ffffff;
  align-items: center;
}
.enquiry-popup-block .epb-mobile-header .mh-brand,
.enquiry-popup-block .ipb-mobile-header .mh-brand,
.info-popup-block .epb-mobile-header .mh-brand,
.info-popup-block .ipb-mobile-header .mh-brand {
  margin: 0 auto;
  max-width: 15.63rem;
}
@media (max-width: 479px) {
  .enquiry-popup-block .epb-mobile-header .mh-brand,
  .enquiry-popup-block .ipb-mobile-header .mh-brand,
  .info-popup-block .epb-mobile-header .mh-brand,
  .info-popup-block .ipb-mobile-header .mh-brand {
    max-width: 11.25rem;
  }
}
.enquiry-popup-block .back-cta-wrap,
.info-popup-block .back-cta-wrap {
  flex-wrap: wrap;
  align-items: center;
  font-size: 1.13rem;
  line-height: 1.5rem;
  text-decoration: none;
  z-index: 999;
}
@media (min-width: 768px) {
  .enquiry-popup-block .back-cta-wrap,
  .info-popup-block .back-cta-wrap {
    position: absolute;
    top: 6.25rem;
    left: calc(15% - 66px);
  }
}
@media (max-width: 1439px) {
  .enquiry-popup-block .back-cta-wrap,
  .info-popup-block .back-cta-wrap {
    left: calc(10% - 66px);
  }
}
@media (max-width: 479px) {
  .enquiry-popup-block .back-cta-wrap,
  .info-popup-block .back-cta-wrap {
    flex-direction: column;
  }
}
.enquiry-popup-block .back-cta-wrap img,
.info-popup-block .back-cta-wrap img {
  display: block;
  margin-right: 0.5rem;
  width: 1.82rem;
}
.enquiry-popup-block .back-cta-wrap span,
.info-popup-block .back-cta-wrap span {
  text-decoration: underline;
  text-transform: capitalize;
}
.enquiry-popup-block .card,
.info-popup-block .card {
  background-color: #ffffff;
  padding: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .enquiry-popup-block .card,
  .info-popup-block .card {
    padding: 1.57rem 0;
    margin-bottom: 2.5rem;
  }
  .enquiry-popup-block .card .row,
  .info-popup-block .card .row {
    margin: 0;
  }
}
.enquiry-popup-block .card-title,
.info-popup-block .card-title {
  display: inline-block;
  margin-bottom: 0;
  padding: 0 2.5rem 0 0;
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.75rem;
  color: #212B1A;
}
.enquiry-popup-block .card .form-header-wrap,
.info-popup-block .card .form-header-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.88rem;
}
@media (max-width: 767px) {
  .enquiry-popup-block .card .form-header-wrap,
  .info-popup-block .card .form-header-wrap {
    padding: 0 2rem;
    margin-bottom: 0.63rem;
  }
}
.enquiry-popup-block .card .form-error-msg,
.info-popup-block .card .form-error-msg {
  color: #ED0000;
  font-size: 0.88rem;
  display: inline-block;
}
.enquiry-popup-block .card-header-wrap,
.info-popup-block .card-header-wrap {
  margin-bottom: 1.88rem;
}
@media (max-width: 767px) {
  .enquiry-popup-block .card-header-wrap,
  .info-popup-block .card-header-wrap {
    margin-bottom: 0.63rem;
    padding-left: 2rem;
  }
}
.enquiry-popup-block .card input.invalid,
.info-popup-block .card input.invalid {
  color: #ED0000;
  border-color: #ED0000;
}
.enquiry-popup-block .card input.invalid::-moz-placeholder, .info-popup-block .card input.invalid::-moz-placeholder {
  color: #ED0000;
}
.enquiry-popup-block .card input.invalid::placeholder,
.info-popup-block .card input.invalid::placeholder {
  color: #ED0000;
}

.select2-container {
  width: 100% !important;
}
.select2-container--open .select2-selection__arrow b {
  border-width: 0.69rem 0.5rem 0 0.5rem;
  border-color: #70940C transparent transparent;
}
.select2-container--default .select2-selection--single {
  height: 2.63rem;
  display: flex;
  align-items: center;
}
.select2-container--default .select2-selection .select2-selection__arrow {
  height: 100%;
  right: 0.63rem;
  top: -0.18rem;
}
.select2-container--default .select2-selection .select2-selection__arrow b {
  border-width: 0.69rem 0.5rem 0 0.5rem;
  border-color: #70940C transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0.63rem;
  top: -0.18rem;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-width: 0 0.5rem 0.69rem 0.5rem !important;
  border-color: transparent transparent #70940C !important;
}

.contact-wrap {
  height: 100%;
  padding: 2.5rem 3.13rem;
  background-color: #F7F0E3;
}
@media (max-width: 1439px) {
  .contact-wrap {
    padding: 2.5rem 1.88rem;
  }
}
.contact-wrap-title {
  color: #24402A;
  font-family: "Lato", "Arial", sans-serif;
}
.contact-block, .contact-timing-block {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact-block, .contact-timing-block {
    padding: 0;
  }
}
.contact-block .semi-title, .contact-timing-block .semi-title {
  margin-bottom: 0;
}
.contact-block-title, .contact-timing-block-title {
  margin-bottom: 1.38rem;
  font-size: 1.5rem;
  line-height: 1.69rem;
  color: #24402A;
}
.contact-social-list {
  display: flex;
  flex-wrap: wrap;
}
.contact-social-link {
  color: #70940C;
  text-decoration: none;
  font-size: 2.19rem;
  padding: 0 0.5rem;
}
.contact-social-link:hover {
  text-decoration: none;
  color: #8F3533;
}
.contact-social-link i {
  display: inline-block;
  vertical-align: middle;
}

.invalid::-moz-placeholder {
  color: #ED0000 !important;
}

.invalid::placeholder {
  color: #ED0000 !important;
}

.info-popup-block .ipb-container {
  max-width: 74.63rem;
  margin-top: 4rem;
}
.info-popup-block .card {
  padding: 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.info-popup-block .card-header-wrap {
  display: block;
  position: relative;
  padding: 2rem 5.63rem;
  text-align: left;
  border-bottom: 0.07rem solid #B8BEB9;
}
@media (max-width: 991px) {
  .info-popup-block .card-header-wrap {
    padding: 2.82rem;
  }
}
@media (max-width: 479px) {
  .info-popup-block .card-header-wrap {
    padding: 1.88rem;
  }
}
.info-popup-block .card-header-wrap > h2 {
  padding: 0;
  text-align: left;
  margin-bottom: 0;
}
.info-popup-block .card-header-wrap .popup-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}
.info-popup-block .card-header-wrap .popup-close a {
  color: #423718;
}
.info-popup-block .card-body {
  display: flex;
  flex-wrap: wrap;
}
.info-popup-block .card-body .drinks-overview .drinks-overview-image {
  height: initial;
}
.info-popup-block .card-body .drinks-overview .drinks-overview-image .aspect-ratio {
  background-color: initial;
}
.info-popup-block .card-body .drinks-overview .drinks-overview-image img {
  height: initial;
}
.info-form {
  padding: 2.5rem 5.63rem;
}
@media (max-width: 767px) {
  .info-form {
    padding: 4rem 2.82rem;
  }
}
@media (max-width: 479px) {
  .info-form {
    padding: 2rem 0;
  }
}
.info-form .radio-btn-wrap {
  width: auto;
  margin-right: 1.25rem;
}

.dr-select .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #B8BEB9 !important;
}

.search-page .select2-container.select2-container--open {
  width: auto !important;
}
.search-page .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #24402A;
  background-color: #F7F0E3;
}
.search-page .dr-select .select2-container {
  width: 100% !important;
}

.mobileslider-container .fixed-ratio {
  max-height: 100%;
  height: 28.13rem;
}
@media (max-width: 479px) {
  .mobileslider-container .fixed-ratio {
    height: 23.75rem;
  }
}
.mobileslider-container .fixed-ratio img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mobileslider-container .navigation-wrapper {
  max-width: 70%;
  margin: 0 auto;
}
.mobileslider-container .navigation-wrapper .swiper-pagination {
  bottom: 0;
}

.maparea iframe {
  width: 100%;
  min-height: 35.44rem;
}
.maparea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.article-share-block .asb-link {
  display: inline-block;
  margin-right: 0.63rem;
  font-size: 3.13rem;
  line-height: 3.13rem;
  text-decoration: none;
}
@media (max-width: 767px) {
  .article-share-block .asb-link {
    font-size: 1.88rem;
  }
}
@media (max-width: 479px) {
  .article-share-block .asb-link {
    font-size: 1.5rem;
  }
}
.article-share-block .asb-text {
  display: inline-block;
  margin-right: 0.94rem;
  font-size: 1.32rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .article-share-block .asb-text {
    font-size: 1.13rem;
  }
}
@media (max-width: 479px) {
  .article-share-block .asb-text {
    font-size: 0.88rem;
  }
}

.inner-sections.section-s1, .inner-sections.section-s3 {
  padding-top: 0;
  padding-bottom: 0;
}
.inner-sections.section-s1 .panel-intro, .inner-sections.section-s3 .panel-intro {
  padding: 8rem 0;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .inner-sections.section-s1 .panel-intro, .inner-sections.section-s3 .panel-intro {
    padding: 4rem 0;
  }
}

@media (max-width: 991px) {
  .hover-gallery-wrap .sc-list {
    justify-content: unset;
    flex-wrap: nowrap;
  }
}
.hover-gallery-wrap .sc-overlay-text {
  max-width: 80%;
  margin: 0 auto;
  left: 0px;
  right: 0;
}

.content-center-container {
  position: relative;
  padding: 16rem 0 8rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .content-center-container {
    padding: 8rem 0 8rem;
  }
}
@media (max-width: 479px) {
  .content-center-container {
    padding: 5rem 0 5rem;
  }
}
.content-center-container .h1,
.content-center-container p {
  color: #F7F0E3;
}
.content-center-container p {
  margin-bottom: 4rem;
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 991px) {
  .content-center-container p {
    margin-bottom: 2rem;
    font-size: 1.13rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 479px) {
  .content-center-container p {
    font-size: 1rem;
    line-height: 2rem;
  }
}
.content-center-container p:last-of-type {
  margin-bottom: 0;
}
.content-center-container .ccc-title {
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .content-center-container .ccc-title {
    padding-bottom: 2rem;
  }
}

form input.v-error-message {
  border: 1px solid rgba(237, 0, 0, 0.4) !important;
  margin-bottom: 0px;
}
form textarea.v-error-message {
  border: 1px solid rgba(237, 0, 0, 0.4) !important;
  margin-bottom: 0px;
}
form select.v-error-message {
  border: 1px solid rgba(237, 0, 0, 0.4) !important;
  margin-bottom: 0px;
}
form span.v-error-message {
  font-size: 1rem;
  color: #ED0000;
}

.contact-form-group span.v-error-message::after {
  content: "";
  display: block;
  height: 0.75rem;
}

.landing-banner {
  height: 100vh;
  position: relative;
}
.landing-banner .lb-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.landing-banner .lb-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.landing-banner .lb-caption h1 {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
}
.landing-banner .bgt-shape {
  z-index: 9;
}
.landing-banner .ssp-carousel .sc-pagination {
  text-align: center;
  width: 100%;
  background: transparent;
  bottom: 10%;
  position: absolute;
  flex-direction: row;
  z-index: 9;
}

.feature-intro {
  position: relative;
  z-index: 99;
  text-align: center;
  padding-top: 2.5rem;
  padding-bottom: 6.25rem;
}
@media (min-width: 768px) {
  .feature-intro {
    padding-top: 3.75rem;
  }
}
@media (min-width: 992px) {
  .feature-intro {
    padding-top: 5rem;
  }
}
@media (min-width: 768px) {
  .feature-intro {
    padding-bottom: 9.38rem;
  }
}
@media (min-width: 992px) {
  .feature-intro {
    padding-bottom: 15.63rem;
  }
}
.feature-intro .fi-img {
  max-width: 9.82rem;
  margin: 0 auto 1.88rem;
}
@media (max-width: 767px) {
  .feature-intro .fi-img {
    max-width: 5.32rem;
    margin: 0 auto 1.88rem;
  }
}
@media (max-width: 991px) {
  .feature-intro h5 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .feature-intro h5 {
    font-size: 1.25rem;
  }
}
@media (max-width: 991px) {
  .feature-intro h2 {
    font-size: 2.13rem;
  }
}

.sub-title-paragraph {
  line-height: 3rem;
}
@media (max-width: 991px) {
  .sub-title-paragraph {
    line-height: 2rem;
  }
}

.feature-video {
  position: relative;
  color: #ffffff;
}
.feature-video a {
  text-decoration: none;
}
.feature-video .floating-video {
  position: relative;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  transform: translate(0px, -50px);
}
@media (max-width: 479px) {
  .feature-video .floating-video .fv-caption span.display-3, .feature-video .floating-video .fv-caption span.display-4 {
    font-size: 1.13rem;
  }
}
.feature-video.package-video .fv-left {
  background-color: #BAB97F;
}
.feature-video.persona-video .fv-left {
  background-color: #F7F0E3;
}
.feature-video.persona-video .fv-left h2 a {
  color: #24402A;
}
.feature-video .fv-left {
  background-color: #BE8E36;
}
.feature-video .fv-left-glass {
  background-color: #F7F0E3;
}
.feature-video .fv-right {
  z-index: 99;
  position: relative;
}
@media (max-width: 767px) {
  .feature-video .fv-right {
    z-index: 0;
  }
}
.feature-video .fv-right .aspect-ratio {
  height: 100%;
}
.feature-video .fv-caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(66, 55, 24, 0.25);
  text-align: center;
  flex-direction: column;
}
.feature-video .fv-caption span.display-3 {
  line-height: 1.9 !important;
  display: block;
}
.feature-video .fv-caption span.display-4 {
  line-height: 5.63rem;
  display: block;
}
@media (max-width: 479px) {
  .feature-video .fv-caption span.display-4 {
    line-height: 1.8;
  }
}
.feature-video .fv-caption a {
  transition: 0.3s;
}
.feature-video .fv-caption a.h1 {
  font-size: 6.25rem;
}
@media (max-width: 767px) {
  .feature-video .fv-caption a.h1 {
    font-size: 4.5rem;
  }
}
.feature-video .fv-caption a:hover {
  color: #ffffff;
  transform: scale(1.2);
}
.feature-video .fv-caption a:focus {
  color: #ffffff;
}

@media (min-width: 992px) {
  .fancybox-container .fancybox-inner .fancybox-stage .fancybox-slide {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .fancybox-container .fancybox-inner .fancybox-toolbar {
    max-width: 40px;
  }
  .fancybox-container .fancybox-inner .fancybox-toolbar button svg {
    width: auto;
  }
}

.feature-video.lodges .h1 {
  color: #ffffff;
}

.style-1 .feature-video.lodges .fv-left {
  background-color: #C2805D;
}

.style-2 .feature-video.lodges .fv-left {
  background-color: #919F69;
}

.style-3 .feature-video.lodges .fv-left {
  background-color: #344E39;
}

.style-4 .feature-video.lodges .fv-left {
  background-color: #0A5D7E;
}

@media (max-width: 991px) {
  .ssp-carousel.h-max-screen.h-max-screen,
  .spa-banner-swiper.h-max-screen.h-max-screen,
  .sst-carousel.h-max-screen.h-max-screen,
  .private-area-slider.h-max-screen.h-max-screen,
  .vertical-carousel.h-max-screen.h-max-screen,
  .multiplerow-slider.h-max-screen.h-max-screen {
    max-height: 24.38rem;
  }
}
.ssp-carousel .sc-caption,
.spa-banner-swiper .sc-caption,
.sst-carousel .sc-caption,
.private-area-slider .sc-caption,
.vertical-carousel .sc-caption,
.multiplerow-slider .sc-caption {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .ssp-carousel .sc-caption,
  .spa-banner-swiper .sc-caption,
  .sst-carousel .sc-caption,
  .private-area-slider .sc-caption,
  .vertical-carousel .sc-caption,
  .multiplerow-slider .sc-caption {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
.ssp-carousel .sc-caption .icon,
.spa-banner-swiper .sc-caption .icon,
.sst-carousel .sc-caption .icon,
.private-area-slider .sc-caption .icon,
.vertical-carousel .sc-caption .icon,
.multiplerow-slider .sc-caption .icon {
  display: inline-flex;
}
.ssp-carousel .sc-caption-inner,
.spa-banner-swiper .sc-caption-inner,
.sst-carousel .sc-caption-inner,
.private-area-slider .sc-caption-inner,
.vertical-carousel .sc-caption-inner,
.multiplerow-slider .sc-caption-inner {
  background-color: #8F3533;
  color: #ffffff;
}
@media (min-width: 992px) {
  .ssp-carousel .sc-caption-inner,
  .spa-banner-swiper .sc-caption-inner,
  .sst-carousel .sc-caption-inner,
  .private-area-slider .sc-caption-inner,
  .vertical-carousel .sc-caption-inner,
  .multiplerow-slider .sc-caption-inner {
    max-width: 22.82rem;
  }
}
.ssp-carousel .sc-caption-inner h4 i,
.spa-banner-swiper .sc-caption-inner h4 i,
.sst-carousel .sc-caption-inner h4 i,
.private-area-slider .sc-caption-inner h4 i,
.vertical-carousel .sc-caption-inner h4 i,
.multiplerow-slider .sc-caption-inner h4 i {
  display: inline-block;
  vertical-align: middle;
}
.ssp-carousel .sc-pagination,
.spa-banner-swiper .sc-pagination,
.sst-carousel .sc-pagination,
.private-area-slider .sc-pagination,
.vertical-carousel .sc-pagination,
.multiplerow-slider .sc-pagination {
  background-color: rgba(143, 53, 51, 0.75);
  width: 100%;
  order: -1;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: initial;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .ssp-carousel .sc-pagination,
  .spa-banner-swiper .sc-pagination,
  .sst-carousel .sc-pagination,
  .private-area-slider .sc-pagination,
  .vertical-carousel .sc-pagination,
  .multiplerow-slider .sc-pagination {
    width: 4.38rem;
    order: 1;
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.ssp-carousel .sc-pagination .swiper-pagination-bullet,
.spa-banner-swiper .sc-pagination .swiper-pagination-bullet,
.sst-carousel .sc-pagination .swiper-pagination-bullet,
.private-area-slider .sc-pagination .swiper-pagination-bullet,
.vertical-carousel .sc-pagination .swiper-pagination-bullet,
.multiplerow-slider .sc-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: #ffffff;
  opacity: 1;
  font-size: 0;
}
@media (max-width: 991px) {
  .ssp-carousel .sc-pagination .swiper-pagination-bullet,
  .spa-banner-swiper .sc-pagination .swiper-pagination-bullet,
  .sst-carousel .sc-pagination .swiper-pagination-bullet,
  .private-area-slider .sc-pagination .swiper-pagination-bullet,
  .vertical-carousel .sc-pagination .swiper-pagination-bullet,
  .multiplerow-slider .sc-pagination .swiper-pagination-bullet {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.ssp-carousel .sc-pagination .swiper-pagination-bullet:after,
.spa-banner-swiper .sc-pagination .swiper-pagination-bullet:after,
.sst-carousel .sc-pagination .swiper-pagination-bullet:after,
.private-area-slider .sc-pagination .swiper-pagination-bullet:after,
.vertical-carousel .sc-pagination .swiper-pagination-bullet:after,
.multiplerow-slider .sc-pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  left: -4px;
  top: -4px;
  border: 4px solid transparent;
}
.ssp-carousel .sc-pagination .swiper-pagination-bullet-active,
.spa-banner-swiper .sc-pagination .swiper-pagination-bullet-active,
.sst-carousel .sc-pagination .swiper-pagination-bullet-active,
.private-area-slider .sc-pagination .swiper-pagination-bullet-active,
.vertical-carousel .sc-pagination .swiper-pagination-bullet-active,
.multiplerow-slider .sc-pagination .swiper-pagination-bullet-active {
  background-color: #8F3533;
}
.ssp-carousel .sc-pagination .swiper-pagination-bullet-active:after,
.spa-banner-swiper .sc-pagination .swiper-pagination-bullet-active:after,
.sst-carousel .sc-pagination .swiper-pagination-bullet-active:after,
.private-area-slider .sc-pagination .swiper-pagination-bullet-active:after,
.vertical-carousel .sc-pagination .swiper-pagination-bullet-active:after,
.multiplerow-slider .sc-pagination .swiper-pagination-bullet-active:after {
  border-color: #ffffff;
}
@media (max-width: 767px) {
  .ssp-carousel .pb-caption,
  .spa-banner-swiper .pb-caption,
  .sst-carousel .pb-caption,
  .private-area-slider .pb-caption,
  .vertical-carousel .pb-caption,
  .multiplerow-slider .pb-caption {
    top: 0;
  }
}

.page-banner.highlight-cta-full {
  padding-top: 2rem;
}
.page-banner.highlight-cta-full h3 {
  color: #24402A;
}
.page-banner .swiper-slide-duplicate-next img, .page-banner .swiper-slide-prev img, .page-banner .swiper-slide-next img, .page-banner .swiper-slide-active img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /*height:100vh;*/
}
@media (max-width: 991px) {
  .page-banner .swiper-slide-duplicate-next img, .page-banner .swiper-slide-prev img, .page-banner .swiper-slide-next img, .page-banner .swiper-slide-active img {
    min-height: 16.25rem;
    height: 100%;
  }
}

.gold-slider-gallery .sc-caption-inner {
  background-color: #BE8E36;
}
.gold-slider-gallery .sc-pagination {
  background-color: rgba(190, 142, 54, 0.75);
}
.gold-slider-gallery .sc-pagination .swiper-pagination-bullet-active {
  background-color: #BE8E36;
}

.swiper-detail-block .sst-carousel {
  position: relative;
  padding: 0 2.5rem;
}
.swiper-detail-block .sst-carousel:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 200px;
  background-color: #F7F0E3;
  width: 100%;
  z-index: 0;
}
@media (max-width: 767px) {
  .swiper-detail-block .sst-carousel:after {
    height: 7.5rem;
  }
}
@media (max-width: 479px) {
  .swiper-detail-block .sst-carousel:after {
    height: 5rem;
  }
}
.swiper-detail-block .sst-carousel .sc-pagination {
  background-color: transparent;
  height: auto;
  bottom: 2.5rem;
  padding: 0;
}
@media (max-width: 767px) {
  .swiper-detail-block .sst-carousel .sc-pagination {
    bottom: 0.94rem;
  }
}

.multiplerow-slider .sc-pagination {
  background-color: rgba(190, 142, 54, 0.75);
}
.multiplerow-slider .sc-pagination .swiper-pagination-bullet-active {
  background-color: #70940C;
}

.style-forest .sc-pagination {
  background-color: rgba(36, 64, 42, 0.75);
}
.style-forest .sc-pagination .swiper-pagination-bullet-active {
  background-color: #24402A;
}

@media (max-width: 991px) {
  .trade-hub-banner .navigation-wrapper.primary-slider-navigation .swiper-button-prev,
  .trade-hub-banner .navigation-wrapper.primary-slider-navigation .swiper-button-next {
    pointer-events: visible;
    opacity: 1;
    cursor: pointer;
  }
}

.feature-testimonial.small-testimonial blockquote {
  font-size: 2.38rem;
}
@media (max-width: 479px) {
  .feature-testimonial.small-testimonial blockquote {
    font-size: 1.75rem;
    line-height: 2.88rem;
  }
}
.feature-testimonial .semi-title {
  font-size: 0.75rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .feature-testimonial .cell-md-6 {
    width: 75%;
    padding-right: 0;
    text-align: center;
  }
  .feature-testimonial .cell-md-10, .feature-testimonial .cell-md-11 {
    width: 75%;
  }
  .feature-testimonial .cell-md-10 .cell-16, .feature-testimonial .cell-md-11 .cell-16 {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .feature-testimonial blockquote {
    text-align: center;
  }
  .feature-testimonial .ft-ratings {
    justify-content: center;
  }
}
.feature-testimonial .ft-name {
  display: block;
  font-family: "Playfair Display", "Arial", sans-serif;
}
.feature-testimonial .ft-title {
  display: block;
  text-transform: uppercase;
  color: #BE8E36;
  font-weight: 700;
}
.feature-testimonial .ft-img-z9 {
  z-index: 9;
}
.feature-testimonial .ft-ratings {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .feature-testimonial .ft-ratings {
    justify-content: center;
  }
}
.feature-testimonial .ft-brand-logo {
  margin-right: 1.25rem;
}
.feature-testimonial .ft-brand-logo img {
  max-width: 7.5rem;
}
.feature-testimonial .ft-rating-stars {
  display: flex;
  color: #BE8E36;
  height: 100%;
}
.feature-testimonial blockquote {
  line-height: 1.3;
}

.wildlife-panel .wp-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1.25rem;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .wildlife-panel .wp-caption {
    text-align: center;
  }
}
@media (min-width: 1440px) {
  .wildlife-panel .wp-caption {
    padding: 3.13rem;
  }
}
.wildlife-panel .wp-caption .icon {
  opacity: 0;
  transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  vertical-align: middle;
}
.wildlife-panel .wp-caption:hover {
  overflow: auto;
  background-color: rgba(36, 64, 42, 0.85);
}
.wildlife-panel .wp-caption:hover::-webkit-scrollbar {
  width: 10px;
}
.wildlife-panel .wp-caption:hover::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.wildlife-panel .wp-caption:hover::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(88, 119, 141, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.wildlife-panel .wp-caption:hover::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
.wildlife-panel .wp-caption:hover .mark {
  background-color: transparent;
}
.wildlife-panel .wp-caption:hover .icon {
  opacity: 1;
}
.wildlife-panel .wp-caption:hover .wp-caption-desc {
  opacity: 1;
  transform: translateY(0);
}
.wildlife-panel .wp-caption .mark {
  transition: 0.3s;
  background-color: rgba(36, 64, 42, 0.75);
  padding: 2px 5px 5px;
  color: #ffffff;
  font-weight: 700;
}
.wildlife-panel .wp-caption-desc {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.3s;
}

.column-gallery .cg-col {
  padding: 0 0.63rem 1.25rem;
}

.feature-slideshow,
.feature-slideshow-1 {
  position: relative;
}
.feature-slideshow.noslideshow .fs-caption,
.feature-slideshow-1.noslideshow .fs-caption {
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .feature-slideshow.noslideshow .fs-caption,
  .feature-slideshow-1.noslideshow .fs-caption {
    bottom: unset;
  }
}
.feature-slideshow.noslideshow .fs-caption-title-bold,
.feature-slideshow-1.noslideshow .fs-caption-title-bold {
  font-weight: 600;
}
.feature-slideshow.noslideshow .fs-responsive-block::-webkit-scrollbar,
.feature-slideshow-1.noslideshow .fs-responsive-block::-webkit-scrollbar {
  width: 10px;
}
.feature-slideshow.noslideshow .fs-responsive-block::-webkit-scrollbar-track,
.feature-slideshow-1.noslideshow .fs-responsive-block::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(143, 53, 51, 0.3);
}
.feature-slideshow.noslideshow .fs-responsive-block::-webkit-scrollbar-thumb,
.feature-slideshow-1.noslideshow .fs-responsive-block::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(143, 53, 51, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(143, 53, 51, 0.5);
}
.feature-slideshow.noslideshow .fs-responsive-block::-webkit-scrollbar-thumb:window-inactive,
.feature-slideshow-1.noslideshow .fs-responsive-block::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
.feature-slideshow.noslideshow .fs-responsive-block h3,
.feature-slideshow-1.noslideshow .fs-responsive-block h3 {
  font-size: 2rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .feature-slideshow.noslideshow .fs-responsive-block p,
  .feature-slideshow-1.noslideshow .fs-responsive-block p {
    max-height: 12.5rem;
    overflow: auto;
    margin-bottom: 3rem;
  }
}
@media (max-width: 479px) {
  .feature-slideshow.noslideshow .fs-repetor p,
  .feature-slideshow-1.noslideshow .fs-repetor p {
    max-height: unset;
  }
}
.feature-slideshow .swiper-slide-duplicate,
.feature-slideshow-1 .swiper-slide-duplicate {
  display: none;
}
.feature-slideshow .swiper-slide-duplicate-active,
.feature-slideshow-1 .swiper-slide-duplicate-active {
  display: none;
}
.feature-slideshow .fs-navigation,
.feature-slideshow-1 .fs-navigation {
  width: 40%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-navigation,
  .feature-slideshow-1 .fs-navigation {
    padding-right: 0;
    overflow-x: scroll;
    padding-bottom: 15px;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .feature-slideshow .fs-navigation-list,
  .feature-slideshow-1 .fs-navigation-list {
    display: flex;
    white-space: nowrap;
    margin-right: 3.13rem;
    margin-bottom: 0;
  }
}
.feature-slideshow .fs-navigation .on-link,
.feature-slideshow-1 .fs-navigation .on-link {
  transition: 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  line-height: 4.38rem;
}
.feature-slideshow .fs-navigation .on-link.active, .feature-slideshow .fs-navigation .on-link:hover,
.feature-slideshow-1 .fs-navigation .on-link.active,
.feature-slideshow-1 .fs-navigation .on-link:hover {
  font-weight: bold;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-navigation .on-link,
  .feature-slideshow-1 .fs-navigation .on-link {
    display: inline-block;
    margin-right: 1.75rem;
    line-height: 3.25rem;
    font-size: 1.63rem;
  }
}
.feature-slideshow .fs-repetor,
.feature-slideshow-1 .fs-repetor {
  position: relative;
}
@media (max-width: 479px) {
  .feature-slideshow .fs-repetor p,
  .feature-slideshow-1 .fs-repetor p {
    max-height: 10.63rem;
    overflow: auto;
  }
}
.feature-slideshow .fs-caption,
.feature-slideshow-1 .fs-caption {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  display: flex;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-caption h2,
  .feature-slideshow-1 .fs-caption h2 {
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .feature-slideshow .fs-responsive,
  .feature-slideshow-1 .fs-responsive {
    position: relative;
    text-align: center;
  }
}
.feature-slideshow .fs-white-block,
.feature-slideshow-1 .fs-white-block {
  padding: 1.75rem 0;
  max-width: 33.13rem;
  background-color: #ffffff;
  height: 100%;
}
.feature-slideshow .fs-scrollable,
.feature-slideshow-1 .fs-scrollable {
  max-height: 400px;
  overflow-y: auto;
  padding: 0 2rem;
  margin-top: 1rem;
  margin-bottom: 16px;
}
.feature-slideshow .fs-scrollable::-webkit-scrollbar,
.feature-slideshow-1 .fs-scrollable::-webkit-scrollbar {
  width: 10px;
}
.feature-slideshow .fs-scrollable::-webkit-scrollbar-track,
.feature-slideshow-1 .fs-scrollable::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(206, 164, 150, 0.3);
}
.feature-slideshow .fs-scrollable::-webkit-scrollbar-thumb,
.feature-slideshow-1 .fs-scrollable::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(143, 53, 51, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(206, 164, 150, 0.5);
}
.feature-slideshow .fs-scrollable::-webkit-scrollbar-thumb:window-inactive,
.feature-slideshow-1 .fs-scrollable::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-scrollable,
  .feature-slideshow-1 .fs-scrollable {
    height: 100%;
    max-height: unset;
  }
}
.feature-slideshow .fs-overlay:after,
.feature-slideshow-1 .fs-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(66, 55, 24, 0.3);
  z-index: 0;
}
.feature-slideshow .fs-overlay .fs-caption,
.feature-slideshow-1 .fs-overlay .fs-caption {
  z-index: 2;
}
.feature-slideshow .fs-pagination,
.feature-slideshow-1 .fs-pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-direction: revert;
  border: 5px solid transparent;
  background-color: rgba(33, 43, 26, 0.75);
  width: 15.63rem;
  height: 5.32rem;
  z-index: 99;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-pagination,
  .feature-slideshow-1 .fs-pagination {
    display: flex;
    height: 3.13rem;
    width: 12.5rem;
  }
}
.feature-slideshow .fs-pagination .swiper-pagination-bullet,
.feature-slideshow-1 .fs-pagination .swiper-pagination-bullet {
  margin: 0.5rem;
  width: 1.44rem;
  height: 1.44rem;
  background-color: #ffffff;
  opacity: 1;
}
.feature-slideshow .fs-pagination .swiper-pagination-bullet-active,
.feature-slideshow-1 .fs-pagination .swiper-pagination-bullet-active {
  background-color: #24402A;
  border: 5px solid #ffffff;
}
@media (max-width: 991px) {
  .feature-slideshow .fs-pagination .swiper-pagination-bullet,
  .feature-slideshow-1 .fs-pagination .swiper-pagination-bullet {
    width: 0.94rem;
    height: 0.94rem;
    border: 3px solid transparent;
  }
  .feature-slideshow .fs-pagination .swiper-pagination-bullet-active,
  .feature-slideshow-1 .fs-pagination .swiper-pagination-bullet-active {
    background-color: #24402A;
    border: 3px solid #ffffff;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .swiper-wrapper .fs-white-block,
  .feature-slideshow-1-2 .swiper-wrapper .fs-white-block {
    max-width: 100%;
    width: 100%;
    text-align: left;
  }
  .feature-slideshow-2 .swiper-wrapper .fs-white-block h4,
  .feature-slideshow-1-2 .swiper-wrapper .fs-white-block h4 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation,
  .feature-slideshow-1-2 .fs-navigation {
    position: relative;
    padding: 0;
    margin: 0 0 1.25rem 0;
    background: #70940C;
  }
}
.feature-slideshow-2 .fs-navigation .list-unstyled,
.feature-slideshow-1-2 .fs-navigation .list-unstyled {
  max-width: 18.75rem;
}
.feature-slideshow-2 .fs-navigation .list-unstyled .active-icon,
.feature-slideshow-1-2 .fs-navigation .list-unstyled .active-icon {
  display: none;
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled {
    max-width: 56.25rem;
  }
}
@media (max-width: 479px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled {
    max-width: 100%;
    overflow: auto;
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled .on-link,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 25%;
    width: 100%;
    margin: 0;
    font-family: "Lato", "Arial", sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 0;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled .on-link,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link {
    padding: 0.38rem 0.63rem;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled .on-link .active-icon,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link .active-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0px;
    height: 0px;
    margin: 0 auto;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 15px solid #F7F0E3;
    display: none;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled .on-link.active .active-icon, .feature-slideshow-2 .fs-navigation .list-unstyled .on-link:hover .active-icon,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link.active .active-icon,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link:hover .active-icon {
    display: block;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-2 .fs-navigation .list-unstyled .on-link.active,
  .feature-slideshow-1-2 .fs-navigation .list-unstyled .on-link.active {
    margin: 0;
    border-bottom: 0;
    background-color: #A2B961;
    font-weight: 600;
  }
}
.feature-slideshow-2 .fsc-responsive-title-block,
.feature-slideshow-1-2 .fsc-responsive-title-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 2.19rem 0;
}
@media (max-width: 479px) {
  .feature-slideshow-2 .fsc-responsive-title-block,
  .feature-slideshow-1-2 .fsc-responsive-title-block {
    flex-wrap: wrap;
  }
}
.feature-slideshow-2 .fsc-responsive-title-block h3,
.feature-slideshow-1-2 .fsc-responsive-title-block h3 {
  display: inline-block;
  margin: 0;
  font-size: 2rem;
  line-height: 2.63rem;
}
.feature-slideshow-2 .fsc-responsive-title-block .btn,
.feature-slideshow-1-2 .fsc-responsive-title-block .btn {
  margin-left: auto;
}
@media (max-width: 479px) {
  .feature-slideshow-2 .fsc-responsive-title-block .btn,
  .feature-slideshow-1-2 .fsc-responsive-title-block .btn {
    margin: 0.94rem 0 0 0.94rem;
    min-width: 8.75rem;
  }
}
.feature-slideshow-2 .fsc-responsive p,
.feature-slideshow-1-2 .fsc-responsive p {
  overflow: auto;
  color: #24402A;
}

@media (max-width: 991px) {
  .feature-slideshow-1 .fs-repetor,
  .feature-slideshow-mobile .fs-repetor {
    height: 42.75rem;
  }
}
.feature-slideshow-1 .fs-repetor > h2,
.feature-slideshow-mobile .fs-repetor > h2 {
  position: relative;
  padding: 3.75rem 0 0 0;
  color: white;
  font-size: 3.13rem;
  text-align: center;
  z-index: 9;
}
.feature-slideshow-1 .fs-overlay,
.feature-slideshow-mobile .fs-overlay {
  overflow: hidden;
}
.feature-slideshow-1 .fs-overlay:after,
.feature-slideshow-mobile .fs-overlay:after {
  top: 0;
}
.feature-slideshow-1 .fs-overlay img,
.feature-slideshow-mobile .fs-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
  top: 0;
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-navigation,
  .feature-slideshow-mobile .fs-navigation {
    overflow: hidden;
    display: none;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-navigation .on-link.active,
  .feature-slideshow-mobile .fs-navigation .on-link.active {
    display: none;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-caption,
  .feature-slideshow-mobile .fs-caption {
    position: absolute;
    bottom: 0;
    top: auto;
    left: 5%;
    right: 5%;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-caption > div,
  .feature-slideshow-mobile .fs-caption > div {
    justify-content: center;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-white-block,
  .feature-slideshow-mobile .fs-white-block {
    max-width: 100%;
    width: 100%;
    padding: 0.88rem;
  }
  .feature-slideshow-1 .fs-white-block p,
  .feature-slideshow-mobile .fs-white-block p {
    display: none;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-scrollable,
  .feature-slideshow-mobile .fs-scrollable {
    text-align: center;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-scrollable h4,
  .feature-slideshow-mobile .fs-scrollable h4 {
    color: #24402A;
    text-align: center;
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .feature-slideshow-1 .fs-scrollable .btn-secondary,
  .feature-slideshow-mobile .fs-scrollable .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 479px) {
  .h-sm-420 {
    min-height: 40vh;
  }
}

@media (max-width: 991px) {
  .feature-slideshow-1 .swiper-slide-next .fs-white-block,
  .feature-slideshow-1 .swiper-slide-prev .fs-white-block {
    display: none;
    transition: all 1.5s;
  }
}

.feature-slideshow .gallery-thumbs {
  position: absolute;
  top: 0;
  z-index: 99;
  right: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
}
.feature-slideshow .gallery-thumbs .swiper-wrapper {
  padding: 10px 0px;
}
.feature-slideshow .gallery-thumbs .swiper-wrapper .swiper-slide {
  width: auto;
  color: white;
  font-size: 26px;
  line-height: 52px;
  font-family: "Playfair Display", "Arial", sans-serif;
  font-weight: 400;
}
.feature-slideshow .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-active {
  font-weight: bold;
  border-bottom: 1px solid;
}

.experience-overview .eo-caption {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  color: #ffffff;
  padding: 1.88rem;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s;
}
.experience-overview .eo-caption::-webkit-scrollbar {
  width: 10px;
}
.experience-overview .eo-caption::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.experience-overview .eo-caption::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.experience-overview .eo-caption::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
@media (min-width: 1440px) {
  .experience-overview .eo-caption {
    padding: 3.13rem;
  }
}
@media (max-width: 767px) {
  .experience-overview .eo-caption {
    text-align: center;
  }
}
.experience-overview .eo-caption:hover {
  overflow: auto;
  background-color: rgba(143, 53, 51, 0.85);
}
.experience-overview .eo-caption:hover .mark {
  background-color: transparent;
}
.experience-overview .eo-caption:hover .large-mark {
  opacity: 1;
  background: transparent;
}
.experience-overview .eo-caption:hover .eo-caption-desc {
  opacity: 1;
  transform: translateY(0);
}
.experience-overview .eo-caption .mark,
.experience-overview .eo-caption .large-mark {
  transition: 0.3s;
  background-color: rgba(143, 53, 51, 0.75);
  padding: 2px 5px;
  color: #ffffff;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .experience-overview .eo-caption .mark,
  .experience-overview .eo-caption .large-mark {
    font-size: 1.13rem;
  }
}
@media (max-width: 767px) {
  .experience-overview .eo-caption .mark,
  .experience-overview .eo-caption .large-mark {
    font-size: 12px;
  }
}
.experience-overview .eo-caption .large-mark {
  opacity: 0;
  transition: 0.3s ease;
  background: transparent;
}
.experience-overview .eo-caption-desc {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.3s;
}

.eo-secondary .eo-caption .mark,
.eo-secondary .eo-caption .large-mark {
  background-color: rgba(145, 159, 105, 0.85);
}
.eo-secondary .eo-caption:hover {
  background-color: rgba(145, 159, 105, 0.85);
}

.feature-quote {
  position: relative;
  text-align: center;
}
.feature-quote .fq-img {
  width: 9.38rem;
}
@media (max-width: 479px) {
  .feature-quote .fq-img {
    width: 6.88rem;
  }
}
@media (max-width: 479px) {
  .feature-quote .fq-digital-sign {
    width: 9.38rem;
  }
}
.feature-quote .fq-plate {
  padding-top: 0.63rem;
  text-align: left;
}
.feature-quote .fq-name {
  display: block;
  font-family: "Playfair Display", "Arial", sans-serif;
}
.feature-quote .fq-title {
  display: block;
  text-transform: uppercase;
  color: #8F3533;
  font-weight: 700;
}

.discover-sabi-sabi {
  position: relative;
}
.discover-sabi-sabi .dss-main-title img {
  margin-bottom: 0.63rem;
}
.discover-sabi-sabi .dss-shadow-line {
  position: relative;
}
.discover-sabi-sabi .dss-shadow-line:after {
  height: 0.07rem;
  background-color: #BAB97F;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
}
@media (max-width: 991px) {
  .discover-sabi-sabi .dss-shadow-line:after {
    box-shadow: none;
  }
}
.discover-sabi-sabi .dss-inner-grid {
  border: none;
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-inner-grid {
    text-align: center;
  }
}
.discover-sabi-sabi .dss-inner-column {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991px) {
  .discover-sabi-sabi .dss-inner-column {
    width: 33.33%;
    padding: 0 0.94rem;
  }
  .discover-sabi-sabi .dss-inner-column .dss-wrap a.btn-link {
    font-size: 1rem;
  }
}
.discover-sabi-sabi .dss-inner-column:last-child .seperator-line::after {
  display: none;
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-inner-column:last-child .dss-wrap {
    border-bottom: none;
  }
}
@media (max-width: 991px) {
  .discover-sabi-sabi .dss-highlight-reverse {
    flex-direction: column-reverse;
    order: 2;
  }
}
.discover-sabi-sabi .dss-blog-wrap {
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-highlight-left {
    order: 2;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-highlight-right {
    order: 1;
  }
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-highlight-right a.aspect-ratio {
    min-height: 23.82rem;
  }
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-blog-desc {
    text-align: center;
  }
}
.discover-sabi-sabi .dss-blog-wrap .dss-blog-desc .dss-text {
  margin-bottom: 0;
  font-size: 1.13rem;
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-wrap {
    border-bottom: 1px solid #BAB97F;
  }
}
.discover-sabi-sabi .dss-blog-wrap .dss-wrap .semi-title {
  font-size: 0.75rem;
}
.discover-sabi-sabi .dss-blog-wrap .dss-wrap .list-unstyled li .btn-link {
  position: relative;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  text-transform: uppercase;
}
@media (max-width: 390px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-wrap .list-unstyled li .btn-link {
    font-size: 0.88rem;
  }
}
@media (max-width: 479px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-wrap .list-unstyled li .btn-link i.icon {
    position: absolute;
    right: -30px;
  }
}
@media (max-width: 1439px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-title {
    font-size: 1.63rem;
  }
}
@media (max-width: 767px) {
  .discover-sabi-sabi .dss-blog-wrap .dss-title {
    text-align: center;
    font-size: 2rem;
  }
}
.discover-sabi-sabi .dss-blog-wrap .dss-link-wrap .btn-link {
  text-transform: uppercase;
  display: inline-block;
}
.discover-sabi-sabi .dss-blog-wrap .dss-link-wrap i {
  margin-left: 0.63rem;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.44rem;
  line-height: 18px;
}

.seperator-line {
  position: relative;
  flex: 1;
}
.seperator-line:after {
  right: -1.25rem;
  top: 0;
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #BAB97F;
  content: "";
}
@media (min-width: 768px) and (max-width: 1439px) {
  .seperator-line:after {
    right: -5%;
  }
}
@media (max-width: 767px) {
  .seperator-line:after {
    display: none;
  }
}

.time-tip {
  background-color: #D4DFB6;
  padding: 12px 20px;
  display: inline-block;
  font-size: 0.88rem;
  color: #24402A;
  font-weight: 600;
  letter-spacing: 2px;
}

.blogs-grid .dss-inner-column .seperator-line::after {
  display: none;
}
.blogs-grid .dss-inner-column:after {
  right: -5%;
  top: 0;
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #BAB97F;
  content: "";
}
@media (max-width: 991px) {
  .blogs-grid .dss-inner-column:after {
    display: none;
  }
}
.blogs-grid .dss-inner-column:last-of-type:after {
  display: none;
}
.blogs-grid .blog-wrap {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .blogs-grid .blog-wrap {
    margin-bottom: 2rem;
  }
}
.blogs-section .latest-posts-card {
  padding-bottom: 0;
}
.blogs-section .latest-posts-card .lpc-post {
  margin-bottom: 4rem;
}
.blogs-section .latest-posts-card .lpc-inner-content {
  padding-left: 0;
  padding-right: 0;
}
.blogs-section .dss-shadow-line:after {
  display: none;
}

.intro-image {
  margin-bottom: 0.5rem;
  max-width: 12.5rem;
}

.blogs-grid-3-column.dss-inner-grid {
  padding: 4rem 0 0 0;
  border-top: 1px solid #BAB97F;
}
.blogs-grid-3-column.border-t-none {
  border-top: none;
}
.blog-overview .h4 {
  font-size: 1.38rem;
  margin-bottom: 1.5rem;
}
.blog-breadcrumb {
  margin-bottom: 1.5rem;
}
.blog-breadcrumb a {
  display: inline-block;
  position: relative;
  padding-left: 0.94rem;
  font-size: 1.13rem;
  color: #70940C;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.3s;
}
.blog-breadcrumb a:first-of-type {
  padding-left: 0;
}
.blog-breadcrumb a:first-of-type:before {
  display: none;
}
.blog-breadcrumb a:before {
  position: absolute;
  content: ">";
  left: 0;
  color: #70940C !important;
}
.blog-breadcrumb a:hover {
  color: #8F3533;
}
.blog-cta-link {
  display: flex;
  justify-content: flex-end;
  color: #70940C;
}
@media (max-width: 991px) {
  .blog-cta-link {
    justify-content: center;
  }
}
.blog-cta-link a {
  color: #70940C;
  font-size: 1.13rem;
  font-weight: bold;
  text-transform: capitalize;
  text-decoration: none;
  transition: 0.3s;
}
.blog-cta-link a:hover {
  color: #8F3533;
}

@media (max-width: 767px) {
  .ih-wrap-left {
    order: 1;
  }
}

.fancybox-image-link {
  height: 100%;
  cursor: zoom-in;
}

.gonext-wrap {
  display: flex;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 767px) {
  .gonext-wrap {
    display: none;
  }
}
.gonext-wrap .next-icon {
  position: relative;
  width: 1.88rem;
  height: 2.75rem;
  display: block;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 0.88rem;
  transition: ease all 0.3s;
  margin-bottom: 0.25rem;
  background-color: rgba(255, 255, 255, 0);
}
.gonext-wrap .next-icon:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
.gonext-wrap .next-icon:before {
  position: absolute;
  top: 5px;
  left: 50%;
  content: "";
  width: 3px;
  height: 10px;
  margin-left: -1.5px;
  background-color: #fff;
  animation: scrolldown 1.8s infinite;
  border-radius: 12px;
}
.gonext-container {
  position: absolute;
  bottom: 0;
  left: auto;
  right: auto;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  text-decoration: none;
}
.gonext-container:hover {
  text-decoration: none;
  color: #ffffff;
}

@keyframes scrolldown {
  0% {
    top: 3px;
  }
  100% {
    top: 35px;
    opacity: 0;
  }
}
html {
  scroll-behavior: smooth;
}

.feature-awards {
  text-align: center;
}
@media (max-width: 991px) {
  .feature-awards .semi-title {
    padding-top: 0.63rem;
    margin-bottom: 1.57rem;
  }
}
.feature-awards .semi-title span:first-of-type {
  line-height: 2.25rem;
}
.feature-awards span.year {
  font-weight: 400;
  line-height: 2.25rem;
}

@media (min-width: 992px) and (max-width: 1439px) {
  .gallery {
    max-width: 50.32rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.gallery-image {
  position: relative;
  max-width: 268px;
  width: 100%;
  font-size: 1.75rem;
}
@media (max-width: 479px) {
  .gallery-image {
    max-width: 100%;
  }
}

.sc-list {
  gap: 1px;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .sc-list {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .sc-list .sc-wrap:nth-child(even) {
    padding: 0.07rem 0 0.07rem 0.07rem;
  }
  .sc-list .sc-wrap:nth-child(odd) {
    padding: 0.07rem 0 0.07rem 0.07rem;
  }
}
.sc-wrap {
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .sc-wrap {
    width: 49%;
  }
}
@media (max-width: 479px) {
  .sc-wrap {
    max-height: 24.25rem;
  }
}
.sc-image-wrap {
  width: 100%;
}
@media (max-width: 991px) {
  .sc-image-wrap {
    max-width: 100%;
    width: 100%;
  }
}
.sc-overlay-text {
  position: absolute;
  content: "";
  bottom: 0;
}
@media (max-width: 991px) {
  .sc-overlay-text {
    width: 100%;
    background-color: rgba(66, 55, 24, 0.7);
  }
}
.sc-overlay-text h4 {
  position: relative;
  z-index: 2;
  height: auto;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .sc-overlay-text h4 {
    height: auto;
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .sc-overlay-text h4 {
    font-size: 1.25rem;
  }
}

.responsive-floating-shape {
  top: initial;
  bottom: 55%;
  left: -2%;
  right: 0;
  max-width: 40%;
}
@media (max-width: 767px) {
  .responsive-floating-shape {
    bottom: 80%;
    left: -25%;
  }
}
@media (max-width: 479px) {
  .responsive-floating-shape {
    bottom: 80%;
    left: -25%;
    right: initial;
    max-width: 50%;
  }
}

.bg-primary-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(143, 53, 51, 0.2);
  z-index: 0;
}
.bg-primary-overlay .fs-caption {
  z-index: 2;
}
.bg-forest-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(36, 64, 42, 0.2);
  z-index: 0;
}
.bg-forest-overlay .fs-caption {
  z-index: 2;
}
.bg-rock-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(66, 55, 24, 0.2);
  z-index: 0;
}
.bg-rock-overlay .fs-caption {
  z-index: 2;
}
.bg-gold-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(190, 142, 54, 0.2);
  z-index: 0;
}
.bg-gold-overlay .fs-caption {
  z-index: 2;
}
.bg-gold-overlay-100:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(190, 142, 54, 0.3);
  z-index: 0;
}
.bg-gold-overlay-100 .fs-caption {
  z-index: 2;
}
.bg-glass-overlay:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(186, 185, 127, 0.3);
  z-index: 0;
}
.bg-glass-overlay .fs-caption {
  z-index: 2;
}

.three-column-showcase {
  justify-content: center;
}
.three-column-showcase .sc-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 479px) {
  .three-column-showcase .sc-image-wrap figure.aspect-ratio:before {
    padding-top: 21.25rem;
  }
}
.three-column-showcase .sc-overlay-text h4 {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
@media (max-width: 479px) {
  .three-column-showcase .sc-overlay-text h4.h-sm-80 {
    justify-content: flex-start;
    font-size: 1.13rem;
  }
}
@media (max-width: 991px) {
  .three-column-showcase.three-column-showcase-mob {
    margin: 0 -1rem;
    gap: 0;
  }
}
@media (max-width: 991px) {
  .three-column-showcase.three-column-showcase-mob {
    margin: 0;
  }
}
.three-column-showcase.three-column-showcase-mob .sc-wrap {
  padding-left: 0rem;
  padding-right: 0rem;
}
@media (max-width: 991px) {
  .three-column-showcase.three-column-showcase-mob .sc-wrap {
    width: 50%;
    margin-bottom: 0.07rem;
    padding-left: 0.07rem;
    padding-right: 0.07rem;
  }
}
@media (max-width: 767px) {
  .three-column-showcase.three-column-showcase-mob .sc-wrap {
    padding-left: 0.07rem;
    padding-right: 0.07rem;
    margin-bottom: 1px;
  }
}
@media (max-width: 991px) {
  .three-column-showcase.three-column-showcase-mob .sc-wrap:last-child {
    margin-bottom: 0px;
  }
}

.tab-gallery {
  transition: 0.3s;
  display: grid;
  width: 100%;
  grid-template-columns: 15% 15% 10% 10% 50%;
  grid-template-rows: 393px 442px;
  grid-gap: 0px;
}
@media (max-width: 991px) {
  .tab-gallery {
    display: flex;
    flex-wrap: wrap;
  }
}
.tab-gallery-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tab-gallery-item {
  opacity: 0;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .tab-gallery-item {
    max-width: 100%;
    width: 100%;
    opacity: 0;
    display: none;
  }
  .tab-gallery-item.active-image {
    opacity: 1;
    display: block;
  }
}
@media (max-width: 479px) {
  .tab-gallery-item {
    max-width: 100%;
    width: 100%;
  }
}
.tab-gallery-item-1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media (max-width: 991px) {
  .tab-gallery-item-1 {
    order: 1;
    max-width: 100%;
    width: 100%;
  }
}
.tab-gallery-item-span-2 {
  grid-column: span 4;
  display: flex;
}
.tab-gallery-item-2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media (max-width: 991px) {
  .tab-gallery-item-2 {
    order: 2;
  }
}
.tab-gallery-item-3 {
  grid-column-start: 5;
  grid-column-end: 8;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media (max-width: 991px) {
  .tab-gallery-item-3 {
    order: 5;
  }
}
.tab-gallery-item-4 {
  grid-row-start: 2;
  grid-row-end: 3;
  width: 40%;
}
@media (max-width: 991px) {
  .tab-gallery-item-4 {
    order: 3;
  }
}
.tab-gallery-item-5 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 3;
  width: 60%;
}
@media (max-width: 991px) {
  .tab-gallery-item-5 {
    order: 4;
  }
}
.tab-gallery-item.active-image {
  opacity: 1;
}
@media (max-width: 991px) {
  .tab-gallery-item.active-image {
    opacity: 0 !important;
  }
  .tab-gallery-item.active-image.swiper-slide-active {
    opacity: 1 !important;
  }
}
@media (max-width: 991px) {
  .tab-gallery .swiper-autoheight .swiper-slide {
    height: 100%;
  }
}
.tab-gallery .tg-container {
  width: 100%;
  display: grid;
  height: 53.32rem;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  grid-template-columns: 15% 15% 10% 10% 50%;
  grid-template-rows: 393px 442px;
}
@media (max-width: 991px) {
  .tab-gallery .tg-container {
    position: relative;
    display: flex;
    order: 2;
    height: 29.38rem;
  }
}
.tab-gallery-links {
  opacity: 1;
  display: block;
}
@media (max-width: 991px) {
  .tab-gallery-links {
    display: block;
    padding: 0;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  .tab-gallery-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
  }
}
.tab-gallery-list a {
  text-decoration: none !important;
  transition: 0.3s;
  align-items: center;
  cursor: pointer;
  line-height: 4.38rem;
}
@media (max-width: 1439px) {
  .tab-gallery-list a {
    font-size: 2rem;
    line-height: 3.13rem;
  }
}
.tab-gallery-list a:nth-child(1) {
  color: #8F3533;
}
.tab-gallery-list a:nth-child(2) {
  color: #0A5D7E;
}
.tab-gallery-list a:nth-child(3) {
  color: #BE8E36;
}
@media (max-width: 1439px) {
  .tab-gallery-list a {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .tab-gallery-list a {
    font-weight: bold;
    padding: 0 1.25rem 0.94rem;
    white-space: nowrap;
  }
}
.tab-gallery-list a span {
  font-size: 2.5rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  color: inherit;
}
@media (max-width: 1439px) {
  .tab-gallery-list a span {
    font-size: 1.63rem;
  }
}
@media (max-width: 991px) {
  .tab-gallery-list a span {
    font-size: 1.13rem;
  }
}
.tab-gallery-list a i {
  transition: 0.3s;
  opacity: 0;
  padding-top: 0.5rem;
  color: inherit;
  font-size: 1.88rem;
}
@media (max-width: 991px) {
  .tab-gallery-list a i {
    display: none;
  }
}
.tab-gallery-list a:hover, .tab-gallery-list a.active {
  text-decoration: none;
}
.tab-gallery-list a:hover span, .tab-gallery-list a.active span {
  font-weight: bold;
  text-decoration: underline;
}
.tab-gallery-list a:hover i, .tab-gallery-list a.active i {
  opacity: 1;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 991px) {
  .tab-gallery-list a:hover i, .tab-gallery-list a.active i {
    display: none;
  }
}

/*css to convert grid into slider after 992 viewport width*/
@media (max-width: 991px) {
  .tab-gallery-swiper {
    width: 100%;
    height: 29.38rem;
    order: 2;
    display: none;
  }
  .tab-gallery-swiper .tab-gallery-nav-wrapper {
    display: none;
    opacity: 0;
  }
}
.tab-gallery-swiper.activeSwiper {
  display: flex;
}
.tab-gallery-swiper.activeSwiper .tab-gallery-nav-wrapper {
  display: flex;
  opacity: 1;
  max-width: 80%;
  margin: 0 auto;
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .tab-gallery-swiper .swiper-wrapper,
  .tab-gallery-swiper figure {
    max-height: 29.38rem;
  }
}

.sde.sde-wrap-air .sde-content {
  background-color: #F7F0E3;
}
.sde.sde-wrap-air .sde-content h4,
.sde.sde-wrap-air .sde-content p {
  color: #24402A;
}
@media (max-width: 767px) {
  .sde.sde-wrap-air .sde-content {
    padding-bottom: 5rem;
  }
}
.sde.sde-wrap-bush-100 .sde-content {
  background-color: rgba(10, 93, 126, 0.1);
}
.sde.sde-wrap-bush-100 .sde-content a {
  color: #8F3533;
}
.sde.sde-wrap-bush-100 .sde-content a:hover {
  color: #24402A;
}
.sde-image {
  height: 100%;
}
@media (max-width: 767px) {
  .sde-image {
    max-height: 17.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sde-wrap:nth-of-type(even) .sde-content-container {
    flex-direction: row-reverse;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sde-wrap:nth-of-type(odd) .sde-content-container {
    flex-direction: row;
  }
}
.sde-content {
  color: #24402A;
}
@media (max-width: 767px) {
  .sde-content {
    padding-bottom: 5rem;
  }
}
.sde-content-container {
  display: flex;
  flex-direction: row;
  height: 100%;
}
@media (max-width: 767px) {
  .sde-content-container {
    flex-direction: column;
  }
}
.sde-content-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .sde-content-reverse {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .sde-content {
    text-align: left;
  }
}
.sde-content h4 {
  font-weight: 600;
}
@media (max-width: 767px) {
  .sde-content h4 {
    font-size: 2rem;
  }
}
.sde-content a {
  text-decoration: none;
  transition: 0.3s;
  font-size: 1.13rem;
  display: flex;
}
@media (max-width: 767px) {
  .sde-content a {
    justify-content: flex-start;
    font-size: 0.88rem;
    text-align: left;
  }
}
.sde-content a i {
  opacity: 0;
  transition: 0.3s;
  margin-left: 0.63rem;
  display: inline-flex;
  align-items: center;
}
.sde-content a i:before {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .sde-content a i {
    opacity: 1;
  }
}
.sde-content a:hover {
  color: #8F3533;
  font-weight: bold;
}
.sde-content a:hover span {
  text-decoration: underline;
}
.sde-content a:hover i {
  opacity: 1;
}

.blocks-primary .sde-content {
  background-color: #8F3533;
  color: #ffffff;
}
.blocks-primary .sde-content h4 {
  color: #F7F0E3;
  line-height: 2.63rem;
}
.blocks-primary .sde-content p {
  font-weight: 400;
  font-size: 1.13rem;
  line-height: 1.5rem;
  color: #F7F0E3;
}

.bush-blocks .ssp-carousel .sc-pagination {
  background-color: rgba(10, 93, 126, 0.75);
}
.bush-blocks .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #0A5D7E;
}
.bush-blocks .ssp-carousel .swiper-button-next,
.bush-blocks .ssp-carousel .swiper-button-prev {
  background-color: rgba(10, 93, 126, 0.45);
}
.bush-blocks .sde-content-container {
  background-color: rgba(10, 93, 126, 0.1);
}

.bush-wrap-blocks .ssp-carousel .sc-pagination {
  background-color: rgba(36, 64, 42, 0.45);
}
.bush-wrap-blocks .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #24402A;
}
.bush-wrap-blocks .ssp-carousel .swiper-button-next,
.bush-wrap-blocks .ssp-carousel .swiper-button-prev {
  background-color: rgba(186, 185, 127, 0.45);
}

.lbc-wrap-blocks .ssp-carousel .sc-pagination {
  background-color: rgba(36, 64, 42, 0.45);
}
.lbc-wrap-blocks .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #70940C;
}
.lbc-wrap-blocks .ssp-carousel .swiper-button-next,
.lbc-wrap-blocks .ssp-carousel .swiper-button-prev {
  background-color: rgba(112, 148, 12, 0.45);
}

@media (max-width: 1450px) and (min-width: 1200px) {
  .dining-exper-desk .sde.sde-wrap-air .sde-content {
    padding: 1.57rem;
  }
  .dining-exper-desk .sde.sde-wrap-air .sde-content h4 {
    font-size: 1.75rem;
    margin-bottom: 0.63rem;
  }
  .dining-exper-desk .aspect-ratio:before {
    padding-top: calc(var(--rh) / var(--rw) * 94%);
  }
}

.drinks-overview-content {
  padding: 2rem 8rem 2rem 8rem;
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  .drinks-overview-content {
    padding-left: 2rem;
    padding-right: 2rem;
    margin-bottom: 0;
  }
}

.sh-wrap-content:nth-of-type(even) .drinks-overview-image, .reversed-wrap:nth-of-type(odd) .drinks-overview-image, .drinks-overview-wrap:nth-of-type(even) .drinks-overview-image {
  padding-left: 8rem;
}

.drinks-overview-wrap {
  position: relative;
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  .drinks-overview-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 1439px) {
  .drinks-overview-wrap:nth-of-type(even) .drinks-overview-content {
    padding-left: 32px;
  }
}
@media (max-width: 1439px) {
  .drinks-overview-wrap:nth-of-type(even) .drinks-overview-image {
    padding-left: 0;
  }
}
.drinks-overview-wrap:last-child {
  margin-bottom: 0;
}
.drinks-overview-content {
  text-align: left;
}
@media (max-width: 1439px) {
  .drinks-overview-content {
    padding: 2rem 3.13rem;
    margin-bottom: 0;
  }
}
.drinks-overview-content .semi-title {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .drinks-overview-content .semi-title {
    margin-bottom: 1rem;
  }
}
.drinks-overview-content h2 {
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .drinks-overview-content h2 {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .drinks-overview-content p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.drinks-overview-reverse {
  flex-direction: row-reverse;
}
.drinks-overview-image {
  height: 100%;
}
.drinks-overview .bullet-list {
  padding-left: 15px;
}
@media (max-width: 991px) {
  .drinks-overview .bullet-list {
    text-align: left;
  }
}
.drinks-overview .bullet-list li {
  line-height: 1.63rem;
  margin-bottom: 1rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.13rem;
  line-height: 1.63rem;
}
@media (max-width: 991px) {
  .drinks-overview .bullet-list li {
    margin-bottom: 10px;
  }
}

::marker {
  font-size: 1.13rem;
}

@media (max-width: 1439px) {
  .reversed-wrap:nth-of-type(even) .drinks-overview-content {
    padding-left: 32px;
  }
}
.reversed-wrap:nth-of-type(even) .drinks-overview-image {
  padding-left: 0;
}
@media (max-width: 1439px) {
  .reversed-wrap:nth-of-type(even) .drinks-overview-image {
    padding-left: 0;
  }
}
@media (max-width: 1439px) {
  .reversed-wrap:nth-of-type(odd) .drinks-overview-content {
    padding-left: 32px;
  }
}
@media (max-width: 1439px) {
  .reversed-wrap:nth-of-type(odd) .drinks-overview-image {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .two-columns-grid .drinks-overview-image .aspect-ratio:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .two-columns-grid .drinks-overview-image .aspect-ratio img {
    position: relative;
    height: 28.13rem;
  }
}
@media (max-width: 479px) {
  .two-columns-grid .drinks-overview-image .aspect-ratio img {
    height: 24.38rem;
  }
}

@media (max-width: 991px) {
  .activity-inner-mobile .drinks-overview-wrap:last-child .drinks-overview-content {
    padding-bottom: 0;
  }
}

.content-strip {
  padding: 0.44rem;
  background-color: #ffffff;
  position: relative;
  z-index: 99;
}
.content-strip.transparent {
  background-color: transparent;
}
.content-strip-wrap {
  text-align: center;
  border: 1px solid #70940C;
  outline: 1px solid #70940C;
  outline-offset: 0.5rem;
}
.content-strip-wrap.primary-outline {
  border: 1px solid #8F3533;
  outline: 1px solid #8F3533;
  outline-offset: 0.5rem;
}
.content-strip-wrap.primary-outline .bullet-list li {
  font-size: 1.13rem;
  line-height: 1.32rem;
}
@media (max-width: 767px) {
  .content-strip-wrap.primary-outline .bullet-list li {
    font-size: 1rem;
    line-height: 1.19rem;
  }
}
.content-strip-wrap.bush-outline {
  border: 1px solid #0A5D7E;
  outline: 1px solid #0A5D7E;
  outline-offset: 0.5rem;
}
.content-strip-wrap.bush-outline .content-strip-text {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .content-strip-wrap.bush-outline .content-strip-text {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.content-strip-wrap.bush-outline .content-strip-text .h1 {
  color: #212B1A;
  max-width: 50rem;
  margin: 0 auto;
}
.content-strip-wrap h5 {
  font-family: "Lato", "Arial", sans-serif;
  max-width: 56.25rem;
  display: inline-block;
  font-weight: bold;
  margin-bottom: 0;
  font-size: 1.5rem;
}
@media (max-width: 479px) {
  .content-strip-wrap h5 {
    font-size: 1.13rem;
  }
}
@media (min-width: 1440px) {
  .content-strip.rates-content-strip .content-strip-wrap h5,
  .content-strip.rates-content-strip .content-strip-wrap h4 {
    line-height: 2.63rem;
  }
}
@media (max-width: 479px) {
  .content-strip.rates-content-strip .content-strip-wrap .description {
    font-size: 0.88rem;
  }
}
.content-strip.rates-content-strip .content-strip-wrap .border-card-title {
  margin-bottom: 2rem;
  font-size: 1.32rem;
}

.quote-wrap .semi-title {
  text-transform: uppercase;
  font-size: 0.75rem;
}

.df-slideshow {
  background-color: rgba(186, 185, 127, 0.3);
}

.mg-wrap {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 0rem;
       column-gap: 0rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}

/* Main CSS */
.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.grid-wrapper .wide {
  grid-column: span 2;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.cultutal-tour-thumbnail .ctt-text, .cultutal-tour-thumbnail .ctt-image img, .cultutal-tour-thumbnail .ctt-image {
  height: 100%;
  width: 100%;
}

.cultutal-tour-thumbnail.explore-tour-thumbnail {
  position: relative;
  z-index: 9;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a {
  cursor: pointer;
  text-decoration: none;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card {
  padding: 2rem 2.5rem;
  position: relative;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card h4 {
  text-transform: capitalize;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card:after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: 0;
  transition: 0.3s;
  mix-blend-mode: darken;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card:hover .ctt-text {
  text-decoration: none;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card:hover .ctt-text span,
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card:hover .ctt-text h4 {
  text-decoration: none;
}
.cultutal-tour-thumbnail.explore-tour-thumbnail a.ctt-card:hover:after {
  opacity: 1;
}
@media (max-width: 767px) {
  .cultutal-tour-thumbnail.explore-tour-thumbnail .btn-primary {
    width: 100%;
  }
}
.cultutal-tour-thumbnail .ctt-row {
  flex-wrap: wrap;
}
.cultutal-tour-thumbnail .ctt-image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.cultutal-tour-thumbnail .ctt-text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  text-align: center;
  z-index: 1;
}
.cultutal-tour-thumbnail .ctt-card {
  max-width: 20%;
  flex-basis: 20%;
  flex: 1;
  min-height: 11.32rem;
  transition: 0.3s;
}
@media (min-width: 480px) and (max-width: 991px) {
  .cultutal-tour-thumbnail .ctt-card {
    min-height: 12.75rem;
  }
}
@media (max-width: 1439px) {
  .cultutal-tour-thumbnail .ctt-card {
    max-width: 33%;
    flex-basis: 33%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .cultutal-tour-thumbnail .ctt-card {
    max-width: 50%;
    flex-basis: 50%;
    width: 100%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .cultutal-tour-thumbnail .ctt-card {
    margin: 0.63rem 0;
  }
}
@media (max-width: 767px) {
  .cultutal-tour-thumbnail .ctt-card:last-of-type() {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
  }
}
@media (max-width: 479px) {
  .cultutal-tour-thumbnail .ctt-card {
    max-width: 100%;
  }
}
.cultutal-tour-thumbnail .ctt-card:hover .ctt-text {
  text-decoration: underline;
}
.cultutal-tour-thumbnail .ctt-card .bg-glass {
  background-color: #BAB97F;
}

.hcp-info {
  position: relative;
  z-index: 99;
}
.hcp-info-image {
  height: 100%;
}
.hcp-info-image picture {
  height: 100%;
}
.hcp-info-image picture img {
  width: 100%;
}
@media (max-width: 991px) {
  .hcp-info-text {
    text-align: center;
  }
}
.hcp-info-wrap .feature-quote {
  position: relative;
  z-index: 99;
}

@media (max-width: 767px) {
  .cth {
    overflow: hidden;
  }
}
.cth-wrap .d-flex {
  padding: 0;
}
@media (max-width: 767px) {
  .cth-wrap .d-flex {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cth-wrap + .bgt-shape {
    top: 45% !important;
    right: -10% !important;
  }
}
@media (max-width: 767px) {
  .cth-wrap + .bgt-shape + .bgt-shape {
    top: 85% !important;
    right: -10% !important;
    max-width: 40%;
  }
}
@media (min-width: 992px) {
  .cth-intro-spacing {
    padding-bottom: 4rem;
    padding-top: 8rem;
  }
}
@media (max-width: 991px) {
  .cth-intro-spacing {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
@media (max-width: 1439px) {
  .cth-title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cth-center-image {
    height: 100%;
    max-height: 25rem;
  }
}
@media (max-width: 479px) {
  .cth-center-image {
    max-height: 18.75rem;
  }
}
@media (max-width: 767px) {
  .cth-center-image figure {
    height: 100%;
  }
}
.cth-center-image img {
  width: 100%;
}
.cth-content {
  display: flex;
  align-items: flex-start;
  height: 100%;
}
@media (max-width: 767px) {
  .cth-content {
    min-height: 23.75rem;
  }
}
@media (max-width: 479px) {
  .cth-content {
    min-height: 14.38rem;
  }
}
.cth-content .h6 {
  font-size: 1.13rem;
}
@media (max-width: 767px) {
  .cth-content p {
    font-size: 1rem;
  }
}
@media (max-width: 479px) {
  .cth-content p {
    font-size: 0.82rem;
  }
}
.cth-cta-links {
  display: inline-flex;
  flex-direction: column;
}
.cth-cta-links .btn {
  margin-bottom: 1.25rem;
}
@media (max-width: 1439px) {
  .cth-cta-links {
    margin-bottom: 4rem;
    flex-direction: row;
    gap: 16px;
  }
}
@media (max-width: 479px) {
  .cth-cta-links {
    margin-bottom: 2rem;
    flex-direction: column;
    gap: 16px;
  }
}

.grid-gallery {
  display: flex;
}
@media (max-width: 991px) {
  .grid-gallery {
    flex-direction: column;
    max-height: 100%;
  }
}
.grid-gallery.lodge-cards-body {
  display: none;
}
.grid-gallery.lodge-cards-body.active {
  display: flex;
}
.grid-gallery .gg-left, .grid-gallery .gg-right {
  max-width: 50%;
  flex-basis: 50%;
}
@media (max-width: 991px) {
  .grid-gallery .gg-left, .grid-gallery .gg-right {
    max-width: 100%;
    flex-basis: 100%;
    width: 100%;
  }
}
.grid-gallery .gg-span-height {
  position: relative;
}
.grid-gallery .gg-span-width-large {
  max-width: 70%;
  width: 100%;
}
.grid-gallery .gg-span-width-small {
  max-width: 30%;
  width: 100%;
}
.grid-gallery .gg-span-width-small figure {
  height: 100%;
}

@media (min-width: 1440px) {
  .sh-wrap-content:nth-of-type(even) .drinks-overview-content {
    padding-left: 0px;
  }
}
@media (max-width: 1439px) {
  .sh-wrap-content:nth-of-type(even) .drinks-overview-image {
    padding-left: 0;
  }
}

.as-detail {
  justify-content: space-between;
}
.as-logo-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  height: 90%;
}
@media (max-width: 991px) {
  .as-logo-block {
    height: 100%;
  }
}
.as-overlap {
  position: absolute;
  bottom: -2rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .as-overlap {
    position: relative;
    bottom: 0rem;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .as-overlap h4 {
    font-size: 1.5rem;
  }
}

.ot-grid {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media (max-width: 991px) {
  .ot-grid {
    -moz-column-gap: unset;
         column-gap: unset;
    -moz-columns: 2;
         columns: 2;
  }
}
.ot-item {
  margin-bottom: 1.88rem;
}
@media (max-width: 991px) {
  .ot-item {
    margin-bottom: 3.13rem;
  }
}
.ot-overlap-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.63rem;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  .ot-overlap-strip {
    bottom: 1.25rem;
  }
}
@media (max-width: 479px) {
  .ot-overlap-strip h4 {
    font-size: 1rem;
  }
}
.ots-gallery-nav-wrapper {
  bottom: 0.69rem;
}

.modular-grid-gallery .grid-gallery {
  max-height: initial;
}
@media (max-width: 1439px) {
  .modular-grid-gallery .grid-gallery .d-flex {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .modular-grid-gallery .grid-gallery .d-flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .modular-grid-gallery .gg-left .gg-span-width-large, .modular-grid-gallery .gg-right .gg-span-width-large, .modular-grid-gallery .gg-left .gg-span-width-full, .modular-grid-gallery .gg-right .gg-span-width-full, .modular-grid-gallery .gg-left .gg-span-width-small, .modular-grid-gallery .gg-right .gg-span-width-small {
    max-width: 50%;
    width: 100%;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .modular-grid-gallery .gg-left .gg-span-width-large figure, .modular-grid-gallery .gg-right .gg-span-width-large figure, .modular-grid-gallery .gg-left .gg-span-width-full figure, .modular-grid-gallery .gg-right .gg-span-width-full figure, .modular-grid-gallery .gg-left .gg-span-width-small figure, .modular-grid-gallery .gg-right .gg-span-width-small figure {
    height: 100%;
    aspect-ratio: 3/4;
  }
}
@media (max-width: 991px) {
  .modular-grid-gallery .gg-left .gg-span-width-full, .modular-grid-gallery .gg-right .gg-span-width-full {
    max-width: 100%;
  }
}
.modular-grid-gallery .gg-right {
  position: relative;
}
@media (max-width: 991px) {
  .modular-grid-gallery .gg-right .gg-span-width-large, .modular-grid-gallery .gg-right .gg-span-width-full, .modular-grid-gallery .gg-right .gg-span-width-small {
    max-width: 100%;
    width: 100%;
  }
}
.modular-grid-gallery .gg-span-width-large {
  max-width: 60%;
  width: 100%;
  position: relative;
}
.modular-grid-gallery .gg-span-width-full {
  max-width: 100%;
  width: 100%;
  position: relative;
}
.modular-grid-gallery .gg-span-width-small {
  position: relative;
  max-width: 40%;
  width: 100%;
}
.modular-grid-gallery .gg-span-width-small figure {
  height: 100%;
}

@media (max-width: 991px) {
  .experience-mobileview .grid-gallery > .swiper-slide {
    width: 100%;
  }
  .experience-mobileview .grid-gallery > .swiper-slide .swiper-slide {
    max-width: 50%;
    height: auto;
  }
  .experience-mobileview .grid-gallery > .swiper-slide .swiper-slide figure {
    height: 100%;
  }
  .experience-mobileview .grid-gallery > .swiper-slide:last-child {
    display: flex;
    flex-wrap: wrap;
  }
  .experience-mobileview .grid-gallery > .swiper-slide:last-child > .swiper-slide:last-child {
    max-width: 100%;
    order: -1;
  }
}
.ct-banner-swiper,
.swiper-detail-block,
.multiplerow-slider {
  /*.icon-primary-arrow {
      &::before {
          color: $bush;
      }
  }*/
}
.ct-banner-swiper .sub-title-paragraph,
.swiper-detail-block .sub-title-paragraph,
.multiplerow-slider .sub-title-paragraph {
  font-size: 0.88rem;
  line-height: 1.25rem;
}
.ct-banner-swiper .sc-pagination,
.swiper-detail-block .sc-pagination,
.multiplerow-slider .sc-pagination {
  position: absolute;
  bottom: 0;
  bottom: 0;
  margin: 0 auto;
  flex-direction: row;
  left: 0;
  right: 0;
  width: 15.63rem;
  height: 5rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .ct-banner-swiper .sc-pagination,
  .swiper-detail-block .sc-pagination,
  .multiplerow-slider .sc-pagination {
    bottom: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .ct-banner-swiper .sc-pagination,
  .swiper-detail-block .sc-pagination,
  .multiplerow-slider .sc-pagination {
    height: 3.13rem;
  }
}
@media (max-width: 767px) {
  .ct-banner-swiper .sc-pagination,
  .swiper-detail-block .sc-pagination,
  .multiplerow-slider .sc-pagination {
    width: 13.75rem;
    height: 2.5rem;
  }
}
.ct-banner-swiper .swiper-slide,
.swiper-detail-block .swiper-slide,
.multiplerow-slider .swiper-slide {
  z-index: 2;
}
.ct-banner-swiper .swiper-slide-active .sdb-text-wrap,
.swiper-detail-block .swiper-slide-active .sdb-text-wrap,
.multiplerow-slider .swiper-slide-active .sdb-text-wrap {
  opacity: 1;
}
@media (min-width: 480px) and (max-width: 767px) {
  .ct-banner-swiper .swiper-slide .aspect-ratio::before,
  .swiper-detail-block .swiper-slide .aspect-ratio::before,
  .multiplerow-slider .swiper-slide .aspect-ratio::before {
    padding-top: calc(var(--rh) / var(--rw) * 120%);
  }
}
@media (max-width: 479px) {
  .ct-banner-swiper .swiper-slide .aspect-ratio::before,
  .swiper-detail-block .swiper-slide .aspect-ratio::before,
  .multiplerow-slider .swiper-slide .aspect-ratio::before {
    padding-top: calc(var(--rh) / var(--rw) * 140%);
  }
}
.ct-banner-swiper .sdb-text-wrap,
.swiper-detail-block .sdb-text-wrap,
.multiplerow-slider .sdb-text-wrap {
  opacity: 0;
}
@media (max-width: 991px) {
  .ct-banner-swiper .sdb-left,
  .swiper-detail-block .sdb-left,
  .multiplerow-slider .sdb-left {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.ct-banner-swiper .sdb-left-text,
.ct-banner-swiper .sdb-left p,
.swiper-detail-block .sdb-left-text,
.swiper-detail-block .sdb-left p,
.multiplerow-slider .sdb-left-text,
.multiplerow-slider .sdb-left p {
  margin-bottom: 32px;
  color: #212B1A;
}
.ct-banner-swiper .sdb-right-list,
.swiper-detail-block .sdb-right-list,
.multiplerow-slider .sdb-right-list {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (min-width: 992px) {
  .ct-banner-swiper .sdb-right-list,
  .swiper-detail-block .sdb-right-list,
  .multiplerow-slider .sdb-right-list {
    padding-left: 3.75rem;
  }
}
@media (max-width: 1439px) {
  .ct-banner-swiper .sdb-right-list,
  .swiper-detail-block .sdb-right-list,
  .multiplerow-slider .sdb-right-list {
    justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .ct-banner-swiper .sdb-right-list,
  .swiper-detail-block .sdb-right-list,
  .multiplerow-slider .sdb-right-list {
    padding-left: 10px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
}
.ct-banner-swiper .sdb-right .bullet-list li,
.swiper-detail-block .sdb-right .bullet-list li,
.multiplerow-slider .sdb-right .bullet-list li {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.helpful-slider-text h2 {
  color: #70940C;
  margin-bottom: 4rem;
}
.helpful-slider-text p {
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .helpful-slider-text p {
    font-size: 1.13rem;
    line-height: 2.38rem;
  }
}
@media (max-width: 479px) {
  .helpful-slider-text p {
    font-size: 0.88rem;
    line-height: 2.13rem;
  }
}

.ac-wrap {
  border: 1px solid #C2805D;
}
.ac-group {
  border-bottom: 1px solid #C2805D;
}
.ac-group:last-of-type {
  border-bottom: 0;
}
.ac-description {
  padding: 2rem;
  padding-top: 0;
  display: none;
}
.ac-header {
  cursor: pointer;
  padding: 2rem;
}
.ac-header.open .ac-title {
  color: #8F3533;
}
.ac-header.open .ac-title:before {
  transform: rotate(180deg);
}
.ac-header.open .ac-description {
  display: block;
}
.ac-title {
  margin-bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.ac-title:after, .ac-title:before {
  top: 50%;
  position: absolute;
  width: 1.75rem;
  height: 1px;
  background-color: #8F3533;
  content: "";
  opacity: 1;
  transition: ease 0.3s;
  right: 0;
}
@media (max-width: 479px) {
  .ac-title:after, .ac-title:before {
    width: 1.25rem;
  }
}
.ac-title:before {
  transform: rotate(90deg);
}
@media (max-width: 479px) {
  .ac-title {
    padding-right: 3.13rem;
  }
}

.green-faq .ac-header.open .ac-title {
  color: #70940C;
}
.green-faq .ac-wrap {
  border: 1px solid #212B1A;
}
.green-faq .ac-title {
  color: #70940C;
}
.green-faq .ac-title:after, .green-faq .ac-title:before {
  background-color: #70940C;
}
.green-faq .ac-group {
  border-bottom: 1px solid #919F69;
}

.forest-faq .ac-header.open .ac-title {
  color: #24402A;
}
.forest-faq .ac-header.open .ac-description p {
  color: #2D3A2A;
}
.forest-faq .ac-wrap {
  border: 1px solid #212B1A;
}
.forest-faq .ac-title {
  color: #24402A;
}
.forest-faq .ac-title:after, .forest-faq .ac-title:before {
  background-color: #24402A;
}
.forest-faq .ac-group {
  border-bottom: 1px solid #212B1A;
}

.spa-banner-swiper,
.ct-banner-swiper {
  z-index: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .spa-banner-swiper .sc-pagination,
  .ct-banner-swiper .sc-pagination {
    bottom: unset;
  }
}

.minus-spacing {
  max-width: 95%;
  margin-top: -13.5rem;
  margin-bottom: 8rem;
  margin: -13.5rem auto 8rem;
}
@media (max-width: 767px) {
  .minus-spacing {
    margin-top: -6.25rem;
  }
}
@media (min-width: 992px) {
  .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .swiper-button-prev,
  .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .swiper-button-next {
    display: none;
  }
}
@media (min-width: 992px) {
  .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .sc-pagination {
    background-color: transparent;
  }
}

@media (min-width: 992px) {
  .bg-gold .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .swiper-button-prev,
  .bg-gold .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .swiper-button-next {
    display: flex;
  }
}
@media (min-width: 992px) {
  .bg-gold .minus-spacing.family-slider .navigation-wrapper.primary-slider-navigation .sc-pagination {
    background-color: rgba(143, 53, 51, 0.75);
  }
}

.lv-grid {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 1.88rem;
       column-gap: 1.88rem;
}
@media (max-width: 991px) {
  .lv-grid {
    -moz-columns: 1;
         columns: 1;
  }
}
.lv-grid-1 .lv-item {
  display: block;
}
@media (max-width: 991px) {
  .lv-grid-1 .lv-item {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 991px) {
  .lv-grid-1 .lv-item .aspect-ratio {
    height: 100%;
  }
  .lv-grid-1 .lv-item .aspect-ratio:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .lv-grid-1 .lv-image {
    height: 35rem;
  }
}
.lv-grid-air .lv-caption-large-link {
  background-color: #F7F0E3;
}
.lv-grid-air .lv-caption-large-link h5 {
  color: #24402A;
}
.lv-item {
  position: relative;
}
@media (max-width: 991px) {
  .lv-item {
    display: none;
  }
  .lv-item.currentTab {
    display: block;
  }
  .lv-item.currentTab .lv-image .aspect-ratio:before {
    display: none;
  }
  .lv-item.currentTab .lv-image .aspect-ratio img {
    position: relative;
    height: 36.25rem;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .lv-item.currentTab .lv-caption-large-link {
    padding: 1.88rem;
  }
  .lv-item.currentTab .lv-caption-large-link h5 {
    font-size: 1.75rem;
    line-height: 2.25rem;
  }
}
.lv-caption-small {
  padding: 0.63rem;
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: rgba(143, 53, 51, 0.75);
  padding: 0.63rem;
  z-index: 9;
  font-size: 0.75rem;
}
.lv-caption-small .semi-title {
  margin-bottom: 0;
}
.lv-caption-large {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 9;
  width: 100%;
  color: #ffffff;
}
@media (max-width: 767px) {
  .lv-caption-large {
    bottom: 0rem;
  }
}
.lv-caption-large-link {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
  color: #ffffff;
  text-decoration: none;
  display: block;
  font-size: 1.75rem;
}
.lv-caption-large-link:hover {
  text-decoration: none;
}
@media (max-width: 991px) {
  .lv-caption-large-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 5.63rem;
    padding: 1rem;
    text-align: center;
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) and (max-width: 1439px) {
  .lv-caption-large-link {
    font-size: 1.25rem;
  }
}
.lv-caption-large-link .icon {
  margin-left: 15px;
  display: inline-flex;
}
.lv-caption-large-link.list {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 12.5rem;
}
@media (max-width: 991px) {
  .lv-caption-large-link.list {
    padding: 1rem;
    min-height: 7.82rem;
    height: 100%;
  }
}
.lv-caption-large-link h5 {
  margin-bottom: 0;
  font-family: "Lato", "Arial", sans-serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  .lv-caption-large-link h5 {
    font-size: 1.13rem;
  }
}

.lodge-showcase-images {
  padding-left: 2rem;
  padding-right: 2rem;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  gap: 1.25rem;
}
@media (max-width: 479px) {
  .lodge-showcase-images {
    gap: 0.63rem;
  }
}
.lodge-showcase-images .scg-image {
  width: 100%;
  position: relative;
  width: 100%;
  padding-top: 50%;
}
.lodge-showcase-images .scg-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1439px) {
  .selati-exp-title .bgt-shape {
    max-width: 17%;
  }
}

.suites {
  background-color: #CEA496;
  padding-left: 2rem;
  padding-right: 2rem;
}
.suites.forest-suites {
  background-color: rgba(186, 185, 127, 0.2);
}
@media (max-width: 479px) {
  .suites.mob-suites .ss-wrap .ss-caption {
    position: unset;
    margin-bottom: -0.06rem;
  }
}
@media (max-width: 479px) {
  .suites.mob-suites .ss-wrap .ss-block {
    height: auto !important;
    min-height: auto !important;
  }
}
@media (max-width: 767px) {
  .suites.mob-suites .ss-wrap .ss-button {
    bottom: 1.44rem;
    right: auto !important;
    left: 50%;
    transform: translateX(-50%);
  }
}
.suites .ss-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.suites .ss-block {
  position: relative;
  height: 100%;
}
.suites .ss-block.ss-block-h-100,
.suites .ss-block .ss-image-full {
  height: 100%;
}
.suites .ss-block.ss-block-h-100 img,
.suites .ss-block .ss-image-full img {
  height: 100%;
  width: 100%;
}
.suites .ss-block.ss-block-h-100 .ss-button,
.suites .ss-block .ss-image-full .ss-button {
  right: 3rem;
}
@media (max-width: 767px) {
  .suites .ss-block {
    min-height: 18.75rem;
  }
}
.suites .ss-block .aspect-ratio img {
  min-height: 25rem;
}
.suites .ss-block a {
  text-decoration: none;
}
@media (max-width: 991px) {
  .suites .ss-block {
    height: auto;
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 479px) {
  .suites .ss-block {
    min-height: 15.63rem;
  }
}
.suites .ss-caption {
  position: absolute;
  z-index: 9;
  left: 0;
  right: 0;
  text-align: left;
  padding: 1rem 2rem;
  height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  color: #ffffff;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .suites .ss-caption {
    padding: 0 0 0 0.94rem;
  }
}
.suites .ss-caption h4 {
  font-size: 1.5rem;
  text-transform: capitalize;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .suites .ss-caption h4 {
    font-size: 1.32rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 767px) {
  .suites .ss-caption {
    height: 3.75rem;
    padding: 15px;
    overflow: hidden;
  }
}
@media (max-width: 479px) {
  .suites .ss-caption {
    max-height: 6.25rem;
    height: auto;
  }
}
.suites .ss-caption .semi-title {
  color: #ffffff;
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .suites .ss-caption span {
    display: block;
    height: 100%;
    width: 12.82rem;
  }
  .suites .ss-caption span img {
    -o-object-fit: cover;
       object-fit: cover;
    display: flex;
  }
}
@media (min-width: 480px) and (max-width: 1439px) {
  .suites .ss-caption .btn-suite {
    margin: 8px 15px 8px 15px;
  }
}
.suites .ss-button {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
.suites .ss-left {
  width: 100%;
  padding-right: 2rem;
  max-height: 700px;
  height: 100%;
}
@media (max-width: 991px) {
  .suites .ss-left {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}
.suites .ss-image-wrapper {
  height: 100%;
  display: flex;
}
@media (max-width: 991px) {
  .suites .ss-image-wrapper {
    height: auto;
  }
}
.suites .ss-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 43.75rem;
  width: 100%;
}
@media (max-width: 991px) {
  .suites .ss-image-wrapper img {
    min-height: 65vw;
    height: 65vw;
    max-height: 500px;
    margin: 0;
  }
}
.suites .ss-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 700px;
  height: 100%;
}
@media (max-width: 991px) {
  .suites .ss-right {
    max-height: 100%;
    height: 100%;
  }
}
.suites .ss-right .ss-block:last-of-type .ss-caption {
  background-color: #BE8E36;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .suites .ss-right .ss-block:last-of-type span img {
    position: relative;
    top: -0.93rem;
    right: 0;
    transform: translateX(50%);
  }
}
@media (max-width: 991px) {
  .suites .ss-right .ss-block {
    max-width: 100%;
    flex-basis: 100%;
    margin-bottom: 1rem;
    min-height: auto;
  }
}
.suites .ss-right.multi-blocks .ss-block {
  max-height: 20.94rem;
  height: 100%;
}
@media (max-width: 991px) {
  .suites .ss-right.multi-blocks .ss-block {
    height: 100%;
    max-height: 100%;
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 479px) {
  .suites .ss-right.multi-blocks .ss-block {
    height: 15.63rem;
    min-height: 15.63rem;
  }
}
.suites .ss-right-image-wrapper {
  height: 100%;
  display: flex;
}
.suites .ss-right-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .suites .ss-right-image-wrapper img {
    height: 65vw !important;
    max-height: 500px;
    margin: 0;
  }
}
.suites .ss-right .ss-block-h-100 .ss-caption span img {
  max-width: 8.25rem;
  top: 0;
}

.no-background {
  background-color: transparent;
}

.featured-suites.suites {
  background-color: #F7F0E3;
}
.featured-suites.suites .style-title {
  color: #212B1A;
}
@media (max-width: 767px) {
  .featured-suites.suites .style-title {
    font-size: 1.38rem;
  }
}
@media (max-width: 767px) {
  .featured-suites.suites .style-subtitle {
    font-size: 0.88rem;
  }
}
@media (max-width: 767px) {
  .featured-suites .ss-left {
    height: auto;
  }
}
.featured-suites .ss-left .ss-image-wrapper {
  min-height: auto;
}
@media (max-width: 767px) {
  .featured-suites .ss-left .ss-image-wrapper {
    min-height: 31.25rem;
  }
}
@media (max-width: 479px) {
  .featured-suites .ss-left .ss-image-wrapper {
    min-height: auto;
  }
}
.featured-suites .ss-left .ss-image-wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.featured-suites .ss-left .ss-caption.bg-1 {
  background-color: #70940C;
}
.featured-suites .ss-left .ss-caption h4 {
  font-size: 2.25rem;
}
@media (max-width: 479px) {
  .featured-suites .ss-left .ss-caption h4 {
    font-size: 1.13rem;
  }
}
.featured-suites .ss-left .ss-caption p {
  font-size: 2rem;
}
@media (max-width: 479px) {
  .featured-suites .ss-left .ss-caption p {
    font-size: 0.88rem;
  }
}
@media (max-width: 767px) {
  .featured-suites .ss-left .ss-block {
    margin-bottom: 1.25rem;
  }
}
.featured-suites .ss-right .ss-block:first-of-type .bg-1 {
  background-color: #8F3533;
}
.featured-suites .ss-right .ss-block:last-of-type .bg-1 {
  background-color: #BE8E36;
}
.featured-suites .ss-right .ss-caption {
  padding: 1.5rem 1.25rem;
}
@media (max-width: 479px) {
  .featured-suites .ss-right .ss-caption {
    padding: 0.94rem 1.25rem;
  }
}
.featured-suites .ss-right .ss-caption h4 {
  font-size: 1.5rem;
}
@media (max-width: 479px) {
  .featured-suites .ss-right .ss-caption h4 {
    font-size: 1.13rem;
  }
}
.featured-suites .ss-right .ss-caption p {
  font-size: 1.32rem;
  color: #ffffff;
}
@media (max-width: 479px) {
  .featured-suites .ss-right .ss-caption p {
    font-size: 0.88rem;
  }
}
.featured-suites .ss-caption {
  top: initial;
  bottom: 0px;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem;
  height: auto;
}
@media (max-width: 767px) {
  .featured-suites .ss-caption {
    padding: 1.5rem;
  }
}
@media (max-width: 479px) {
  .featured-suites .ss-caption {
    padding: 1.13rem;
  }
}
.featured-suites .ss-caption h4,
.featured-suites .ss-caption p {
  color: #ffffff;
}
@media (max-width: 1439px) {
  .featured-suites .ss-caption h4,
  .featured-suites .ss-caption p {
    padding: 0;
  }
}

.horizontal-tab-gallery,
.horizontal-tab-content {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
}
.horizontal-tab-gallery.hgt-inner-navigation,
.horizontal-tab-content.hgt-inner-navigation {
  flex-direction: column;
}
@media (max-width: 991px) {
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper.suite-b-tab,
  .horizontal-tab-content.hgt-inner-navigation .hgt-wrapper.suite-b-tab {
    overflow: auto;
  }
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper.suite-b-tab .hgt-link,
  .horizontal-tab-content.hgt-inner-navigation .hgt-wrapper.suite-b-tab .hgt-link {
    flex: 1;
  }
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper.suite-b-tab .hgt-link .semi-title,
  .horizontal-tab-content.hgt-inner-navigation .hgt-wrapper.suite-b-tab .hgt-link .semi-title {
    white-space: nowrap;
  }
}
@media (max-width: 991px) {
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper,
  .horizontal-tab-content.hgt-inner-navigation .hgt-wrapper {
    overflow: visible;
    justify-content: flex-start;
  }
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper:after,
  .horizontal-tab-content.hgt-inner-navigation .hgt-wrapper:after {
    display: none;
  }
}
.horizontal-tab-gallery.hgt-inner-navigation .hgt-link,
.horizontal-tab-content.hgt-inner-navigation .hgt-link {
  padding: 0.94rem 2.25rem;
}
@media (max-width: 991px) {
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-link,
  .horizontal-tab-content.hgt-inner-navigation .hgt-link {
    flex: 1;
    justify-content: center;
  }
}
@media (max-width: 479px) {
  .horizontal-tab-gallery.hgt-inner-navigation .hgt-link,
  .horizontal-tab-content.hgt-inner-navigation .hgt-link {
    padding: 0.94rem 1rem;
  }
}
.horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after,
.horizontal-tab-content.hgt-inner-navigation .hgt-link.active:after {
  border-top: 35px solid #ffffff;
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: none !important;
  top: 100%;
}
.horizontal-tab-gallery .tab-wrap,
.horizontal-tab-content .tab-wrap {
  opacity: 0;
  width: 0;
  height: 0;
  transition: 0.3s;
}
.horizontal-tab-gallery .tab-active,
.horizontal-tab-content .tab-active {
  opacity: 1;
  width: 100%;
  height: 100%;
}
.horizontal-tab-gallery .drinks-overview-wrap,
.horizontal-tab-content .drinks-overview-wrap {
  z-index: 99;
}
.horizontal-tab-gallery .hgt-wrapper,
.horizontal-tab-content .hgt-wrapper {
  position: relative;
  display: flex;
  padding: 0 1rem;
  justify-content: center;
  list-style: none;
  margin-bottom: 0;
  z-index: 9;
}
@media (max-width: 991px) {
  .horizontal-tab-gallery .hgt-wrapper,
  .horizontal-tab-content .hgt-wrapper {
    overflow-x: scroll;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
  }
}
@media (max-width: 767px) {
  .horizontal-tab-gallery .hgt-wrapper:after,
  .horizontal-tab-content .hgt-wrapper:after {
    position: absolute;
    top: 70%;
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #8F3533;
    content: "";
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.horizontal-tab-gallery .hgt-wrapper .hgt-link:last-child,
.horizontal-tab-content .hgt-wrapper .hgt-link:last-child {
  margin-right: 0;
}
.horizontal-tab-gallery .hgt-wrapper.forest,
.horizontal-tab-content .hgt-wrapper.forest {
  background-color: #24402A;
}
@media (max-width: 767px) {
  .horizontal-tab-gallery .hgt-wrapper.forest.hgt-wrapper:after,
  .horizontal-tab-content .hgt-wrapper.forest.hgt-wrapper:after {
    border-top: 20px solid #24402A;
  }
}
.horizontal-tab-gallery .hgt-wrapper.forest .hgt-link.active:after,
.horizontal-tab-content .hgt-wrapper.forest .hgt-link.active:after {
  border-top: 50px solid #24402A;
}
.horizontal-tab-gallery .hgt-wrapper.forest-dark-100,
.horizontal-tab-content .hgt-wrapper.forest-dark-100 {
  background-color: #344E39;
}
@media (max-width: 767px) {
  .horizontal-tab-gallery .hgt-wrapper.forest-dark-100.hgt-wrapper:after,
  .horizontal-tab-content .hgt-wrapper.forest-dark-100.hgt-wrapper:after {
    border-top: 20px solid #344E39;
  }
}
.horizontal-tab-gallery .hgt-wrapper.forest-dark-100 .hgt-link span.semi-title,
.horizontal-tab-content .hgt-wrapper.forest-dark-100 .hgt-link span.semi-title {
  color: #F7F0E3;
}
.horizontal-tab-gallery .hgt-wrapper.forest-dark-100 .hgt-link.active:after,
.horizontal-tab-content .hgt-wrapper.forest-dark-100 .hgt-link.active:after {
  border-top: 50px solid #344E39;
}
.horizontal-tab-gallery .hgt-link,
.horizontal-tab-content .hgt-link {
  display: inline-block;
  color: #ffffff;
  padding: 1.63rem 1.25rem;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .horizontal-tab-gallery .hgt-link,
  .horizontal-tab-content .hgt-link {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 991px) {
  .horizontal-tab-gallery .hgt-link,
  .horizontal-tab-content .hgt-link {
    display: flex;
    align-items: center;
    padding: 1.57rem 1.25rem;
    margin: 0;
  }
  .horizontal-tab-gallery .hgt-link .semi-title,
  .horizontal-tab-content .hgt-link .semi-title {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .horizontal-tab-gallery .hgt-link,
  .horizontal-tab-content .hgt-link {
    display: flex;
    align-items: center;
  }
}
.horizontal-tab-gallery .hgt-link .semi-title,
.horizontal-tab-content .hgt-link .semi-title {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 0.75rem;
}
.horizontal-tab-gallery .hgt-link.active,
.horizontal-tab-content .hgt-link.active {
  position: relative;
}
.horizontal-tab-gallery .hgt-link.active:after,
.horizontal-tab-content .hgt-link.active:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
}
.horizontal-tab-gallery .hgt-link a,
.horizontal-tab-content .hgt-link a {
  text-decoration: none;
  white-space: nowrap;
}
.horizontal-tab-gallery .grid-gallery,
.horizontal-tab-content .grid-gallery {
  display: none;
  height: 0;
  transition: 0.3s;
}
.horizontal-tab-gallery .grid-gallery.active,
.horizontal-tab-content .grid-gallery.active {
  opacity: 1;
  height: 100%;
  width: 100%;
  display: flex;
  transition: height 0ms 400ms, opacity 400ms 0ms;
}
.horizontal-tab-gallery.team-outer-wrapper,
.horizontal-tab-content.team-outer-wrapper {
  flex-direction: column;
}

.sticky-menu-slider .ots-next:after, .sticky-menu-slider .ots-prev:after {
  color: #ffffff;
}
.sticky-nav {
  display: flex;
  justify-content: center;
  position: sticky;
  z-index: 999;
  top: 0;
}
@media (max-width: 991px) {
  .sticky-nav .hgt-wrapper {
    overflow: unset;
  }
}
@media (max-width: 991px) {
  .sticky-nav .hgt-link {
    justify-content: center;
    width: auto;
  }
}
.sticky-nav .hgt-link a {
  padding-left: 2.32rem;
  padding-right: 2.32rem;
}

.offset-spacing .container-768:first-of-type, .offset-spacing .container-1280:first-of-type, .offset-spacing .container-1440:first-of-type {
  padding-top: 8rem;
}

.nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-wrapper {
  overflow-x: auto;
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-link span {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-link.active:after {
    top: 71%;
  }
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link {
    font-size: 0.75rem;
    padding: 0.63rem !important;
  }
}
.nav-style-3 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  top: 80%;
  border-top: 0px solid transparent !important;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #DBE3DD !important;
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
    top: 90%;
  }
}
.nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-wrapper {
  overflow-x: auto;
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-link span {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .nav-style-3 .horizontal-tab-gallery.bg-forest-dark-100 .hgt-link.active:after {
    top: 71%;
  }
}

.not-sticky-nav .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff !important;
  border-top: 0;
  top: calc(100% - 10px);
}

.center-tab-menu.horizontal-tab-gallery.hgt-inner-navigation .hgt-wrapper {
  justify-content: center;
}
.center-tab-menu.horizontal-tab-gallery.hgt-inner-navigation .hgt-link {
  flex: 0 1 auto;
}
.center-tab-menu.horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff !important;
  border-top: 0;
  top: calc(100% - 10px);
}

.overflow-slider {
  overflow-x: auto;
  position: relative;
  width: 100%;
}
.overflow-slider .hgt-navigation {
  flex-wrap: nowrap;
  width: 100%;
}
.overflow-slider .hgt-wrapper {
  width: 100%;
}
.overflow-slider .hgt-link span {
  white-space: nowrap;
}

.styel-tri-remove .horizontal-tab-content .hgt-wrapper:after {
  display: none;
}

.tg-gallery {
  margin-top: -8rem;
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media (max-width: 767px) {
  .tg-gallery {
    margin-top: -4rem;
    -moz-columns: 1;
         columns: 1;
  }
}
@media (max-width: 479px) {
  .tg-gallery {
    -moz-columns: 1;
         columns: 1;
  }
}
.tg-item {
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 991px) {
  .tg-selati {
    margin-top: -4rem;
  }
}
@media (max-width: 767px) {
  .tg-selati {
    margin-top: -2rem;
  }
}

.round-caption-background {
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -1px;
}
@media (min-width: 1440px) {
  .round-caption-background {
    max-height: 10.63rem;
    height: 100%;
  }
}
.round-caption-background img {
  max-width: 15.63rem;
}
@media (max-width: 1439px) {
  .round-caption-background img {
    max-width: 15.63rem;
  }
}
@media (max-width: 991px) {
  .round-caption-background img {
    max-width: 12.5rem;
  }
}
.round-caption {
  top: 0;
  position: absolute;
  z-index: 3;
  text-align: center;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.round-caption .semi-title {
  max-width: 130px;
  font-family: "Playfair Display", "Arial", sans-serif;
}
.round-caption h4 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  line-height: 3.5rem;
}
.round-caption h4.long-text {
  font-size: 1.5rem;
}
.round-caption h4.double-line {
  font-size: 1.75rem;
  line-height: 2.63rem;
}
@media (max-width: 991px) {
  .round-caption h4.double-line {
    line-height: 1.88rem;
    font-size: 1.63rem;
  }
}
@media (max-width: 767px) {
  .round-caption h4.double-line {
    line-height: 1.75rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 479px) {
  .round-caption h4.double-line {
    line-height: 1.75rem;
    font-size: 1.38rem;
  }
}
@media (max-width: 991px) {
  .round-caption h4 {
    line-height: 1.88rem;
    font-size: 1.63rem;
  }
}
@media (max-width: 767px) {
  .round-caption h4 {
    line-height: 1.75rem;
    font-size: 1.5rem;
  }
}
.round-caption.multiple-text {
  max-height: 6.57rem;
}
.round-caption.tag-font-wrap {
  justify-content: start;
  margin-top: 0.94rem;
}

.show-case {
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  z-index: 9;
  display: flex;
  height: 60%;
  justify-content: center;
  gap: 1.69rem;
}
@media (max-width: 767px) {
  .show-case {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 479px) {
  .show-case {
    gap: 0.63rem;
  }
}
.show-case .scg-center-column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  max-height: 653px;
}
@media (max-width: 767px) {
  .show-case .scg-center-column {
    flex-direction: row;
    gap: 1.69rem;
    max-height: 18.75rem;
  }
}
@media (max-width: 479px) {
  .show-case .scg-center-column {
    gap: 0.63rem;
  }
}
.show-case .scg-center-column .scg-image {
  max-height: 47%;
  height: 100%;
}
@media (max-width: 479px) {
  .show-case .scg-center-column .scg-image {
    margin-bottom: 0;
  }
}
.show-case .scg-center-column .scg-image-wrap {
  width: 100%;
  flex-basis: 100%;
}
.show-case .scg-large {
  max-width: 33%;
  width: 100%;
}
@media (max-width: 767px) {
  .show-case .scg-large {
    max-width: 100%;
    width: 100%;
  }
}
.show-case .scg-large .scg-image-wrap {
  width: 100%;
  flex-basis: 100%;
  max-height: 40.82rem;
}
@media (max-width: 991px) {
  .show-case .scg-large .scg-image-wrap {
    max-height: 28.13rem;
  }
}
@media (max-width: 767px) {
  .show-case .scg-large .scg-image-wrap {
    max-height: 18.75rem;
  }
}
.show-case .scg-image {
  position: relative;
}
.show-case .scg-image-wrap {
  height: 100%;
  display: flex;
}
.show-case .scg-image-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.show-case .scg-image:hover .hover-text,
.show-case .scg-image:hover .hover-text-big {
  opacity: 1;
}
.show-case .scg-image .hover-text,
.show-case .scg-image .hover-text-big {
  position: absolute;
  content: "";
  top: 10%;
  left: 0;
  right: 0;
  z-index: 1;
  color: #ffffff;
  transform: rotate(-10deg);
  max-width: 16.25rem;
  margin: 0 auto;
  opacity: 0;
  transition: 0.3s;
}
.show-case .scg-image .hover-text .ht-text1,
.show-case .scg-image .hover-text-big .ht-text1 {
  text-align: left;
}
.show-case .scg-image .hover-text .ht-text2,
.show-case .scg-image .hover-text-big .ht-text2 {
  text-align: right;
}
@media (max-width: 991px) {
  .show-case .scg-image .hover-text,
  .show-case .scg-image .hover-text-big {
    max-width: 9.38rem;
  }
}
.show-case .scg-image .hover-text-big {
  max-width: 23.69rem;
}
@media (max-width: 1439px) {
  .show-case .scg-image .hover-text-big {
    max-width: 12.5rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .show-case .scg-image .hover-text-big {
    max-width: 6.25rem;
  }
}
.show-case .scg-image .hover-text-big-inner {
  font-size: 2.13rem;
}
@media (max-width: 1439px) {
  .show-case .scg-image .hover-text-big-inner {
    font-size: 1.13rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .show-case .scg-image .hover-text-big-inner {
    font-size: 0.63rem;
  }
}
@media (max-width: 479px) {
  .show-case {
    -moz-columns: 1;
         columns: 1;
  }
  .show-case .scg-image-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .show-case {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 479px) {
  .selati-image-gallery .sc-wrap {
    max-height: unset;
  }
}

.vector-title {
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 479px) {
  .vector-title {
    font-size: 2rem;
    display: inline-block;
  }
  .vector-title strong {
    margin-right: 0;
  }
}
.vector-title-left, .vector-title-right {
  display: inline-block;
  align-items: center;
}
.vector-title-left {
  margin-right: 1.88rem;
}
@media (max-width: 479px) {
  .vector-title-left {
    margin-right: 0.63rem;
    width: 15px;
  }
}
.vector-title-right {
  margin-left: 1.88rem;
}
@media (max-width: 479px) {
  .vector-title-right {
    margin-left: 0.63rem;
    width: 15px;
  }
}
@media (max-width: 479px) {
  .vector-title-left, .vector-title-right {
    position: absolute;
    top: 5%;
  }
}
@media (max-width: 479px) {
  .vector-title-left {
    right: 100%;
  }
}
@media (max-width: 479px) {
  .vector-title-right {
    left: 100%;
  }
}

@media (max-width: 991px) {
  .lodge-categories > div {
    display: block;
  }
  .lodge-categories > div:not(.currentTab) {
    display: none;
  }
}
.lodge-categories .lc-image {
  max-width: 19.38rem;
  width: 100%;
  margin: 0 auto;
}
.lodge-categories .lc-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .lodge-categories .lc-image {
    max-width: 210px;
  }
}
.lodge-categories .lc-text {
  text-align: center;
}

/*for adding tabs in the responsive layout*/
.badges-wrap {
  display: none;
}
@media (max-width: 991px) {
  .badges-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 2.19rem;
    margin-bottom: 2.19rem;
  }
}
.badges-wrap.lodges-tabs {
  padding: 1.57rem 1.13rem;
}
.badges-wrap.lodges-tabs .badge {
  padding: 0.57rem 0.94rem;
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 {
    padding: 0.94rem 0;
    margin-bottom: 0rem;
  }
}
.badges-wrap.badges-style-2 .badge {
  font-weight: normal;
  background-color: transparent;
  transition: 0.6s;
  border: 1px solid transparent;
}
.badges-wrap.badges-style-2 .badge.active, .badges-wrap.badges-style-2 .badge:hover {
  font-weight: 600;
  background-color: #CEA496;
}
.badges-wrap.badges-style-2 .badge:first-of-type {
  margin-left: 0;
}
.badges-wrap.badges-style-2 .badge:last-of-type {
  margin-right: 0;
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 .badge {
    width: 5.63rem;
  }
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 .badge.badge-forest {
    width: 4rem;
    padding: 0.57rem 0.57rem;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .badges-wrap.badges-style-2 .badge.badge-forest {
    width: 4rem;
  }
}
.badges-wrap.lodge-badges {
  padding: 1.57rem 0;
}
@media (max-width: 767px) {
  .badges-wrap.lodge-badges {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.badges-wrap.lodge-badges .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.82rem;
  height: 2.88rem;
  text-align: center;
}
@media (max-width: 767px) {
  .badges-wrap.lodge-badges .badge {
    margin: 0 0.63rem 0.63rem;
  }
}
@media (max-width: 991px) {
  .badges-wrap .badge {
    padding: 0.57rem 1.82rem;
    font-size: 1.13rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: capitalize;
    border-radius: 0.38rem;
    border: 1px solid transparent;
    transition: 0.6s;
  }
  .badges-wrap .badge-primary {
    color: #8F3533;
    background-color: #CEA496;
  }
  .badges-wrap .badge-primary.active {
    border: 1px solid #8F3533;
  }
  .badges-wrap .badge-secondary {
    color: #24402A;
    background-color: rgba(186, 185, 127, 0.2);
  }
  .badges-wrap .badge-secondary.active {
    border: 1px solid #24402A;
  }
  .badges-wrap .badge-forest {
    color: #24402A;
    background-color: rgba(36, 64, 42, 0.2);
  }
  .badges-wrap .badge-forest.active {
    border: 1px solid #24402A;
  }
  .badges-wrap .badge-highlight {
    color: #0A5D7E;
    background-color: #E0E8EE;
  }
  .badges-wrap .badge-highlight.active {
    border: 1px solid #0A5D7E;
  }
}
@media (max-width: 479px) {
  .badges-wrap .badge {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 {
    padding: 0.94rem 0;
    margin-bottom: 0rem;
  }
}
.badges-wrap.badges-style-2 .badge {
  font-weight: normal;
  background-color: transparent;
  transition: 0.6s;
  border: 1px solid transparent;
}
.badges-wrap.badges-style-2 .badge.active, .badges-wrap.badges-style-2 .badge:hover {
  font-weight: 600;
  background-color: #CEA496;
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 .badge:first-of-type {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 .badge:last-of-type {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .badges-wrap.badges-style-2 .badge {
    width: 5.63rem;
    margin: 0 0.32rem;
  }
}
@media (max-width: 479px) {
  .badges-wrap.badges-style-2 .badge {
    width: 4.38rem;
  }
}

.highlight-lodge {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.highlight-lodge .hl-image {
  display: flex;
  justify-content: center;
}
.highlight-lodge .hl-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 767px) {
  .highlight-lodge .hl-text-wrap {
    text-align: center;
  }
}
.highlight-lodge .hl-text-wrap h3 {
  text-transform: capitalize;
}
.highlight-lodge-container {
  position: relative;
}

.centered {
  height: 35rem;
}
@media (max-width: 479px) {
  .centered {
    height: 18.75rem;
  }
}
.centered .swiper-slide {
  max-height: 28.75rem;
  height: 100%;
  overflow: hidden;
  margin: auto 0;
  transition: 0.3s ease-out;
}
.centered .swiper-slide .image-wrap {
  display: flex;
  height: 100%;
}
.centered .swiper-slide .image-wrap figure {
  width: 100%;
  display: flex;
}
.centered .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.centered .swiper-slide-title-overlay {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  padding: 1rem 2rem;
  max-height: 18.75rem;
  overflow: auto;
}
.centered .swiper-slide-title-overlay h3:last-child {
  margin-bottom: 0;
}
.centered .swiper-slide-active {
  max-height: 35rem;
  transition: ease-in;
}
@media (max-width: 479px) {
  .centered .swiper-slide-active {
    max-height: 16.25rem;
  }
}
.centered .swiper-button-next, .centered .swiper-rtl .swiper-button-prev, .centered .swiper-button-prev, .centered .swiper-rtl .swiper-button-next {
  height: 6.63rem;
  width: 6.63rem;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
}
.centered .swiper-button-next .icon-primary-arrow, .centered .swiper-rtl .swiper-button-prev .icon-primary-arrow, .centered .swiper-button-prev .icon-primary-arrow, .centered .swiper-rtl .swiper-button-next .icon-primary-arrow {
  display: flex;
  font-size: 2.5rem;
}
@media (max-width: 479px) {
  .centered .swiper-button-next .icon-primary-arrow, .centered .swiper-rtl .swiper-button-prev .icon-primary-arrow, .centered .swiper-button-prev .icon-primary-arrow, .centered .swiper-rtl .swiper-button-next .icon-primary-arrow {
    font-size: 1.25rem;
  }
}
@media (max-width: 479px) {
  .centered .swiper-button-next, .centered .swiper-rtl .swiper-button-prev, .centered .swiper-button-prev, .centered .swiper-rtl .swiper-button-next {
    height: 3.32rem;
    width: 3.32rem;
  }
}
.centered .swiper-button-next, .centered .swiper-rtl .swiper-button-prev {
  right: 15%;
  left: auto;
}
.centered .swiper-button-next:after, .centered .swiper-rtl .swiper-button-prev:after {
  content: none;
}
@media (max-width: 479px) {
  .centered .swiper-button-next, .centered .swiper-rtl .swiper-button-prev {
    right: 5%;
  }
}
.centered .swiper-button-prev, .centered .swiper-rtl .swiper-button-next {
  left: 15%;
  right: auto;
}
.centered .swiper-button-prev:after, .centered .swiper-rtl .swiper-button-next:after {
  content: none;
}
@media (max-width: 479px) {
  .centered .swiper-button-prev, .centered .swiper-rtl .swiper-button-next {
    left: 5%;
  }
}
.centered .swiper-button-prev .icon-primary-arrow, .centered .swiper-rtl .swiper-button-next .icon-primary-arrow {
  transform: rotate(180deg);
}
.style-1 .sc-image-caption {
  color: #CEA496;
}
.style-1 .font-secondary {
  color: #CEA496;
}
.style-1 .page-banner {
  z-index: 2;
}
.style-1 .hgroup {
  color: #8F3533;
}
.style-1 .pb-highlight-text .hgroup {
  color: #8F3533;
}
.style-1-theme-btn {
  background-color: #8f3533;
}
.style-1 .bg-1 {
  background-color: #8F3533;
}
@media (max-width: 991px) {
  .style-1 .bg-1.drinks-overview {
    background-color: transparent;
  }
}
.style-1 .bg-2 {
  background-color: #CEA496;
}
@media (max-width: 991px) {
  .style-1 .bg-2.drinks-overview {
    background-color: transparent;
  }
}
.style-1 .bg-3 {
  background-color: #F6EFED;
}
@media (max-width: 991px) {
  .style-1 .bg-3.drinks-overview {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .style-1 .feature-slideshow-2 .fs-navigation {
    background: #8F3533;
  }
  .style-1 .feature-slideshow-2 .fs-navigation .on-link.active, .style-1 .feature-slideshow-2 .fs-navigation .on-link:hover {
    background-color: #b67c7a;
  }
}
.style-1 .badges-wrap.badges-style-2 .badge {
  border-color: #CEA496;
}
.style-1 .badges-wrap.badges-style-2 .badge.active,
.style-1 .badges-wrap.badges-style-2 .badge .badges-wrap.badges-style-2 .badge:hover {
  background-color: #CEA496;
  border-color: #8F3533;
}
.style-1 .badges-wrap.badges-style-2 .badge-forest {
  border-color: #CEA496;
}
.style-1 .badges-wrap.badges-style-2 .badge-forest.active,
.style-1 .badges-wrap.badges-style-2 .badge-forest .badges-wrap.badges-style-2 .badge:hover {
  background-color: #F6EFED;
  border-color: #CEA496;
}
@media (max-width: 991px) {
  .style-1 .two-columns-grid .drinks-overview-content {
    background-color: #F6EFED;
  }
}
.style-1 .btn-suite {
  background-color: #F7F0E3;
  color: #8F3533;
  transition: 0.3s;
}
.style-1 .btn-suite:hover {
  background-color: #8F3533;
  color: #F7F0E3;
}
.style-1 .sticky-nav {
  background-color: #8F3533;
}
@media (max-width: 991px) {
  .style-1 .sticky-menu-slider {
    background-color: #8F3533;
  }
}
.style-1 .dine-slider .ssp-carousel .sc-caption-inner {
  background-color: #F6EFED;
  color: #ffffff;
}
@media (min-width: 992px) {
  .style-1 .dine-slider .ssp-carousel .sc-caption-inner {
    max-width: 26.88rem;
  }
}
.style-1 .dine-slider .ssp-carousel .sc-caption-inner .btn {
  background-color: #8f3533;
}
.style-1 .dine-slider .ssp-carousel .sc-pagination {
  background-color: rgba(206, 164, 150, 0.75);
}
.style-1 .dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #8F3533;
}
.style-1 .dine-slider + .bg-2 .btn {
  background-color: #8f3533;
}
.style-1 .horizontal-tab-gallery .hgt-wrapper:after,
.style-1 .horizontal-tab-content .hgt-wrapper:after {
  border-top: 40px solid #8F3533;
}
.style-1 .lv-caption-small {
  background: rgba(143, 53, 51, 0.75);
}
.style-1 .horizontal-tab-gallery .hgt-link.active:after {
  border-bottom: 40px solid #ffffff;
}
.style-1 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active {
  background-color: #b67c7a;
}
.style-1 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-top: 30px solid #b67c7a;
  border-bottom: none;
}
@media (max-width: 767px) {
  .style-1-tab-content .horizontal-tab-gallery .hgt-wrapper:after,
  .style-1-tab-content .horizontal-tab-content .hgt-wrapper:after {
    border-top: 20px solid #8F3533;
  }
}
.style-1-tab-content .horizontal-tab-gallery .hgt-link.active,
.style-1-tab-content .horizontal-tab-content .hgt-link.active {
  background-color: #b67c7a;
}
.style-1-tab-content .horizontal-tab-gallery .hgt-link.active:after,
.style-1-tab-content .horizontal-tab-content .hgt-link.active:after {
  border-bottom: 20px solid #ffffff;
}
.style-1 .content-tile {
  background-color: #CEA496;
}
.style-1 .content-tile .btn {
  background-color: #8F3533;
}
.style-1 .lv-grid-style-2 .lv-caption-large {
  background-color: #8F3533;
}
.style-1 .centered .swiper-slide-title-overlay {
  background-color: rgba(143, 53, 51, 0.75);
}
.style-1 .centered .swiper-button-next, .style-1 .centered .swiper-rtl .swiper-button-prev, .style-1 .centered .swiper-button-prev, .style-1 .centered .swiper-rtl .swiper-button-next {
  background-color: rgba(143, 53, 51, 0.75);
}
.style-1 .highlight-message-wrap {
  border-color: #8F3533;
}
.style-1 .highlight-message-inner {
  background-color: #F6EFED;
  border-color: #8F3533;
}
.style-1 .content-strip-wrap {
  border: 1px solid #8F3533;
  outline: 1px solid #8F3533;
}
.style-1 .content-strip-wrap h5 span {
  color: #8F3533;
}
.style-1 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #8F3533;
}
.style-1 .feature-testimonial .semi-title {
  color: #8F3533;
}
.style-1 .secondary-arrows .swiper-button-next,
.style-1 .secondary-arrows .swiper-button-prev {
  background-color: rgba(206, 164, 150, 0.75);
}
.style-1 .icon-list-item .icon {
  color: #8F3533;
}
.style-1 .lsc-note {
  border: 1px solid #8F3533;
}
.style-1 .lsc-note .semi-title {
  color: #8F3533;
}
.style-1 .lsc-note-text-wrap .icon {
  color: #8F3533;
}
.style-1 .suites {
  background-color: #F6EFED;
}
.style-1 .green-faq .ac-wrap {
  border: 1px solid #8F3533;
}
.style-1 .green-faq .ac-group {
  border-bottom: 1px solid #CEA496;
}
.style-1 .green-faq .ac-title {
  color: #8F3533;
}
.style-1 .green-faq .ac-title:before, .style-1 .green-faq .ac-title:after {
  background-color: #CEA496;
}
.style-1 .green-faq .ac-header.open .ac-title {
  color: #8F3533;
}
.style-1 .lodge-btn {
  background-color: #8f3533;
}

.sc-image-text {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 115px;
}
@media (max-width: 1439px) {
  .sc-image-text {
    max-height: 115px;
  }
}
@media (max-width: 767px) {
  .sc-image-text {
    min-height: 80px;
  }
}
.sc-image-text h4 {
  font-weight: 500;
}

.style-1 .h1,
.style-1 h2 {
  color: #8F3533;
}
.style-1 .quote path {
  fill: #8F3533;
}

.style-1 .dine-slider .ssp-carousel .sc-caption-inner {
  color: #8F3533;
}
.style-1 .dine-slider .ssp-carousel .sc-caption-inner p {
  color: #423718;
}
.style-1 .theme-red-slider .navigation-wrapper .swiper-button-next,
.style-1 .theme-red-slider .navigation-wrapper .swiper-button-prev {
  background-color: rgba(182, 124, 122, 0.75);
}

.style-2 .sc-image-caption {
  color: #919F69;
}
.style-2 .font-secondary {
  color: #919F69;
}
.style-2 .page-banner {
  z-index: 2;
}
.style-2 .hgroup {
  color: #24402A;
}
.style-2 .pb-highlight-text .hgroup {
  color: #24402A;
}
.style-2-theme-btn {
  background-color: #24402A;
}
.style-2 .bg-1 {
  background-color: #70940C;
}
@media (max-width: 991px) {
  .style-2 .bg-1.drinks-overview {
    background-color: transparent;
  }
}
.style-2 .bg-2 {
  background-color: #919F69;
}
@media (max-width: 991px) {
  .style-2 .bg-2.drinks-overview {
    background-color: transparent;
  }
}
.style-2 .bg-3 {
  background-color: #F1F1E5;
}
@media (max-width: 991px) {
  .style-2 .bg-3.drinks-overview {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .style-2 .feature-slideshow-2 .fs-navigation {
    background: #70940C;
  }
  .style-2 .feature-slideshow-2 .fs-navigation .on-link.active, .style-2 .feature-slideshow-2 .fs-navigation .on-link:hover {
    background-color: #A2B961;
  }
}
.style-2 .badges-wrap.badges-style-2 .badge {
  border-color: #919F69;
}
.style-2 .badges-wrap.badges-style-2 .badge.active,
.style-2 .badges-wrap.badges-style-2 .badge .badges-wrap.badges-style-2 .badge:hover {
  background-color: #919F69;
  border-color: #70940C;
}
.style-2 .badges-wrap.badges-style-2 .badge-forest {
  border-color: #919F69;
}
.style-2 .badges-wrap.badges-style-2 .badge-forest.active,
.style-2 .badges-wrap.badges-style-2 .badge-forest .badges-wrap.badges-style-2 .badge:hover {
  background-color: #F1F1E5;
  border-color: #919F69;
}
@media (max-width: 991px) {
  .style-2 .two-columns-grid .drinks-overview-content {
    background-color: #F1F1E5;
  }
}
.style-2 .btn-suite {
  background-color: #F7F0E3;
  color: #70940C;
  transition: 0.3s;
}
.style-2 .btn-suite:hover {
  background-color: #70940C;
  color: #F7F0E3;
}
.style-2 .sticky-nav {
  background-color: #70940C;
}
@media (max-width: 991px) {
  .style-2 .sticky-menu-slider {
    background-color: #70940C;
  }
}
.style-2 .dine-slider .ssp-carousel .sc-caption-inner {
  background-color: #919F69;
  color: #ffffff;
}
@media (min-width: 992px) {
  .style-2 .dine-slider .ssp-carousel .sc-caption-inner {
    max-width: 26.88rem;
  }
}
.style-2 .dine-slider .ssp-carousel .sc-caption-inner .btn {
  background-color: #24402A;
}
.style-2 .dine-slider .ssp-carousel .sc-pagination {
  background-color: rgba(145, 159, 105, 0.75);
}
.style-2 .dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #70940C;
}
.style-2 .dine-slider + .bg-2 .btn {
  background-color: #24402A;
}
.style-2 .horizontal-tab-gallery .hgt-wrapper:after,
.style-2 .horizontal-tab-content .hgt-wrapper:after {
  border-top: 40px solid #70940C;
}
.style-2 .lv-caption-small {
  background: rgba(112, 148, 12, 0.75);
}
.style-2 .horizontal-tab-gallery .hgt-link.active:after {
  border-bottom: 40px solid #ffffff;
}
.style-2 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active {
  background-color: #A2B961;
}
.style-2 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-top: 30px solid #A2B961;
  border-bottom: none;
}
@media (max-width: 767px) {
  .style-2-tab-content .horizontal-tab-gallery .hgt-wrapper:after,
  .style-2-tab-content .horizontal-tab-content .hgt-wrapper:after {
    border-top: 20px solid #70940C;
  }
}
.style-2-tab-content .horizontal-tab-gallery .hgt-link.active,
.style-2-tab-content .horizontal-tab-content .hgt-link.active {
  background-color: #A2B961;
}
.style-2-tab-content .horizontal-tab-gallery .hgt-link.active:after,
.style-2-tab-content .horizontal-tab-content .hgt-link.active:after {
  border-bottom: 20px solid #ffffff;
}
.style-2 .content-tile {
  background-color: #919F69;
}
.style-2 .content-tile .btn {
  background-color: #70940C;
}
.style-2 .lv-grid-style-2 .lv-caption-large {
  background-color: #70940C;
}
.style-2 .centered .swiper-slide-title-overlay {
  background-color: rgba(112, 148, 12, 0.75);
}
.style-2 .centered .swiper-button-next, .style-2 .centered .swiper-rtl .swiper-button-prev, .style-2 .centered .swiper-button-prev, .style-2 .centered .swiper-rtl .swiper-button-next {
  background-color: rgba(112, 148, 12, 0.75);
}
.style-2 .highlight-message-wrap {
  border-color: #70940C;
}
.style-2 .highlight-message-inner {
  background-color: #F1F1E5;
  border-color: #70940C;
}
.style-2 .content-strip-wrap {
  border: 1px solid #70940C;
  outline: 1px solid #70940C;
}
.style-2 .content-strip-wrap h5 span {
  color: #70940C;
}
.style-2 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #70940C;
}
.style-2 .feature-testimonial .semi-title {
  color: #70940C;
}
.style-2 .secondary-arrows .swiper-button-next,
.style-2 .secondary-arrows .swiper-button-prev {
  background-color: rgba(145, 159, 105, 0.75);
}
.style-2 .icon-list-item .icon {
  color: #70940C;
}
.style-2 .lsc-note {
  border: 1px solid #70940C;
}
.style-2 .lsc-note .semi-title {
  color: #70940C;
}
.style-2 .lsc-note-text-wrap .icon {
  color: #70940C;
}
.style-2 .suites {
  background-color: #F1F1E5;
}
.style-2 .green-faq .ac-wrap {
  border: 1px solid #70940C;
}
.style-2 .green-faq .ac-group {
  border-bottom: 1px solid #919F69;
}
.style-2 .green-faq .ac-title {
  color: #70940C;
}
.style-2 .green-faq .ac-title:before, .style-2 .green-faq .ac-title:after {
  background-color: #919F69;
}
.style-2 .green-faq .ac-header.open .ac-title {
  color: #70940C;
}
.style-2 .lodge-btn {
  background-color: #24402A;
}

.elefun-panel .content-tile {
  height: 100%;
  padding: 4rem;
  color: #ffffff;
}
@media (max-width: 767px) {
  .elefun-panel .content-tile {
    text-align: center;
  }
}
.elefun-panel a.aspect-ratio {
  height: 100%;
}

@media (max-width: 1439px) {
  .style-2-dine-slider .ssp-carousel .sc-caption-inner .fs-scrollable {
    max-height: 16.88rem;
    overflow: scroll;
  }
}
@media (max-width: 991px) {
  .style-2-dine-slider .ssp-carousel .sc-caption-inner .fs-scrollable {
    max-height: 100%;
    height: 100%;
  }
}

.theme-olive-slider .navigation-wrapper .swiper-button-next,
.theme-olive-slider .navigation-wrapper .swiper-button-prev {
  background-color: rgba(162, 185, 97, 0.75);
}

.style-2 .h1,
.style-2 h2 {
  color: #24402A;
}
.style-2 .quote path {
  fill: #70940C;
}

.style-3 .sc-image-caption {
  color: #4b855c;
}
.style-3 .font-secondary {
  color: #4b855c;
}
.style-3 .page-banner {
  z-index: 2;
}
.style-3 .hgroup {
  color: #4b855c;
}
.style-3 .pb-highlight-text .hgroup {
  color: #4b855c;
}
.style-3-theme-btn {
  background-color: #70940C;
}
.style-3 .bg-1 {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .style-3 .bg-1.drinks-overview {
    background-color: transparent;
  }
}
.style-3 .bg-2 {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .style-3 .bg-2.drinks-overview {
    background-color: transparent;
  }
}
.style-3 .bg-3 {
  background-color: #DBE3DD;
}
@media (max-width: 991px) {
  .style-3 .bg-3.drinks-overview {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .style-3 .feature-slideshow-2 .fs-navigation {
    background: #4b855c;
  }
  .style-3 .feature-slideshow-2 .fs-navigation .on-link.active, .style-3 .feature-slideshow-2 .fs-navigation .on-link:hover {
    background-color: #718375;
  }
}
.style-3 .badges-wrap.badges-style-2 .badge {
  border-color: #4b855c;
}
.style-3 .badges-wrap.badges-style-2 .badge.active,
.style-3 .badges-wrap.badges-style-2 .badge .badges-wrap.badges-style-2 .badge:hover {
  background-color: #4b855c;
  border-color: #4b855c;
}
.style-3 .badges-wrap.badges-style-2 .badge-forest {
  border-color: #4b855c;
}
.style-3 .badges-wrap.badges-style-2 .badge-forest.active,
.style-3 .badges-wrap.badges-style-2 .badge-forest .badges-wrap.badges-style-2 .badge:hover {
  background-color: #DBE3DD;
  border-color: #4b855c;
}
@media (max-width: 991px) {
  .style-3 .two-columns-grid .drinks-overview-content {
    background-color: #DBE3DD;
  }
}
.style-3 .btn-suite {
  background-color: #F7F0E3;
  color: #4b855c;
  transition: 0.3s;
}
.style-3 .btn-suite:hover {
  background-color: #4b855c;
  color: #F7F0E3;
}
.style-3 .sticky-nav {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .style-3 .sticky-menu-slider {
    background-color: #4b855c;
  }
}
.style-3 .dine-slider .ssp-carousel .sc-caption-inner {
  background-color: #4b855c;
  color: #ffffff;
}
@media (min-width: 992px) {
  .style-3 .dine-slider .ssp-carousel .sc-caption-inner {
    max-width: 26.88rem;
  }
}
.style-3 .dine-slider .ssp-carousel .sc-caption-inner .btn {
  background-color: #70940C;
}
.style-3 .dine-slider .ssp-carousel .sc-pagination {
  background-color: rgba(75, 133, 92, 0.75);
}
.style-3 .dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #4b855c;
}
.style-3 .dine-slider + .bg-2 .btn {
  background-color: #70940C;
}
.style-3 .horizontal-tab-gallery .hgt-wrapper:after,
.style-3 .horizontal-tab-content .hgt-wrapper:after {
  border-top: 40px solid #4b855c;
}
.style-3 .lv-caption-small {
  background: rgba(75, 133, 92, 0.75);
}
.style-3 .horizontal-tab-gallery .hgt-link.active:after {
  border-bottom: 40px solid #ffffff;
}
.style-3 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active {
  background-color: #718375;
}
.style-3 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-top: 30px solid #718375;
  border-bottom: none;
}
@media (max-width: 767px) {
  .style-3-tab-content .horizontal-tab-gallery .hgt-wrapper:after,
  .style-3-tab-content .horizontal-tab-content .hgt-wrapper:after {
    border-top: 20px solid #4b855c;
  }
}
.style-3-tab-content .horizontal-tab-gallery .hgt-link.active,
.style-3-tab-content .horizontal-tab-content .hgt-link.active {
  background-color: #718375;
}
.style-3-tab-content .horizontal-tab-gallery .hgt-link.active:after,
.style-3-tab-content .horizontal-tab-content .hgt-link.active:after {
  border-bottom: 20px solid #ffffff;
}
.style-3 .content-tile {
  background-color: #4b855c;
}
.style-3 .content-tile .btn {
  background-color: #4b855c;
}
.style-3 .lv-grid-style-2 .lv-caption-large {
  background-color: #4b855c;
}
.style-3 .centered .swiper-slide-title-overlay {
  background-color: rgba(75, 133, 92, 0.75);
}
.style-3 .centered .swiper-button-next, .style-3 .centered .swiper-rtl .swiper-button-prev, .style-3 .centered .swiper-button-prev, .style-3 .centered .swiper-rtl .swiper-button-next {
  background-color: rgba(75, 133, 92, 0.75);
}
.style-3 .highlight-message-wrap {
  border-color: #4b855c;
}
.style-3 .highlight-message-inner {
  background-color: #DBE3DD;
  border-color: #4b855c;
}
.style-3 .content-strip-wrap {
  border: 1px solid #4b855c;
  outline: 1px solid #4b855c;
}
.style-3 .content-strip-wrap h5 span {
  color: #4b855c;
}
.style-3 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #4b855c;
}
.style-3 .feature-testimonial .semi-title {
  color: #4b855c;
}
.style-3 .secondary-arrows .swiper-button-next,
.style-3 .secondary-arrows .swiper-button-prev {
  background-color: rgba(75, 133, 92, 0.75);
}
.style-3 .icon-list-item .icon {
  color: #4b855c;
}
.style-3 .lsc-note {
  border: 1px solid #4b855c;
}
.style-3 .lsc-note .semi-title {
  color: #4b855c;
}
.style-3 .lsc-note-text-wrap .icon {
  color: #4b855c;
}
.style-3 .suites {
  background-color: #DBE3DD;
}
.style-3 .green-faq .ac-wrap {
  border: 1px solid #4b855c;
}
.style-3 .green-faq .ac-group {
  border-bottom: 1px solid #4b855c;
}
.style-3 .green-faq .ac-title {
  color: #4b855c;
}
.style-3 .green-faq .ac-title:before, .style-3 .green-faq .ac-title:after {
  background-color: #4b855c;
}
.style-3 .green-faq .ac-header.open .ac-title {
  color: #4b855c;
}
.style-3 .lodge-btn {
  background-color: #70940C;
}

@media (max-width: 479px) {
  .style-3 .suites .ss-caption {
    flex-direction: column;
  }
  .style-3 .suites .ss-caption h4 {
    margin-bottom: 10px;
  }
}
.style-3 .suites .btn-suite {
  background-color: #70940c;
  color: white;
}
@media (max-width: 479px) {
  .style-3 .suites .btn-suite {
    line-height: 0.6;
  }
}
.style-3 .lv-caption-small {
  background-color: rgba(112, 148, 12, 0.75);
}

.style-3-dine-slider .ssp-carousel.reserve-slider .sc-pagination .swiper-pagination-bullet-active {
  background-color: #24402A;
}
.style-3-dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #70940C;
}

.style-3 .h1,
.style-3 h2 {
  color: #24402A;
}
.style-3 .quote path {
  fill: #70940C;
}

.theme-green-slider .navigation-wrapper .swiper-button-next,
.theme-green-slider .navigation-wrapper .swiper-button-prev {
  background-color: rgba(36, 64, 42, 0.75);
}

.style-4 .sc-image-caption {
  color: #0A5D7E;
}
.style-4 .font-secondary {
  color: #0A5D7E;
}
.style-4 .page-banner {
  z-index: 2;
}
.style-4 .hgroup {
  color: #0A5D7E;
}
.style-4 .pb-highlight-text .hgroup {
  color: #0A5D7E;
}
.style-4-theme-btn {
  background-color: #BE8E36;
}
.style-4 .bg-1 {
  background-color: #0A5D7E;
}
@media (max-width: 991px) {
  .style-4 .bg-1.drinks-overview {
    background-color: transparent;
  }
}
.style-4 .bg-2 {
  background-color: #0A5D7E;
}
@media (max-width: 991px) {
  .style-4 .bg-2.drinks-overview {
    background-color: transparent;
  }
}
.style-4 .bg-3 {
  background-color: #E0E8EE;
}
@media (max-width: 991px) {
  .style-4 .bg-3.drinks-overview {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .style-4 .feature-slideshow-2 .fs-navigation {
    background: #0A5D7E;
  }
  .style-4 .feature-slideshow-2 .fs-navigation .on-link.active, .style-4 .feature-slideshow-2 .fs-navigation .on-link:hover {
    background-color: #6096AB;
  }
}
.style-4 .badges-wrap.badges-style-2 .badge {
  border-color: #0A5D7E;
}
.style-4 .badges-wrap.badges-style-2 .badge.active,
.style-4 .badges-wrap.badges-style-2 .badge .badges-wrap.badges-style-2 .badge:hover {
  background-color: #0A5D7E;
  border-color: #0A5D7E;
}
.style-4 .badges-wrap.badges-style-2 .badge-forest {
  border-color: #0A5D7E;
}
.style-4 .badges-wrap.badges-style-2 .badge-forest.active,
.style-4 .badges-wrap.badges-style-2 .badge-forest .badges-wrap.badges-style-2 .badge:hover {
  background-color: #E0E8EE;
  border-color: #0A5D7E;
}
@media (max-width: 991px) {
  .style-4 .two-columns-grid .drinks-overview-content {
    background-color: #E0E8EE;
  }
}
.style-4 .btn-suite {
  background-color: #F7F0E3;
  color: #0A5D7E;
  transition: 0.3s;
}
.style-4 .btn-suite:hover {
  background-color: #0A5D7E;
  color: #F7F0E3;
}
.style-4 .sticky-nav {
  background-color: #0A5D7E;
}
@media (max-width: 991px) {
  .style-4 .sticky-menu-slider {
    background-color: #0A5D7E;
  }
}
.style-4 .dine-slider .ssp-carousel .sc-caption-inner {
  background-color: #0A5D7E;
  color: #ffffff;
}
@media (min-width: 992px) {
  .style-4 .dine-slider .ssp-carousel .sc-caption-inner {
    max-width: 26.88rem;
  }
}
.style-4 .dine-slider .ssp-carousel .sc-caption-inner .btn {
  background-color: #BE8E36;
}
.style-4 .dine-slider .ssp-carousel .sc-pagination {
  background-color: rgba(10, 93, 126, 0.75);
}
.style-4 .dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #0A5D7E;
}
.style-4 .dine-slider + .bg-2 .btn {
  background-color: #BE8E36;
}
.style-4 .horizontal-tab-gallery .hgt-wrapper:after,
.style-4 .horizontal-tab-content .hgt-wrapper:after {
  border-top: 40px solid #0A5D7E;
}
.style-4 .lv-caption-small {
  background: rgba(10, 93, 126, 0.75);
}
.style-4 .horizontal-tab-gallery .hgt-link.active:after {
  border-bottom: 40px solid #ffffff;
}
.style-4 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active {
  background-color: #6096AB;
}
.style-4 .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-top: 30px solid #6096AB;
  border-bottom: none;
}
@media (max-width: 767px) {
  .style-4-tab-content .horizontal-tab-gallery .hgt-wrapper:after,
  .style-4-tab-content .horizontal-tab-content .hgt-wrapper:after {
    border-top: 20px solid #0A5D7E;
  }
}
.style-4-tab-content .horizontal-tab-gallery .hgt-link.active,
.style-4-tab-content .horizontal-tab-content .hgt-link.active {
  background-color: #6096AB;
}
.style-4-tab-content .horizontal-tab-gallery .hgt-link.active:after,
.style-4-tab-content .horizontal-tab-content .hgt-link.active:after {
  border-bottom: 20px solid #ffffff;
}
.style-4 .content-tile {
  background-color: #0A5D7E;
}
.style-4 .content-tile .btn {
  background-color: #0A5D7E;
}
.style-4 .lv-grid-style-2 .lv-caption-large {
  background-color: #0A5D7E;
}
.style-4 .centered .swiper-slide-title-overlay {
  background-color: rgba(10, 93, 126, 0.75);
}
.style-4 .centered .swiper-button-next, .style-4 .centered .swiper-rtl .swiper-button-prev, .style-4 .centered .swiper-button-prev, .style-4 .centered .swiper-rtl .swiper-button-next {
  background-color: rgba(10, 93, 126, 0.75);
}
.style-4 .highlight-message-wrap {
  border-color: #0A5D7E;
}
.style-4 .highlight-message-inner {
  background-color: #E0E8EE;
  border-color: #0A5D7E;
}
.style-4 .content-strip-wrap {
  border: 1px solid #0A5D7E;
  outline: 1px solid #0A5D7E;
}
.style-4 .content-strip-wrap h5 span {
  color: #0A5D7E;
}
.style-4 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #0A5D7E;
}
.style-4 .feature-testimonial .semi-title {
  color: #0A5D7E;
}
.style-4 .secondary-arrows .swiper-button-next,
.style-4 .secondary-arrows .swiper-button-prev {
  background-color: rgba(10, 93, 126, 0.75);
}
.style-4 .icon-list-item .icon {
  color: #0A5D7E;
}
.style-4 .lsc-note {
  border: 1px solid #0A5D7E;
}
.style-4 .lsc-note .semi-title {
  color: #0A5D7E;
}
.style-4 .lsc-note-text-wrap .icon {
  color: #0A5D7E;
}
.style-4 .suites {
  background-color: #E0E8EE;
}
.style-4 .green-faq .ac-wrap {
  border: 1px solid #0A5D7E;
}
.style-4 .green-faq .ac-group {
  border-bottom: 1px solid #0A5D7E;
}
.style-4 .green-faq .ac-title {
  color: #0A5D7E;
}
.style-4 .green-faq .ac-title:before, .style-4 .green-faq .ac-title:after {
  background-color: #0A5D7E;
}
.style-4 .green-faq .ac-header.open .ac-title {
  color: #0A5D7E;
}
.style-4 .lodge-btn {
  background-color: #BE8E36;
}

.style-4 .btn-suite {
  background-color: #0A5D7E;
  color: #ffffff;
}
.style-4 .amani-intro .btn:hover {
  background-color: #24402A;
}
.style-4 .suites .ss-wrap {
  z-index: 99;
}
.style-4 .suites .ss-button .btn:hover {
  background-color: #ffffff;
  color: #0A5D7E;
}
.style-4 .theme-blue-slider .navigation-wrapper.primary-slider-navigation .swiper-button-next,
.style-4 .theme-blue-slider .navigation-wrapper.primary-slider-navigation .swiper-button-prev {
  background-color: rgba(96, 150, 171, 0.75);
}

.style-4 .h1,
.style-4 h2 {
  color: #0A5D7E;
}
.style-4 .quote path {
  fill: #0A5D7E;
}

@media (max-width: 767px) {
  .suite-b .round-caption {
    margin-top: 0.32rem;
  }
}
.suite-b .round-caption h4 {
  line-height: 2.82rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 767px) {
  .suite-b .round-caption h4 {
    line-height: 2.07rem;
  }
}
.suite-b .round-caption .semi-title {
  max-width: 130px;
}
.suite-b .round-caption-background img {
  max-width: 15.63rem;
  width: 100%;
}
@media (max-width: 767px) {
  .suite-b .round-caption-background img {
    max-width: 12.5rem;
  }
}
.suite-b .banner-tag-line {
  display: flex;
  justify-content: end;
}
.suite-b .banner-tag-line .btl-text-wrap {
  border-left: 2px solid #ffffff;
  padding-left: 0.94rem;
}
.suite-b .banner-tag-line .btl-text {
  font-family: "Lato", "Arial", sans-serif;
  margin-bottom: 0;
  font-weight: 300;
  line-height: 1.2;
}
.suite-b .banner-line {
  justify-content: start;
}

.sb-highlights {
  position: relative;
  margin-bottom: 2rem;
}
.sb-highlights:nth-child(odd) {
  padding-right: 1rem;
}
.sb-highlights:nth-child(even) {
  padding-left: 1rem;
}
@media (max-width: 767px) {
  .sb-highlights:nth-child(even), .sb-highlights:nth-child(odd) {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  .sb-highlights .sb-image-wrap .aspect-ratio {
    min-height: 18.75rem;
  }
}
.sb-text-wrap {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  padding: 24px 32px;
  background-color: #919F69;
  transition: 0.3s;
  text-decoration: none;
}
.sb-text-wrap .hgroup {
  color: #ffffff;
  text-align: center;
}
@media (max-width: 479px) {
  .sb-text-wrap {
    bottom: 0;
  }
}
.sb-slide-headline, .sb-slide-footer {
  position: relative;
  padding: 24px 32px;
  background-color: #919F69;
}
.sb-slide-body {
  text-align: center;
  padding: 2rem 1rem;
}
.sb-slide-content {
  color: #423718;
}
.sb-slide-content .semi-title {
  letter-spacing: normal;
}
.sb-slide-list {
  list-style: none;
}
.sb-slide-list-item {
  padding: 0;
  line-height: 1.38rem;
}
.sb-slide-footer {
  background-color: #D4DFB6;
  text-align: center;
}
.sb-slide-footer .btn {
  background-color: #70940C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sb-slide-footer .btn .icon {
  display: inline-flex;
  margin-left: 0.32rem;
}
.sb-slide-footer .btn .icon:before {
  font-size: 1.5rem;
}
.sb-slide-panel {
  border: 1px solid #919F69;
  color: #ffffff;
  text-align: center;
}
.sb-slide-panel .hgroup {
  color: #ffffff;
  text-transform: capitalize;
}

.style-4 .page-banner .pb-btn-wrap .btn-suite {
  background-color: #F7F0E3;
  color: #0A5D7E;
}

.page-banner .pb-btn-wrap .btn-suite:hover {
  background-color: rgba(247, 240, 227, 0.5215686275);
}

.configurations-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.lsc-note {
  padding: 0.75rem 1.38rem;
  border: 1px solid #70940C;
  margin-right: 2rem;
  margin-bottom: 2rem;
}
.lsc-note .semi-title {
  font-size: 0.75rem;
  color: #70940C;
}
@media (max-width: 479px) {
  .lsc-note {
    width: 100%;
    margin-right: 0;
  }
}
.lsc-note-text {
  line-height: 1.75rem;
  margin-bottom: 0;
  font-family: "Lato", "Arial", sans-serif;
  display: flex;
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  .lsc-note-text {
    display: inline-block;
    font-size: 1.13rem;
    line-height: 1.38rem;
  }
}
.lsc-note-text sup {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}
.lsc-note-text-wrap {
  display: flex;
  align-items: center;
}
.lsc-note-text-wrap .icon {
  display: flex;
  margin-right: 1.25rem;
  font-size: 1.75rem;
  color: #70940C;
}
@media (max-width: 479px) {
  .lsc-note-text-wrap .icon {
    display: inline-block;
    font-size: 18px;
  }
}

.icon-list {
  list-style: none;
  font-size: 1.13rem;
  padding-left: 0;
}
.icon-list-item {
  font-size: 1.13rem;
  line-height: 1.13rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}
@media (max-width: 479px) {
  .icon-list-item {
    text-align: left;
  }
}
.icon-list-item .icon {
  font-size: 1.88rem;
  color: #70940C;
  margin-right: 1.25rem;
}
.icon-list-item:last-of-type {
  margin-bottom: 0;
}

.amenities-wrap .drinks-overview-content {
  width: 100%;
  padding-right: 2rem;
  padding-left: 4.88rem;
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .amenities-wrap .drinks-overview-content {
    padding-left: 4.88rem;
  }
}
@media (max-width: 479px) {
  .amenities-wrap .drinks-overview-content {
    padding-left: 2rem;
  }
}

.highlighted-strip {
  padding-top: 0;
}
@media (max-width: 1439px) {
  .highlighted-strip {
    overflow: hidden;
  }
}
@media (max-width: 1439px) {
  .highlighted-strip .hs-textcontainer .btn-suite {
    margin-top: 1.25rem;
  }
}
.highlighted-strip .hs-textcontainer h3 {
  margin-bottom: 0;
}
.highlighted-strip .hs-textcontainer h3.text-white {
  color: #ffffff;
}
.highlighted-strip .hs-textwrap {
  color: #ffffff;
}
@media (max-width: 1439px) {
  .highlighted-strip .hs-textwrap {
    margin: 5rem 0 0 0;
  }
}
.highlighted-strip .hs-textvariant {
  font-size: 3.44rem;
}
@media (max-width: 767px) {
  .highlighted-strip .hs-textvariant {
    line-height: 6.25rem;
  }
}
@media (max-width: 479px) {
  .highlighted-strip .hs-textvariant {
    font-size: 1.88rem;
    line-height: 3.75rem;
  }
}
@media (max-width: 1439px) {
  .highlighted-strip .hs-textwrap {
    text-align: center;
  }
  .highlighted-strip .bgt-shape {
    left: -6.87rem;
  }
}
@media (max-width: 991px) {
  .highlighted-strip .bgt-shape {
    left: -9.37rem;
  }
}
@media (max-width: 767px) {
  .highlighted-strip .bgt-shape {
    left: -12.5rem;
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .highlighted-strip .bgt-shape {
    left: -14.37rem;
    max-width: 100%;
  }
}

.cta-block-inner {
  max-width: 68.75rem;
  margin-left: 25%;
}
@media (max-width: 767px) {
  .cta-block-inner {
    margin-left: 28%;
  }
}

.cta-gallery {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 991px) {
  .cta-gallery {
    margin-bottom: 1.75rem;
  }
}
.cta-overlay {
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
}
.cta-overlay .semi-title {
  background-color: #CEA496;
  margin-left: 32px;
  padding: 4px;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  display: table;
}
@media (max-width: 479px) {
  .cta-overlay .semi-title {
    font-size: 12px;
  }
}
.cta-text-wrapper {
  padding: 1.5rem 1rem 1rem 1rem;
  color: #ffffff;
  text-align: center;
  background-color: #CEA496;
  display: flex;
  flex-direction: column;
  background-color: #CEA496;
}
.cta-text-wrapper .btn {
  transition: 0.3s;
}
@media (max-width: 479px) {
  .cta-text-wrapper .btn {
    line-height: 1rem;
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}
.cta-text-wrapper .btn:hover {
  background-color: #ffffff;
  color: #8F3533;
}
.cta-text-link {
  display: flex;
  width: 100%;
  justify-content: center;
  color: white;
  font-size: 1.44rem;
  text-decoration: none;
  text-transform: uppercase;
  margin-bottom: 16px;
  transition: 0.3s;
}
.cta-text-link:hover {
  font-weight: bold;
  color: #ffffff;
}
@media (max-width: 1439px) {
  .cta-text-link {
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
}
@media (max-width: 479px) {
  .cta-text-link {
    font-size: 18px;
  }
}
.cta-text-link .icon {
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.cta-text-link .icon:before {
  font-size: 2.88rem;
  line-height: 12px;
}
@media (max-width: 1439px) {
  .cta-text-link .icon:before {
    font-size: 2rem;
  }
}
@media (max-width: 479px) {
  .cta-text-link .icon:before {
    font-size: 1.88rem;
  }
}
.cta-text-link:hover {
  text-decoration: none;
}
.cta-text-desc {
  margin-bottom: 32px;
}
@media (max-width: 1439px) {
  .cta-text-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 479px) {
  .cta-text-desc {
    font-size: 0.82rem;
    margin-bottom: 1rem;
  }
}

/* ctaCards($classname, $background-color, $secondary-bg, $hover-bg, $hover-text); */
.bush-lodge .semi-title {
  background-color: #24402A;
}
.bush-lodge .cta-text-wrapper {
  background-color: #24402A;
}
.bush-lodge .cta-text-wrapper .btn {
  background-color: #70940C;
  transition: 0.3s;
}
.bush-lodge .cta-text-wrapper .btn:hover {
  background-color: #ffffff;
  color: #70940C;
}

.earth .semi-title {
  background-color: #0A5D7E;
}
.earth .cta-text-wrapper {
  background-color: #0A5D7E;
}
.earth .cta-text-wrapper .btn {
  background-color: #BE8E36;
  transition: 0.3s;
}
.earth .cta-text-wrapper .btn:hover {
  background-color: #ffffff;
  color: #BE8E36;
}

.bush-selati-camp .semi-title {
  background-color: #919F69;
}
.bush-selati-camp .cta-text-wrapper {
  background-color: #919F69;
}
.bush-selati-camp .cta-text-wrapper .btn {
  background-color: #24402A;
  transition: 0.3s;
}
.bush-selati-camp .cta-text-wrapper .btn:hover {
  background-color: #ffffff;
  color: #24402A;
}

.hover-gallery {
  width: 100%;
  overflow: hidden;
}
@media (min-width: 480px) and (max-width: 991px) {
  .hover-gallery {
    padding-bottom: 2.19rem;
  }
}
.hover-gallery .swiperOverlay {
  display: flex;
  align-items: center;
  min-height: 670px;
}
@media (max-width: 1439px) {
  .hover-gallery .swiperOverlay {
    min-height: unset;
  }
}
@media (max-width: 479px) {
  .hover-gallery .swiperOverlay {
    min-height: 14.38rem;
  }
}
.hover-gallery .sc-list {
  transition: 0.3s;
  min-height: 38.75rem;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 1439px) {
  .hover-gallery .sc-list {
    min-height: unset;
  }
}
@media (max-width: 479px) {
  .hover-gallery .sc-list {
    min-height: 14.38rem;
  }
}
@media (max-width: 991px) {
  .hover-gallery .sc-list {
    min-height: unset;
  }
}
.hover-gallery .sc-list .sc-wrap {
  margin-top: auto;
  margin-bottom: auto;
  transition: 0.3s;
  flex: 1 0;
  display: flex;
  align-items: center;
  transform: scale(1);
  transition: 0.3S;
}
@media (max-width: 1439px) {
  .hover-gallery .sc-list .sc-wrap {
    flex: 0 0 auto;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .hover-gallery .sc-list .sc-wrap {
    height: auto;
  }
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .sc-wrap {
    height: 21.88rem;
  }
}
@media (max-width: 767px) {
  .hover-gallery .sc-list .sc-image {
    height: 100%;
  }
}
.hover-gallery .sc-list .sc-image-wrap .gray-scale {
  filter: grayscale(1);
}
@media (max-width: 767px) {
  .hover-gallery .sc-list .sc-image-wrap {
    height: 100%;
  }
}
.hover-gallery .sc-list .sc-overlay-description {
  font-size: 1.13rem;
  line-height: 1.5rem;
  color: #ffffff;
  height: 0;
  transition: 0.3s;
  opacity: 0;
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .sc-overlay-description {
    font-size: 0.82rem;
    max-height: 80px;
    overflow-y: scroll;
  }
}
.hover-gallery .sc-list .sc-overlay-text {
  transition: 0.3s;
  padding: 0;
  right: 1.13rem;
  left: 1.13rem;
  height: auto;
  padding: 1.25rem;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .hover-gallery .sc-list .sc-overlay-text {
    padding: 0.94rem;
  }
}
@media (max-width: 767px) {
  .hover-gallery .sc-list .sc-overlay-text {
    left: 5px;
    right: 5px;
    visibility: hidden;
  }
}
.hover-gallery .sc-list .sc-overlay-text h4 {
  height: auto;
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .hover-gallery .sc-list .sc-overlay-text h4 {
    font-size: 1.38rem;
  }
}
@media (max-width: 991px) {
  .hover-gallery .sc-list .sc-overlay-text h4 {
    font-size: 1.13rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .sc-overlay-text h4 {
    margin-bottom: 0.38rem;
  }
}
.hover-gallery .sc-list .sc-overlay-text-title {
  display: inline-block;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .hover-gallery .sc-list .sc-wrap .sc-image-wrap .aspect-ratio::before {
    padding-top: calc(var(--rh) / var(--rw) * 95%);
    transition: all 0.5s linear;
  }
}
.hover-gallery .sc-list .hover-down {
  flex: 0.9 3;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .hover-gallery .sc-list .hover-down {
    flex: none;
  }
}
.hover-gallery .sc-list .hover-up {
  flex: 1.2 1;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .hover-gallery .sc-list .hover-up {
    flex: none;
  }
}
@media (min-width: 992px) and (max-width: 1439px) {
  .hover-gallery .sc-list .hover-up .sc-image-wrap .aspect-ratio::before {
    padding-top: calc(var(--rh) / var(--rw) * 100%);
    transition: all 0.5s linear;
  }
}
.hover-gallery .sc-list .hover-up .sc-image-wrap:after {
  display: none;
}
.hover-gallery .sc-list .hover-up .sc-image-wrap .gray-scale {
  filter: none;
}
.hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #70940C;
  bottom: -5%;
  display: block;
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .hover-up .sc-overlay-text {
    padding: 0.44rem;
  }
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .hover-up .sc-overlay-text h4 {
    font-size: 1.13rem;
  }
}
.hover-gallery .sc-list .hover-up .sc-overlay-description {
  height: 100%;
  opacity: 1;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .hover-gallery .sc-list .hover-up .sc-overlay-description {
    margin-top: 1.5rem;
  }
}
@media (max-width: 479px) {
  .hover-gallery .sc-list .hover-up .sc-overlay-description {
    margin-top: 1rem;
  }
}
.hover-gallery .swiper-slide-active:not(.hover-down).sc-wrap {
  display: flex !important;
}
.hover-gallery .swiper-slide-active:not(.hover-down) .sc-image-wrap:after {
  display: none;
}
.hover-gallery .swiper-slide-active:not(.hover-down) .sc-image-wrap .gray-scale {
  filter: none;
}
.hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text {
  display: block;
  visibility: visible;
  bottom: -5%;
}
@media (max-width: 479px) {
  .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text {
    padding: 0.44rem;
  }
}
@media (max-width: 479px) {
  .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text h4 {
    font-size: 1.13rem;
  }
}
.hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-description {
  height: 100%;
  opacity: 1;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-description {
    margin-top: 1.5rem;
  }
}
@media (max-width: 479px) {
  .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-description {
    margin-top: 0.88rem;
    max-height: 100%;
  }
}
.hover-gallery.style-air .hover-gallery-wrap {
  padding-top: 0;
}
.hover-gallery.style-air .sc-list .hover-up .sc-overlay-text,
.hover-gallery.style-air .sc-list .swiper-slide-active:not(.hover-down) .sc-overlay-text {
  background-color: #F7F0E3;
}
.hover-gallery.style-air .sc-list .hover-up .sc-overlay-text h4,
.hover-gallery.style-air .sc-list .swiper-slide-active:not(.hover-down) .sc-overlay-text h4 {
  color: #24402A;
}

.style-1 .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text,
.style-1 .hover-gallery .swiper-slide-active .hover-up .sc-overlay-text {
  background-color: #8F3533;
}
.style-1 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #8F3533;
}
.style-2 .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text, .style-2 .hover-gallery .swiper-slide-active.hover-up .sc-overlay-text {
  background-color: #70940C;
}
.style-2 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #70940C;
}
.style-3 .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text,
.style-3 .hover-gallery .swiper-slide-active .hover-up .sc-overlay-text {
  background-color: #24402A;
}
.style-3 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #24402A;
}
.style-4 .hover-gallery .swiper-slide-active:not(.hover-down) .sc-overlay-text,
.style-4 .hover-gallery .swiper-slide-active .hover-up .sc-overlay-text {
  background-color: #0A5D7E;
}
.style-4 .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #0A5D7E;
}

@media (min-width: 992px) {
  .cstm-a .drinks-overview-content .semi-title {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cstm-a .drinks-overview-content h2 {
    margin-bottom: 2rem;
  }
}

@media (min-width: 480px) and (max-width: 991px) {
  .hover-gallery.acco-dining-page {
    padding-top: 1.88rem;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .hover-gallery.acco-dining-page {
    padding-top: 1.25rem;
    padding-bottom: 1.88rem;
  }
}

.dining-overview .drinks-overview-content {
  margin-bottom: 0;
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .dining-overview .drinks-overview-content {
    text-align: center;
  }
}
@media (max-width: 479px) {
  .dining-overview .drinks-overview-content {
    margin-top: 50px;
  }
}
.dining-overview-container {
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .dining-overview-container {
    margin-bottom: 64px;
  }
}
@media (max-width: 479px) {
  .dining-overview-container {
    margin-bottom: 50px;
  }
}
.dining-overview-container:nth-of-type(even) .dining-overview-wrap {
  margin-top: -4rem;
}
@media (max-width: 1439px) {
  .dining-overview-container:nth-of-type(even) .dining-overview-wrap {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .dining-overview-container:nth-of-type(even) .dining-overview-wrap {
    padding-left: 0;
    margin-top: 0;
  }
}

.highlight-message-wrap {
  border: 1px solid #919F69;
  padding: 16px;
}
@media (max-width: 479px) {
  .highlight-message-wrap .container-768 {
    padding: 0;
  }
}
.highlight-message-wrap .semi-title {
  font-size: 1.13rem;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .highlight-message-wrap .semi-title {
    font-size: 0.88rem;
  }
}

.accomodation-features .af-wrap {
  position: relative;
}
.accomodation-features .af-large-spacing {
  margin-bottom: 10rem;
}
@media (max-width: 1439px) {
  .accomodation-features .af-large-spacing {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 991px) {
  .accomodation-features .af-large-spacing {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .accomodation-features .af-large-spacing {
    margin-bottom: 2rem;
  }
}
.accomodation-features .af-container-even {
  flex-direction: row-reverse;
}
.accomodation-features .af-container-even .af-content-wrap {
  padding-left: 4rem;
}
@media (max-width: 991px) {
  .accomodation-features .af-container-even .af-content-wrap {
    padding-left: 0;
  }
}
.accomodation-features .af-container-even .af-content-image-wrap {
  padding-right: 4rem;
}
@media (max-width: 991px) {
  .accomodation-features .af-container-even .af-content-image-wrap {
    padding-right: 0;
  }
}
.accomodation-features .af-container-odd {
  flex-direction: row;
}
.accomodation-features .af-container-odd .af-content-wrap {
  padding-right: 4rem;
}
@media (max-width: 1439px) {
  .accomodation-features .af-container-odd .af-content-wrap {
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .accomodation-features .af-container-odd .af-content-wrap {
    padding-bottom: 0;
  }
}
@media (max-width: 479px) {
  .accomodation-features .af-container-odd .af-content-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.accomodation-features .af-container-odd .af-content-image-wrap {
  padding-left: 4rem;
}
@media (max-width: 1439px) {
  .accomodation-features .af-container-odd .af-content-image-wrap {
    padding-left: 2rem;
  }
}
@media (max-width: 991px) {
  .accomodation-features .af-container-odd .af-content-image-wrap {
    padding-left: 0;
  }
}
.accomodation-features .af-content-wrap {
  padding-top: 4rem;
}
@media (max-width: 1439px) {
  .accomodation-features .af-content-wrap {
    padding-top: 2rem;
  }
}
@media (max-width: 991px) {
  .accomodation-features .af-content-wrap {
    padding-top: 0;
    text-align: left;
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .accomodation-features .af-content-wrap h2 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 1439px) {
  .accomodation-page section.section-s1 + section.section-s1, .accomodation-page section.section-s1 + section.section-s1a {
    padding-bottom: 0;
  }
}

.package-cards-container {
  margin-top: -3.75rem;
}
.package-cards-container .pcc-inner {
  justify-content: space-between;
}
@media (max-width: 1439px) {
  .package-cards-container .pcc-inner {
    justify-content: center;
  }
}
@media (max-width: 1439px) {
  .package-cards-container .pcc-inner-card {
    padding: 0 0.63rem;
  }
}
.package-cards-container.pcc-mobile .pcc-inner {
  margin: 0 -0.62rem;
}
@media (max-width: 767px) {
  .package-cards-container.pcc-mobile .pcc-inner .pcc-inner-card {
    width: 50%;
  }
}
.package-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 15.63rem;
  margin: 0 auto;
  height: 100%;
  flex: 1;
}
.package-card.validity .package-detail {
  border: 1px solid #BE8E36;
}
.package-card.validity .package-btn {
  background-color: #BE8E36;
}
.package-card.rates .package-detail {
  border: 1px solid #0A5D7E;
}
.package-card.rates .package-btn {
  background-color: #0A5D7E;
}
.package-card.notes .package-detail {
  border: 1px solid #70940C;
}
.package-card.notes .package-btn {
  background-color: #70940C;
}
.package-card.sand .package-detail {
  border: 1px solid #8F3533;
}
.package-card.sand .package-btn {
  background-color: #8F3533;
}
.package-card.sky .package-detail {
  border: 1px solid #0A5D7E;
}
.package-card.sky .package-btn {
  background-color: #0A5D7E;
}
.package-header {
  position: relative;
  max-height: 10rem;
  height: 100%;
  max-width: 10rem;
  width: 10rem;
  margin: 0 auto;
  transform: translatey(80px);
}
.package-header-round {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 479px) {
  .package-header {
    max-height: 7rem;
    height: 100%;
    max-width: 7rem;
    width: 10rem;
    transform: translatey(50px);
  }
}
.package-image {
  background-color: transparent;
}
.package-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8.5rem;
  width: 8.5rem;
  background: #ffffff;
  border-radius: 50%;
  padding: 0.94rem;
  text-align: center;
}
@media (max-width: 479px) {
  .package-title {
    height: 5.38rem;
    width: 5.38rem;
  }
}
.package-title h6 {
  font-size: 1.5rem;
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 767px) {
  .package-title h6 {
    font-size: 1.5rem;
  }
}
@media (max-width: 479px) {
  .package-title h6 {
    font-size: 1rem;
  }
}
.package-detail {
  padding: 6.25rem 1rem 1rem;
  text-align: center;
  border: 1px solid inherit;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .package-detail {
    padding: 3.75rem 1rem 1rem;
  }
}
.package-detail h6 {
  color: #24402A;
  font-family: "Lato", "Arial", sans-serif;
  color: #000000;
  line-height: 1.63rem;
  margin-bottom: 0;
}
@media (max-width: 1439px) {
  .package-detail h6 {
    font-size: 1.13rem;
  }
}
@media (max-width: 767px) {
  .package-detail h6 {
    font-size: 1.13rem;
  }
}
@media (max-width: 479px) {
  .package-detail h6 {
    font-size: 0.88rem;
    line-height: 1.25rem;
  }
}
.package-link {
  color: #70940C;
  font-weight: bold;
  text-decoration: underline;
  display: inline-block;
}
.package-btn {
  margin-top: 2rem;
  min-width: auto;
}
@media (max-width: 767px) {
  .package-btn {
    margin-top: 1rem;
    padding: 0.63rem;
    font-size: 0.69rem;
  }
}

.enquire-component {
  position: relative;
}
@media (max-width: 1439px) {
  .enquire-component.ec-gold, .enquire-component.ec-secondary {
    width: 100%;
  }
}
@media (max-width: 1439px) {
  .enquire-component.ec-gold .enquire-overlay, .enquire-component.ec-secondary .enquire-overlay {
    max-width: 100%;
  }
}
.enquire-component.ec-gold .enquire-overlay-content, .enquire-component.ec-secondary .enquire-overlay-content {
  background-color: rgba(190, 142, 54, 0.8);
  width: 100%;
}
.enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}
.enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn {
  margin-right: 5rem;
  font-weight: 500;
}
.enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn:last-of-type, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn:last-of-type {
  margin-right: 0;
}
@media (max-width: 767px) {
  .enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn {
    margin-right: 0.94rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 479px) {
  .enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn {
    margin-right: 0;
  }
}
.enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn-forest, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn-forest {
  background-color: #24402A;
}
.enquire-component.ec-gold .enquire-overlay-content .ec-gold-cta .btn-forest:hover, .enquire-component.ec-secondary .enquire-overlay-content .ec-gold-cta .btn-forest:hover {
  background-color: #919F69;
}
.enquire-component.ec-secondary .enquire-overlay-content {
  background-color: rgba(112, 148, 12, 0.8);
}
@media (max-width: 767px) {
  .enquire-image {
    min-height: 40.63rem;
  }
}
.enquire-overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  max-width: 1140px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-self: center;
  max-width: 1140px;
}
@media (max-width: 1439px) {
  .enquire-overlay {
    max-width: auto;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 479px) {
  .enquire-overlay {
    max-width: auto;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.enquire-overlay-content {
  text-align: center;
  padding: 5.63rem 4rem 4rem;
  background-color: rgba(36, 64, 42, 0.8);
}
@media (max-width: 1439px) {
  .enquire-overlay-content {
    padding: 4rem 2rem 2rem;
  }
}
.enquire-overlay-content .title-line {
  font-size: 3.82rem;
  color: #ffffff;
  margin-bottom: 4rem;
}
@media (max-width: 1439px) {
  .enquire-overlay-content .title-line {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .enquire-overlay-content .title-line {
    font-size: 2.25rem;
  }
}

.social-icons-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 2rem;
  margin-right: 0.69rem;
}
@media (max-width: 767px) {
  .social-icons-wrap {
    margin-top: 1rem;
  }
}
.social-link {
  display: inline-block;
  margin-left: 0.69rem;
  margin-right: 0.69rem;
}
@media (max-width: 767px) {
  .social-link {
    margin-bottom: 0.69rem;
    margin-bottom: 0.69rem;
    margin-left: 0.38rem;
    margin-right: 0.38rem;
  }
}
.social-item {
  cursor: pointer;
  width: 3.63rem;
  height: 3.63rem;
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 767px) {
  .social-item {
    width: 2.19rem;
    height: 2.19rem;
  }
}
.social-item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.social-item:hover img {
  filter: drop-shadow(0px 5px 4px rgba(0, 0, 0, 0.3));
}

.contact-form .error-message {
  font-size: 1rem;
  color: #ED0000;
  line-height: 3rem;
  text-align: right;
}
@media (max-width: 991px) {
  .contact-form .error-message {
    text-align: left;
  }
}
.contact-form-title {
  margin-bottom: 8rem;
}
@media (max-width: 991px) {
  .contact-form-title {
    margin-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  .contact-form-title {
    margin-bottom: 2rem;
  }
}
.contact-form-group {
  position: relative;
  width: 100%;
  padding-left: 0.63rem;
  padding-right: 0.63rem;
}
@media (max-width: 991px) {
  .contact-form-group {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.contact-form-control {
  border: 1px solid rgba(36, 64, 42, 0.3) !important;
  margin-bottom: 1rem;
  border-radius: 0.19rem !important;
  font-size: 1rem;
}
.contact-form-control::-moz-placeholder {
  color: #24402A;
  opacity: 0.5;
  font-size: 1rem;
}
.contact-form-control::placeholder {
  color: #24402A;
  opacity: 0.5;
  font-size: 1rem;
}
.contact-form-control input,
.contact-form-control select {
  height: 3.32rem;
}
.contact-form textarea.form-control {
  height: auto;
  resize: none;
}
.contact-form-submit-wrap {
  margin-top: 1rem;
  margin-bottom: 1.63rem;
  text-align: right;
}
@media (min-width: 768px) and (max-width: 991px) {
  .contact-form-submit-wrap {
    text-align: left;
  }
}
@media (max-width: 479px) {
  .contact-form-submit-wrap {
    display: flex;
    flex-direction: column;
  }
}
.contact-form-dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  background: url("/application/themes/sabi_sabi/images/downarrow.svg");
  background-repeat: no-repeat;
  background-size: 1rem 0.75rem;
  background-position: 94% center;
  color: rgba(36, 64, 42, 0.5);
  line-height: 1.3;
}
.contact-form .checkbox {
  position: absolute;
  opacity: 0;
}
.contact-form .checkbox + label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  line-height: 1.75rem;
  padding-left: 3.13rem;
  font-size: 1.13rem;
  color: #24402A;
}
.contact-form .checkbox + label:before {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  content: "";
  background: transparent;
  width: 1.57rem;
  height: 1.57rem;
  border-radius: 4px;
  border: 1px solid rgba(36, 64, 42, 0.3) !important;
  transition: 200ms ease-in-out all;
}
.contact-form .checkbox + label:after {
  position: absolute;
  display: block;
  top: 0px;
  left: 2px;
  content: "";
  width: 1.57rem;
  height: 1.57rem;
  background-image: url("/application/themes/sabi_sabi/images/check.svg");
  background-repeat: no-repeat;
  background-size: 1.57rem 1.57rem;
  background-position: center;
  opacity: 0;
  transition: 0.3s;
}
.contact-form .checkbox + label:hover {
  color: #333;
}
.contact-form .checkbox + label:focus {
  outline: none;
}
.contact-form .checkbox:checked + label:before {
  background: #ffffff;
  box-shadow: none;
}
.contact-form .checkbox:checked + label:after {
  opacity: 1;
}
.contact-checkbox {
  position: relative;
  display: block;
  margin: 2rem 0 2rem;
}
.contact-detail-wrap {
  margin-top: 2rem;
}
.contact-detail-wrap .semi-title {
  margin-bottom: 0;
}
.contact-detail-wrap .contact-detail {
  text-decoration: none;
  transition: 0.3s;
  color: #24402A;
  font-size: 1.13rem;
  font-style: normal;
  font-family: "Playfair Display", "Arial", sans-serif;
}
.contact-detail-wrap .contact-detail:hover {
  text-decoration: none;
}

@media (max-width: 991px) {
  .contact-form .base-title {
    font-size: 1.38rem;
  }
}

.error .contact-form-control {
  border: 1px solid #ED0000 !important;
}
.error .contact-form-control ::-moz-placeholder {
  color: #8F3533;
}
.error .contact-form-control ::placeholder {
  color: #8F3533;
}

.base-title {
  font-family: "Lato", "Arial", sans-serif;
  margin-bottom: 2rem;
  color: #212B1A;
}

.content-wrapper .contentonly-title {
  color: #212B1A;
  font-family: "Lato", "Arial", sans-serif;
}
.content-wrapper .contentonly-description {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.address-tabs .hgt-navigation-wrapper .hgt-wrapper {
  max-width: 54rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media (max-width: 991px) {
  .address-tabs .hgt-navigation-wrapper .hgt-wrapper {
    justify-content: flex-start;
  }
}
.address-tabs .hgt-navigation-wrapper .hgt-link {
  line-height: 0.88rem;
}
.address-tabs .hgt-wrapper-forest {
  background-color: #24402A;
  position: relative;
  width: 100%;
  overflow: auto;
}
.address-tabs .hgt-wrapper-forest .hgt-link {
  padding: 1.57rem 1.38rem;
}
.address-tabs .hgt-wrapper-forest .hgt-link.active {
  background-color: #718375;
}
.address-tabs .hgt-wrapper-forest .hgt-link.active:after {
  top: auto;
  bottom: 0;
  border-top: none;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #DBE3DD !important;
}
@media (max-width: 767px) {
  .address-tabs .hgt-wrapper-forest:after {
    border-top: 20px solid #24402A;
  }
}
.address-tabs .hgt-wrapper-primary {
  background-color: #8F3533;
}
.address-tabs .hgt-wrapper-primary .hgt-link {
  padding: 1.57rem 1.38rem;
}
.address-tabs .hgt-wrapper-primary .hgt-link.active {
  background-color: #C2805D;
}
.address-tabs .hgt-wrapper-primary .hgt-link.active:after {
  top: auto;
  bottom: 0;
  border-top: none;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff !important;
}
.address-tabs .hgt-wrapper-secondary {
  background-color: #70940C;
}
.address-tabs .hgt-wrapper-secondary .hgt-link {
  padding: 1.57rem 1.38rem;
}
@media (max-width: 767px) {
  .address-tabs .hgt-wrapper-secondary .hgt-link {
    margin-bottom: 0.63rem;
  }
}
.address-tabs .hgt-wrapper-secondary .hgt-link.active {
  background-color: #919F69;
}
.address-tabs .hgt-wrapper-secondary .hgt-link.active:after {
  top: auto;
  bottom: 0;
  border-top: none;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 20px solid #ffffff !important;
}
@media (max-width: 767px) {
  .address-tabs .hgt-wrapper-secondary .hgt-wrapper:after {
    border-top: 20px solid #70940C;
  }
}
.address-card-wrapper {
  display: none;
  background-color: #DBE3DD;
}
.address-card-wrapper.active {
  display: block;
}
.address-card-wrapper .white-card {
  background-color: #ffffff;
  padding: 1.5rem;
}
.address-card-wrapper .white-card-content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.address-card-wrapper .white-card .link-content {
  font-size: 1.13rem;
}
.address-card-wrapper .white-card .link-content.phone {
  color: #000000;
  text-decoration: none;
}
.address-card-wrapper .white-card .link-content-wrap {
  margin-bottom: 1.63rem;
}
.address-card-wrapper .white-card .link-content-wrap .semi-title {
  font-size: 0.88rem;
  margin-bottom: 0;
}
.address-card-wrapper .dark-title {
  color: #000000;
  font-weight: bold;
  font-family: "Lato", "Arial", sans-serif;
}
.address-card-wrapper .contact-address-wrap {
  margin-bottom: 1.57rem;
}
.address-card-wrapper .contact-address-wrap .semi-title {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.side-vertical-tabs .svt-right-inner-title, .side-vertical-tabs .svt-right-title {
  color: #24402A;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 600;
  text-transform: capitalize;
}

.side-vertical-tabs {
  display: flex;
  flex-wrap: wrap;
}
.side-vertical-tabs .svt-left {
  width: 40%;
  background-color: #FFFBF6;
}
@media (max-width: 767px) {
  .side-vertical-tabs .svt-left {
    width: 100%;
  }
}
.side-vertical-tabs .svt-left-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin: 0;
  color: #24402A;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 500;
  transition: 0.6s;
  cursor: pointer;
}
.side-vertical-tabs .svt-left-item:after {
  position: absolute;
  content: "";
  opacity: 0;
  left: 100%;
  height: 0;
  width: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #F7F0E3;
  transition: 0.6s;
}
.side-vertical-tabs .svt-left-item:hover, .side-vertical-tabs .svt-left-item.active {
  background-color: #F7F0E3;
  font-weight: 600;
  text-decoration: none;
}
.side-vertical-tabs .svt-left-item:hover:after, .side-vertical-tabs .svt-left-item.active:after {
  opacity: 1;
}
@media (max-width: 767px) {
  .side-vertical-tabs .svt-left-item {
    font-size: 1.75rem;
  }
}
.side-vertical-tabs .svt-left .svt-right-wrapper {
  display: none;
}
.side-vertical-tabs .svt-left .svt-right-wrapper.active {
  display: block;
}
@media (min-width: 768px) {
  .side-vertical-tabs .svt-left .svt-right-wrapper.active {
    display: none;
  }
}
.side-vertical-tabs .svt-right {
  width: 60%;
  padding: 1.5rem 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .side-vertical-tabs .svt-right {
    width: 100%;
  }
}
.side-vertical-tabs .svt-right-wrapper {
  display: none;
}
@media (max-width: 767px) {
  .side-vertical-tabs .svt-right-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
  }
}
.side-vertical-tabs .svt-right-wrapper.active {
  display: block;
}
@media (max-width: 767px) {
  .side-vertical-tabs .svt-right-wrapper.active {
    display: none;
  }
}
.side-vertical-tabs .svt-right-title {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.side-vertical-tabs .svt-right-inner {
  display: flex;
  flex-wrap: wrap;
}
.side-vertical-tabs .svt-right-inner-title {
  font-size: 1.25rem;
  line-height: 1.5rem;
}
.side-vertical-tabs .svt-right-list {
  list-style: none;
  padding-left: 0;
}
.side-vertical-tabs .svt-right-list li {
  margin: 0 0 1.25rem 0;
  color: #24402A;
  font-size: 0.88rem;
  line-height: 1.13rem;
}
.side-vertical-tabs .svt-right-list li span {
  display: block;
  color: #BE8E36;
  text-transform: uppercase;
}
.side-vertical-tabs .svt-right-list li p {
  text-transform: capitalize;
  font-size: 0.88rem;
}
.side-vertical-tabs .svt-right-list li a {
  color: #8F3533;
  font-size: 0.88rem;
}

@media (min-width: 1440px) {
  .policies .panel-intro h5 {
    line-height: 42px;
  }
}

.border-card {
  padding: 1rem;
  border: 1px solid #70940C;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.border-card-title {
  text-transform: capitalize;
  font-size: 1.32rem;
  line-height: 2.63rem;
  font-weight: bold;
  font-family: "Lato", "Arial", sans-serif;
  color: #70940C;
  margin-bottom: 0;
}
.border-card-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.border-card-cta-wrap .detail {
  font-size: 0.88rem;
  line-height: 1.63rem;
  text-transform: uppercase;
  display: inline-block;
  color: #70940C;
}
.border-card-cta-wrap .download {
  background-color: transparent;
  padding: 0;
  min-width: 2.5rem;
}
.border-card-cta-wrap .download .icon:before {
  color: #70940C;
  font-size: 1.57rem;
}

.policies-inner-wrapper {
  padding-right: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .policies-inner-wrapper {
    padding-right: 0;
  }
}
.policies-inner-wrapper:last-of-type {
  padding-right: 0;
}
.policies-inner-wrapper:nth-child(odd) .border-card {
  border: 1px solid #70940C;
}
.policies-inner-wrapper:nth-child(odd) .border-card-title {
  color: #70940C;
}
.policies-inner-wrapper:nth-child(odd) .border-card-cta-wrap .detail {
  color: #919F69;
}
.policies-inner-wrapper:nth-child(odd) .border-card-cta-wrap .detail span {
  display: inline-block;
  margin-left: 0.5rem;
}
.policies-inner-wrapper:nth-child(odd) .border-card-cta-wrap .download .icon:before {
  color: #70940C;
}
@media (max-width: 991px) {
  .policies-inner-wrapper:nth-child(even) {
    padding-right: 0;
  }
}
.policies-inner-wrapper:nth-child(even) .border-card {
  border: 1px solid #8F3533;
}
.policies-inner-wrapper:nth-child(even) .border-card-title {
  color: #8F3533;
  margin-bottom: 0;
}
.policies-inner-wrapper:nth-child(even) .border-card-cta-wrap .detail {
  color: #C2805D;
}
.policies-inner-wrapper:nth-child(even) .border-card-cta-wrap .detail span {
  display: inline-block;
  margin-left: 0.5rem;
}
.policies-inner-wrapper:nth-child(even) .border-card-cta-wrap .download .icon:before {
  color: #8F3533;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(odd) .border-card {
  border: 1px solid #8F3533;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(odd) .border-card-title {
  color: #8F3533;
  margin-bottom: 0;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(odd) .border-card-cta-wrap .detail {
  color: #C2805D;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(odd) .border-card-cta-wrap .download .icon:before {
  color: #8F3533;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(even) .border-card {
  border: 1px solid #70940C;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(even) .border-card-title {
  color: #70940C;
  margin-bottom: 0;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(even) .border-card-cta-wrap .detail {
  color: #919F69;
}
.policies-wrapper:nth-child(even) .policies-inner-wrapper:nth-child(even) .border-card-cta-wrap .download .icon:before {
  color: #70940C;
}

.two-column-content .image-and-content-wrapper {
  padding-right: 4rem;
  flex-wrap: wrap;
  display: flex;
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper {
    padding: 0;
  }
}
.two-column-content .image-and-content-wrapper:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 4rem;
  padding-right: 0;
  margin-top: 4rem;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper:nth-child(even) {
    padding: 0;
  }
}
.two-column-content .image-and-content-wrapper:nth-child(even) .column-2 {
  padding-right: 4rem;
}
.two-column-content .image-and-content-wrapper:last-of-type {
  margin-bottom: 0;
}
.two-column-content .image-and-content-wrapper:last-of-type .column-1 {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper:last-of-type .column-1 {
    margin-bottom: 2rem;
  }
}
.two-column-content .image-and-content-wrapper .column-1 {
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper .column-1 {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper .column-1 .af-image {
    height: 28.13rem;
  }
  .two-column-content .image-and-content-wrapper .column-1 .af-image:before {
    padding-top: 28.13rem;
  }
}
@media (max-width: 479px) {
  .two-column-content .image-and-content-wrapper .column-1 .af-image {
    height: 17.5rem;
  }
  .two-column-content .image-and-content-wrapper .column-1 .af-image:before {
    padding-top: 17.5rem;
  }
}
@media (max-width: 767px) {
  .two-column-content .image-and-content-wrapper .column-1 {
    margin-bottom: 2rem;
  }
}
.two-column-content .image-and-content-wrapper .column-2 {
  padding-left: 4.5rem;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper .column-2 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.two-column-content .image-and-content-wrapper .column-2-title {
  font-size: 3rem;
  color: #24402A;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .two-column-content .image-and-content-wrapper .column-2-title {
    font-size: 1.63rem;
  }
}
@media (max-width: 1439px) {
  .two-column-content .image-and-content-wrapper .column-2-title {
    font-size: 2rem;
  }
}
.two-column-content .image-and-content-wrapper .column-2-text-wrapper {
  padding-top: 2rem;
  padding-bottom: 3rem;
}
.two-column-content .image-and-content-wrapper .column-2-list {
  padding-left: 24px;
}
.two-column-content .image-and-content-wrapper .column-2-text {
  font-size: 1.13rem;
  line-height: 1.63rem;
  padding: 0;
}
.two-column-content .image-and-content-wrapper .column-2 .btn {
  min-width: 11.44rem;
  line-height: 0.94rem;
}
@media (max-width: 991px) {
  .two-column-content .image-and-content-wrapper .column-2 .af-image {
    height: 28.13rem;
  }
  .two-column-content .image-and-content-wrapper .column-2 .af-image:before {
    padding-top: 28.13rem;
  }
}
@media (max-width: 479px) {
  .two-column-content .image-and-content-wrapper .column-2 .af-image {
    height: 17.5rem;
  }
  .two-column-content .image-and-content-wrapper .column-2 .af-image:before {
    padding-top: 17.5rem;
  }
}

.rates-bush-lodge {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .rates-bush-lodge {
    padding-top: 2rem;
    padding-bottom: 0;
  }
}
.rates-bush-lodge .main-title {
  color: #70940C;
}

@media (min-width: 1440px) {
  .rate-wrapper .main-title {
    font-size: 2.25rem;
    line-height: 2.63rem;
  }
}

.striped-card {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .striped-card {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .striped-card-title .h3, .striped-card-title h3 {
    font-size: 2.38rem;
  }
}
.striped-card .strip {
  height: 1.25rem;
  background-color: #919F69;
  display: block;
}
.striped-card-inner {
  padding: 2rem;
}
@media (max-width: 767px) {
  .striped-card-inner {
    padding: 1.75rem;
  }
}
@media (max-width: 479px) {
  .striped-card-inner {
    padding: 1rem;
  }
}
.striped-card-inner .title-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .striped-card-inner .title-row .striped-card-tabs {
    display: none;
  }
}
@media (max-width: 767px) {
  .striped-card-inner .title-row .striped-card-title .vector-title {
    font-size: 2.38rem;
  }
}
@media (max-width: 479px) {
  .striped-card-inner .title-row .striped-card-title .vector-title {
    font-size: 1.5rem;
  }
}
.striped-card-inner .table {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.striped-card-inner .table .title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .striped-card-inner .table .title-row {
    justify-content: space-between;
    align-items: flex-end;
  }
}
.striped-card-inner .table .title-row .table-cell.price {
  flex: 1;
  max-width: 33.1%;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .striped-card-inner .table .title-row .table-cell.price {
    max-width: 40%;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .striped-card-inner .table .title-row .table-cell.price {
    max-width: 40%;
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .striped-card-inner .table .title-row .table-cell.price {
    max-width: 50%;
    margin-bottom: 0;
  }
}
.striped-card-inner .table .title-row .table-cell .striped-card-tabs {
  display: none;
}
@media (max-width: 767px) {
  .striped-card-inner .table .title-row .table-cell .striped-card-tabs {
    display: flex;
    margin-bottom: 1.69rem;
  }
}
@media (max-width: 767px) {
  .striped-card-inner .table .title-row .table-cell .striped-card-tabs .tab-link {
    justify-content: center;
    width: 6.25rem;
    text-align: center;
  }
}
@media (max-width: 479px) {
  .striped-card-inner .table .title-row .table-cell .striped-card-tabs .tab-link {
    width: 6.25rem;
  }
}
.striped-card-inner .table-row {
  display: flex;
  flex-wrap: nowrap;
  border: 1px solid #70940C;
}
.striped-card-inner .table-row:not(:last-of-type) {
  border-bottom: 0;
}
.striped-card-inner .table-row .table-cell {
  padding: 1rem 2rem;
  flex: 1;
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell {
    padding: 16px;
  }
}
@media (max-width: 479px) {
  .striped-card-inner .table-row .table-cell {
    padding: 1rem;
  }
}
.striped-card-inner .table-row .table-cell h5 {
  font-size: 1.32rem !important;
  font-family: "Lato", "Arial", sans-serif;
  margin-bottom: 0;
  color: #423718;
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell h5 {
    font-weight: 600;
    font-size: 1.13rem !important;
  }
}
@media only screen and (max-width: 480px) {
  .striped-card-inner .table-row .table-cell h5 {
    font-size: 1rem !important;
  }
}
.striped-card-inner .table-row .table-cell h5 span {
  font-size: 1.13rem !important;
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell h5 span {
    font-weight: 600;
    font-size: 1rem !important;
  }
}
.striped-card-inner .table-row .table-cell h5 span.tableCurrency {
  font-weight: 400;
  font-size: 1.32rem !important;
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell h5 span.tableCurrency {
    font-weight: 600;
    font-size: 1.13rem !important;
  }
}
@media only screen and (max-width: 480px) {
  .striped-card-inner .table-row .table-cell h5 span.tableCurrency {
    font-size: 1rem !important;
  }
}
.striped-card-inner .table-row .table-cell h5 span .icon {
  color: #70940C;
}
.striped-card-inner .table-row .table-cell.price {
  max-width: 35%;
  width: 100%;
  border-left: 1px solid #70940C;
}
@media (min-width: 768px) and (max-width: 1439px) {
  .striped-card-inner .table-row .table-cell.price {
    max-width: 40%;
  }
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell.price {
    max-width: 40%;
  }
}
@media (max-width: 479px) {
  .striped-card-inner .table-row .table-cell.price {
    max-width: 50%;
  }
}
.striped-card-inner .table-row .table-cell.price span {
  font-size: 14px !important;
}
.striped-card-inner .table-row .table-cell .table-cell-inner {
  display: inline;
}
.striped-card-inner .table-row .table-cell .table-cell-inner h5 {
  display: inline;
}
.striped-card-inner .table-row .table-cell .table-cell-inner .hover-card-icon {
  position: relative;
  margin-left: 0.32rem;
  color: #70940C;
}
.striped-card-inner .table-row .table-cell .table-cell-inner .hover-card-icon:hover .table-hover-card {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.striped-card-inner .table-row .table-cell .table-cell-inner .hover-card-icon .icon::before {
  display: block;
}
.striped-card-inner .table-row .table-cell .table-cell-inner .table-hover-card {
  position: absolute;
  background-color: #ffffff;
  width: 24.69rem;
  border: 1px solid #dee3e2;
  padding: 1.25rem;
  top: 240%;
  left: -2.62rem;
  font-style: inherit;
  color: #000000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s;
}
.striped-card-inner .table-row .table-cell .table-cell-inner .table-hover-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}
@media (max-width: 767px) {
  .striped-card-inner .table-row .table-cell .table-cell-inner .table-hover-card {
    width: 12.5rem;
  }
}
.striped-card-inner .table-row .table-cell .table-cell-inner .table-hover-card::after {
  content: "";
  position: absolute;
  top: -1.18rem;
  left: 1.88rem;
  height: 2.19rem;
  width: 2.19rem;
  background-color: #ffffff;
  border-top: 1px solid #dee3e2;
  border-left: 1px solid #dee3e2;
  transform: rotate(45deg);
}
.striped-card-inner .cta-row {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.striped-card-inner .btn.air {
  border: 1px solid #70940C;
  background-color: #F7F0E3;
  color: #70940C;
  font-weight: 300;
  margin-right: 1.25rem;
  padding: 9px 31px;
}
.striped-card-inner .btn.air:hover {
  background-color: #70940C;
  color: #ffffff;
}
@media (max-width: 479px) {
  .striped-card-inner .btn.air {
    margin-bottom: 1rem;
    margin-right: 0;
  }
}
.striped-card-inner .btn.dark-fill {
  border: 1px solid #70940C;
  background-color: #70940C;
  color: #ffffff;
  font-weight: 300;
  margin-right: 0px;
  padding: 9px 31px;
}
.striped-card-inner .btn.dark-fill:hover {
  background-color: #F7F0E3;
  color: #70940C;
}
.striped-card-inner .btn.air, .striped-card-inner .btn.dark-fill {
  margin: 0 0.63rem 0.63rem;
}
@media (max-width: 479px) {
  .striped-card-inner .btn.air, .striped-card-inner .btn.dark-fill {
    margin: 0 0 0.63rem;
    width: 100%;
  }
}
.striped-card-desc {
  font-size: 1.5rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  text-align: center;
}
@media (max-width: 767px) {
  .striped-card-desc {
    text-align: center;
  }
}
@media (max-width: 479px) {
  .striped-card-desc {
    font-size: 1.32rem;
  }
}
.striped-card-tabs {
  display: flex;
  margin-left: auto;
}
@media (max-width: 479px) {
  .striped-card-tabs {
    margin-right: auto;
  }
}
.striped-card-tabs .tab-link {
  padding: 0.32rem 1.57rem;
  text-decoration: none;
  color: #70940C;
  background-color: #F7F0E3;
  border: 1px solid #70940C;
  border-radius: 3px;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.striped-card-tabs .tab-link.active {
  background-color: #70940C;
  color: #ffffff;
}
.striped-card-tabs .tab-link:last-of-type {
  border-left: 0;
  border-radius: 0 3px 3px 0;
}
@media (max-width: 767px) {
  .striped-card-tabs .tab-link {
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    padding: 0.32rem 0.94rem;
  }
}
.striped-card-title .vector-title-left {
  margin-right: 0.63rem;
  width: 40px;
  text-align: right;
}
.striped-card-title .vector-title-right {
  margin-left: 0.63rem;
  width: 40px;
}

.drop-down {
  position: relative;
}
.drop-down .selected a {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  color: #24402A;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border-radius: 2px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  background-image: url("/application/themes/sabi_sabi/images/money-bush.svg");
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-color: #F7F0E3;
  background-position: 32px center;
  border: 1px solid #70940C;
  border-bottom: 0;
}
@media (max-width: 767px) {
  .drop-down .selected a {
    border-bottom: 1px solid #70940C;
  }
}
.drop-down .selected a span {
  cursor: pointer;
  display: block;
  padding: 5px;
  padding-left: 1.5rem;
  text-align: left;
}
.drop-down .selected a:after {
  position: absolute;
  font-family: "sabisabi" !important;
  font-size: 1.13rem;
  color: #70940C;
  width: 1.13rem;
  text-transform: none;
  font-size: 21px;
  display: flex;
  align-items: center;
  right: 0;
  right: 2rem;
  top: 0;
}
@media (max-width: 479px) {
  .drop-down .selected a:after {
    right: 1rem;
  }
}
.drop-down .option {
  position: relative;
}
.drop-down .options ul {
  background: #F7F0E3 none repeat scroll 0 0;
  display: none;
  list-style: none;
  padding: 0px 0px;
  position: absolute;
  left: 0px;
  top: 32px;
  width: auto;
  min-width: 170px;
  border: 1px solid #70940C;
  right: 0;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
.drop-down .options ul li {
  padding-top: 0;
  padding-bottom: 0;
}
.drop-down .options ul li a {
  padding: 5px;
  display: block;
  text-decoration: none;
  color: #70940C;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  text-transform: uppercase;
  color: #24402A;
  font-weight: 600;
}
.drop-down .options ul li a:hover {
  background: #70940C;
  color: #ffffff;
  transition: 0.2s ease;
}

.drop-down .selected span.value, .drop-down .options span.value {
  display: none;
}

.rates-little-bush-camp .table-cell-inner .icon {
  color: #4b855c;
}
.rates-little-bush-camp .strip-card-wraper {
  border: 1px solid #4b855c !important;
}
.rates-little-bush-camp .scw-title.year {
  color: #4b855c;
}
.rates-little-bush-camp .scw-title.curruncy {
  color: #4b855c;
}
.rates-little-bush-camp .strip-popup-block .radio-input:checked + label {
  background-color: #4b855c;
}
.rates-little-bush-camp .strip-text-black h6 {
  color: #4b855c;
}
.rates-little-bush-camp .strip-card-wraper {
  background-color: #DBE3DD;
}
.rates-little-bush-camp .headblock {
  background-color: #DBE3DD !important;
}
.rates-little-bush-camp .radio-wrap {
  background-color: #F2F4ED !important;
  border-right: 1px solid #4b855c !important;
}
.rates-little-bush-camp .strip-text-black {
  border: 1px solid #4b855c;
}

.rates-selati-camp .table-cell-inner .icon {
  color: #8F3533;
}
.rates-selati-camp .scw-title.year {
  color: #8F3533 !important;
}
.rates-selati-camp .scw-title.curruncy {
  color: #8F3533 !important;
}
.rates-selati-camp .strip-popup-block .radio-input:checked + label {
  background-color: #8F3533 !important;
}
.rates-selati-camp .strip-text-black h6 {
  color: #8F3533;
}
.rates-selati-camp .strip-card-wraper {
  border-radius: 3px;
  border: 1px solid #8F3533;
  background-color: #F6EFED;
}
.rates-selati-camp .headblock {
  background-color: #F6EFED !important;
}
.rates-selati-camp .radio-wrap {
  background-color: #F6EFED !important;
  border-right: 1px solid #8F3533 !important;
}
.rates-selati-camp .strip-text-black {
  border: 1px solid #8F3533;
}

.rates-earth-lodge .table-cell-inner .icon {
  color: #0A5D7E;
}
.rates-earth-lodge .scw-title.year {
  color: #0A5D7E !important;
}
.rates-earth-lodge .scw-title.curruncy {
  color: #0A5D7E !important;
}
.rates-earth-lodge .strip-popup-block .radio-input:checked + label {
  background-color: #0A5D7E !important;
}
.rates-earth-lodge .strip-text-black h6 {
  color: #0A5D7E;
}
.rates-earth-lodge .strip-card-wraper {
  border: 1px solid #0A5D7E;
  background-color: #E0E8EE;
}
.rates-earth-lodge .headblock {
  background-color: #E0E8EE !important;
}
.rates-earth-lodge .radio-wrap {
  background-color: #E0E8EE !important;
  border-right: 1px solid #0A5D7E !important;
}
.rates-earth-lodge .strip-text-black {
  border: 1px solid #0A5D7E;
}

.rates-little-bush-camp {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .rates-little-bush-camp {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.rates-little-bush-camp .main-title {
  color: #4b855c;
}
@media (max-width: 991px) {
  .rates-little-bush-camp .drinks-overview.bg-3 {
    background-color: transparent;
  }
}
.rates-little-bush-camp .striped-card .strip {
  background-color: #4b855c;
}
.rates-little-bush-camp .striped-card-tabs .tab-link {
  border-color: #4b855c;
  color: #4b855c;
}
.rates-little-bush-camp .striped-card-tabs .tab-link.active {
  background-color: #4b855c;
  color: #ffffff;
}
.rates-little-bush-camp .striped-card-title .vector-title {
  color: #4b855c;
}
.rates-little-bush-camp .striped-card-inner .table-row {
  border-color: #4b855c;
}
.rates-little-bush-camp .striped-card-inner .table-row .table-cell.price {
  border-left-color: #4b855c;
}
.rates-little-bush-camp .striped-card-inner .table-row .table-cell h5 span {
  font-size: 1rem;
}
.rates-little-bush-camp .striped-card-inner .table-row .table-cell h5 span .icon {
  color: #4b855c;
}
.rates-little-bush-camp .striped-card .btn.air {
  border: 1px solid #4b855c;
  color: #4b855c;
}
.rates-little-bush-camp .striped-card .btn.air:hover {
  background-color: #4b855c;
  color: #ffffff;
}
.rates-little-bush-camp .striped-card .btn.dark-fill {
  border-color: #4b855c;
  background-color: #4b855c;
}
.rates-little-bush-camp .striped-card .btn.dark-fill:hover {
  color: #4b855c;
  background-color: #F7F0E3;
}
.rates-little-bush-camp .drop-down .selected a {
  border-color: #4b855c;
}
.rates-little-bush-camp .drop-down .selected a:after {
  color: #4b855c;
}
.rates-little-bush-camp .drop-down .options ul li a {
  color: #4b855c;
}
.rates-little-bush-camp .drop-down .selected a {
  background-image: url("/application/themes/sabi_sabi/images/money-forest.svg");
}

.rates-selati-camp {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .rates-selati-camp {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.rates-selati-camp .main-title {
  color: #8F3533;
}
@media (max-width: 991px) {
  .rates-selati-camp .drinks-overview.bg-3 {
    background-color: transparent;
  }
}
.rates-selati-camp .striped-card .strip {
  background-color: #8F3533;
}
.rates-selati-camp .striped-card-tabs .tab-link {
  border-color: #8F3533;
  color: #8F3533;
}
.rates-selati-camp .striped-card-tabs .tab-link.active {
  background-color: #8F3533;
  color: #ffffff;
}
.rates-selati-camp .striped-card-title .vector-title {
  color: #8F3533;
}
.rates-selati-camp .striped-card-inner .table-row {
  border-color: #8F3533;
}
.rates-selati-camp .striped-card-inner .table-row .table-cell.price {
  border-left-color: #8F3533;
}
.rates-selati-camp .striped-card-inner .table-row .table-cell h5 span {
  font-size: 1rem;
}
.rates-selati-camp .striped-card-inner .table-row .table-cell h5 span .icon {
  color: #8F3533;
}
.rates-selati-camp .striped-card .btn.air {
  border: 1px solid #8F3533;
  color: #8F3533;
}
.rates-selati-camp .striped-card .btn.air:hover {
  background-color: #8F3533;
  color: #ffffff;
}
.rates-selati-camp .striped-card .btn.dark-fill {
  border-color: #8F3533;
  background-color: #8F3533;
}
.rates-selati-camp .striped-card .btn.dark-fill:hover {
  color: #8F3533;
  background-color: #F7F0E3;
}
.rates-selati-camp .drop-down .selected a {
  border-color: #8F3533;
}
.rates-selati-camp .drop-down .selected a:after {
  color: #8F3533;
}
.rates-selati-camp .drop-down .options ul li a {
  color: #8F3533;
}
.rates-selati-camp .drop-down .selected a {
  background-image: url("/application/themes/sabi_sabi/images/money-selati.svg");
}

.rates-earth-lodge {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 767px) {
  .rates-earth-lodge {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.rates-earth-lodge .main-title {
  color: #0A5D7E;
}
@media (max-width: 991px) {
  .rates-earth-lodge .drinks-overview.bg-3 {
    background-color: transparent;
  }
}
.rates-earth-lodge .striped-card .strip {
  background-color: #0A5D7E;
}
.rates-earth-lodge .striped-card-tabs .tab-link {
  border-color: #0A5D7E;
  color: #0A5D7E;
}
.rates-earth-lodge .striped-card-tabs .tab-link.active {
  background-color: #0A5D7E;
  color: #ffffff;
}
.rates-earth-lodge .striped-card-title .vector-title {
  color: #0A5D7E;
}
.rates-earth-lodge .striped-card-inner .table-row {
  border-color: #0A5D7E;
}
.rates-earth-lodge .striped-card-inner .table-row .table-cell.price {
  border-left-color: #0A5D7E;
}
.rates-earth-lodge .striped-card-inner .table-row .table-cell h5 span {
  font-size: 1rem;
}
.rates-earth-lodge .striped-card-inner .table-row .table-cell h5 span .icon {
  color: #0A5D7E;
}
.rates-earth-lodge .striped-card .btn.air {
  border: 1px solid #0A5D7E;
  color: #0A5D7E;
}
.rates-earth-lodge .striped-card .btn.air:hover {
  background-color: #0A5D7E;
  color: #ffffff;
}
.rates-earth-lodge .striped-card .btn.dark-fill {
  border-color: #0A5D7E;
  background-color: #0A5D7E;
}
.rates-earth-lodge .striped-card .btn.dark-fill:hover {
  color: #0A5D7E;
  background-color: #F7F0E3;
}
.rates-earth-lodge .drop-down .selected a {
  border-color: #0A5D7E;
}
.rates-earth-lodge .drop-down .selected a:after {
  color: #0A5D7E;
}
.rates-earth-lodge .drop-down .options ul li a {
  color: #0A5D7E;
}
.rates-earth-lodge .drop-down .selected a {
  background-image: url("/application/themes/sabi_sabi/images/money-earth.svg");
}

@media (max-width: 767px) {
  .rate-wrapper .striped-card .striped-card-inner .table {
    margin-bottom: 15px;
  }
}

/*sd code*/
.strip-arrow {
  display: inline;
}
@media only screen and (max-width: 480px) {
  .strip-arrow {
    display: flex;
  }
}
.strip-arrow img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  margin-top: 2px;
}
@media only screen and (max-width: 480px) {
  .strip-arrow img {
    transform: rotate(90deg);
    margin-top: 0;
  }
}

.btn-link {
  display: inline;
  color: #423718;
  font-size: 1.13rem;
  margin-bottom: 0;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: 900 !important;
  text-transform: none !important;
}
@media only screen and (max-width: 480px) {
  .btn-link {
    display: flex;
    align-items: center;
  }
}
.btn-link:hover {
  color: #423718;
}

.strip-wrap-block {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 767px) {
  .strip-wrap-block {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 480px) {
  .strip-wrap-block {
    gap: 0;
    width: 100%;
  }
}
.strip-new-card .cta-row {
  margin-top: 32px;
}
@media (max-width: 767px) {
  .strip-new-card .cta-row {
    margin-top: 30px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .strip-new-card .cta-row .btn .air {
    width: 100%;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .strip-new-card .cta-row .btn {
    width: 100%;
  }
}
.strip-bottom-text {
  font-size: 1.13rem;
}
@media (max-width: 767px) {
  .strip-table .table-row .table-cell.price {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .strip-table .table-row .table-cell.price h5 {
    font-size: 1.13rem;
    font-weight: 600;
  }
}
.strip-popup-block {
  display: none;
  position: absolute;
  top: 116%;
  right: 0;
  border: 1px solid #C4C4C4;
  border-radius: 3px;
  width: 100%;
  max-width: 25.94rem;
  padding: 1.75rem 1.94rem 1rem 1.75rem;
  box-shadow: 11px 15px 20px 0px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  z-index: 99;
  margin-right: -6px;
}
@media (max-width: 767px) {
  .strip-popup-block {
    max-width: initial;
    padding: 1rem;
    top: 110%;
    width: calc(100% + 15px);
    left: -9px;
  }
}
.strip-popup-block .spb-one-block {
  margin-bottom: 28px;
}
.strip-popup-block .spb-one-block .scw-title {
  color: #423718;
  font-size: 16px;
  font-weight: normal;
}
.strip-popup-block .spb-two-block {
  margin-bottom: 28px;
}
.strip-popup-block .spb-two-block .scw-title {
  color: #423718;
  font-size: 16px;
  font-weight: normal;
}
.strip-popup-block .spb-button-block {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.strip-popup-block .spb-button-block .btn.air {
  padding: 5px;
  min-width: 90px;
  height: 34px;
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}
@media only screen and (max-width: 480px) {
  .strip-popup-block .spb-button-block .btn.air {
    max-width: 50px;
  }
}
.strip-popup-block .spb-button-block .btn {
  padding: 5px;
  min-width: 90px;
  height: 34px;
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}
@media only screen and (max-width: 480px) {
  .strip-popup-block .spb-button-block .btn {
    max-width: 50px;
  }
}
.strip-popup-block .strip-calender-wrapper {
  margin-bottom: 21px;
}
.strip-popup-block .strip-table .table-cell {
  padding: 0;
}
.strip-popup-block .strip-table .table-row {
  border-radius: 3px;
}
.strip-popup-block .radio-wrap {
  position: relative;
  cursor: pointer;
  transition: 0.6s;
  border-right: 1px solid #70940C;
  flex: 1;
  background-color: #E8EBDF;
}
.strip-popup-block .radio-wrap:last-child {
  border-right: none !important;
}
.strip-popup-block .radio-input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  margin: 0;
}
.strip-popup-block .radio-input:checked + label {
  background-color: #70940C;
  color: #ffffff;
  border-radius: 0;
  font-weight: 600;
}
.strip-popup-block .radio-label {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #423718;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  border-radius: 2px;
  padding: 6px;
}
@media (max-width: 479px) {
  .strip-popup-block .radio-label {
    padding: 0.32rem 0.19rem;
    font-size: 0.77rem;
  }
}
.strip-card-wraper {
  position: relative;
  background-color: #E8EBDF;
  padding: 10px 23px;
  margin: 2.25rem 0;
  border: 1px solid #70940C;
  border-radius: 3px;
  cursor: pointer;
}
@media (max-width: 1439px) {
  .strip-card-wraper {
    padding: 10px 20px;
  }
}
@media (max-width: 479px) {
  .strip-card-wraper {
    padding: 10px 16px;
  }
}
.strip-card-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 479px) {
  .strip-card-block .btn-link {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .strip-card-block {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.strip-calender-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.strip-calender-wrapper .scw-title {
  font-size: 18px;
  font-weight: 700;
  color: #70940C;
}
@media (max-width: 767px) {
  .strip-calender-wrapper .scw-title {
    font-size: 1rem;
  }
}
.strip-calender-wrapper .scw-title.desktop {
  display: block;
}
@media (max-width: 767px) {
  .strip-calender-wrapper .scw-title.desktop {
    display: none;
  }
}
.strip-calender-wrapper .scw-title.mobile {
  display: none;
}
@media (max-width: 767px) {
  .strip-calender-wrapper .scw-title.mobile {
    display: block;
  }
}
.strip-calender-wrapper .scw-img-block {
  width: 21px;
  display: flex;
}
@media (max-width: 767px) {
  .strip-calender-wrapper .scw-img-block.zar-img {
    width: 19px;
  }
}
.strip-calender-wrapper .scw-img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.strip-text-black {
  padding: 11px 23px;
  border: 1px solid #70940C;
  background: #ffffff;
}
.strip-text-black h6 {
  color: #70940C;
  font-weight: 600;
  font-size: 18px;
  font-family: "Lato", "Arial", sans-serif;
}
.strip-text-black ul li {
  padding: 0;
  font-family: "Lato", "Arial", sans-serif;
  color: #423718;
}
@media only screen and (max-width: 480px) {
  .strip-text-black ul li {
    font-size: 0.88rem !important;
  }
}
@media (max-width: 767px) {
  .strip-text-black ul li:first-child {
    font-weight: 700;
  }
}

.table-row.headblock {
  background-color: #E8EBDF;
}
.table-row.headblock h5 {
  color: #24402A;
  font-weight: 600;
}
.table-row.headblock .table-cell {
  padding: 0.44rem 1.88rem;
}
@media (max-width: 767px) {
  .table-row.headblock .table-cell {
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .table-row.headblock .table-cell.price {
    max-width: 50%;
  }
}

.strip-title-desktop {
  display: inline;
}
@media (max-width: 767px) {
  .strip-title-desktop {
    display: none;
  }
}
.strip-title-mobile {
  display: none;
}
@media (max-width: 767px) {
  .strip-title-mobile {
    display: inline;
  }
}

@media only screen and (max-width: 1200px) {
  .strip-table-block {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .rate-wrapper .d-flex {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .lodge-showcase-images {
    padding: 0;
    flex-direction: row;
    align-items: unset;
  }
}
@media (max-width: 767px) {
  .lodge-showcase-images.mobile-lodge-showcase {
    display: none;
  }
}
.lodge-showcase-images .scg-large, .lodge-showcase-images .scg-center-column {
  max-width: 50%;
  max-height: 100%;
}
@media (max-width: 479px) {
  .lodge-showcase-images .scg-large, .lodge-showcase-images .scg-center-column {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .lodge-showcase-images .scg-large {
    max-height: 40.82rem;
    flex: 1;
  }
}
.lodge-showcase-images .scg-large .scg-image-wrap {
  max-height: 100%;
  height: 100%;
}
.lodge-showcase-images .scg-center-column {
  padding-right: 0;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .lodge-showcase-images .scg-center-column {
    max-height: 100% !important;
  }
}
@media (max-width: 991px) {
  .lodge-showcase-images .scg-center-column {
    flex-direction: column;
    flex: 1;
    padding-left: 0;
    max-height: 100%;
    height: 100%;
  }
}
.lodge-showcase-images .scg-center-column .scg-image {
  margin-bottom: 20px;
  max-height: 50%;
}
@media (max-width: 479px) {
  .lodge-showcase-images .scg-center-column .scg-image {
    margin-bottom: 1rem;
  }
}
.lodge-showcase-images .scg-center-column .scg-image:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .lodge-showcase-images .scg-image-wrap {
    max-height: 100% !important;
  }
}
@media (max-width: 991px) {
  .lodge-showcase-images .scg-image-wrap {
    height: 100%;
    max-height: 100%;
  }
}
.lodge-showcase-images .scg-image-wrap img {
  height: 100%;
}
@media (max-width: 1439px) {
  .lodge-showcase-images.three-columns {
    padding-left: 0;
    padding-right: 0;
  }
}
.lodge-showcase-images.three-columns .scg-large, .lodge-showcase-images.three-columns .scg-center-column {
  max-width: 33%;
}
@media (max-width: 479px) {
  .lodge-showcase-images.three-columns .scg-large, .lodge-showcase-images.three-columns .scg-center-column {
    max-width: 100%;
  }
}
@media (max-width: 479px) {
  .lodge-showcase-images.three-columns .scg-large .scg-image-wrap {
    margin-top: 1rem;
    margin-bottom: 0;
    height: auto;
  }
}
@media (max-width: 479px) {
  .lodge-showcase-images.three-columns .scg-large .scg-image-wrap.tc-image-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
  }
}
.lodge-showcase-images.three-columns .scg-center-column:first-of-type {
  padding-left: 0;
}
@media (max-width: 479px) {
  .lodge-showcase-images.three-columns .scg-center-column:first-of-type {
    padding-left: 0;
    padding-right: 0;
  }
}
.lodge-showcase-images.three-columns .scg-center-column .scg-image {
  margin-bottom: 0;
}
.lodge-showcase-images.three-columns .scg-center-column:last-of-type {
  padding-right: 0;
}
@media (max-width: 479px) {
  .lodge-showcase-images.three-columns .scg-center-column:last-of-type {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 479px) {
  .rate-wrapper .lodge-showcase-images .scg-center-column .scg-image {
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .rate-wrapper .lodge-showcase-images .scg-center-column .scg-image-wrap {
    margin-bottom: 0;
  }
}

.icon-with-content {
  display: flex;
  justify-content: center;
}
.icon-with-content-container {
  display: flex;
  justify-content: center;
}
.icon-with-content .icon-content-wrap {
  text-align: center;
  padding-left: 1rem;
  padding-right: 1rem;
}
.icon-with-content .icon-content-wrap img {
  margin-bottom: 2rem;
  max-height: 7.82rem;
}
.icon-with-content .icon-content-wrap h4 {
  color: #24402A;
}
@media (max-width: 1439px) {
  .icon-with-content .icon-content-wrap h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .icon-with-content .icon-content-wrap {
    margin-bottom: 2rem;
  }
}

.trade-hub-intro {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .trade-hub-intro {
    padding-bottom: 2rem;
  }
}
.trade-hub-intro .fi-img {
  margin-bottom: 0;
}
.trade-hub-intro .panel-intro-desc {
  line-height: 3rem;
}
@media (max-width: 767px) {
  .trade-hub-intro .panel-intro-desc {
    line-height: 2rem;
  }
}

.welcome-text {
  margin-left: -2rem;
}
@media (max-width: 767px) {
  .welcome-text {
    margin-left: 0;
  }
}
.welcome-text-left {
  height: 100%;
  text-align: right;
}
@media (max-width: 767px) {
  .welcome-text-left {
    text-align: center;
  }
}
.welcome-text-left h5 {
  color: #24402A;
  margin-bottom: 0;
}
.welcome-text-right {
  display: flex;
  height: 100%;
  align-items: center;
}
.welcome-text-right h5 {
  line-height: 2.63rem;
  font-family: "Lato", "Arial", sans-serif;
  font-weight: normal;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .welcome-text-right h5 {
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .welcome-text-right h5 {
    line-height: 2rem;
  }
}
.welcome-text-container {
  display: flex;
  flex-wrap: wrap;
}
.welcome-text-left {
  padding-right: 2rem;
  position: relative;
  border-right: 1px solid #423718;
  padding-left: 1.5rem;
}
@media (max-width: 991px) {
  .welcome-text-left h5 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .welcome-text-left h5 {
    font-size: 1.32rem;
  }
}
@media (max-width: 767px) {
  .welcome-text-left {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 2rem;
    border-right: 0;
    border-bottom: 1px solid #24402A;
  }
}
.welcome-text-right {
  padding-left: 3rem;
}
@media (max-width: 991px) {
  .welcome-text-right h5 {
    font-size: 1.5rem;
  }
}
@media (max-width: 479px) {
  .welcome-text-right h5 {
    text-align: center;
    font-size: 1.32rem;
  }
}
@media (max-width: 767px) {
  .welcome-text-right {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 2rem;
    border-right: 0;
  }
}

.contact-detail-cards .welcome-text-left {
  border-right: 0;
}
.contact-detail-cards .welcome-text-left:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  bottom: 0;
  right: -2%;
  background-color: #423718;
}
@media (max-width: 767px) {
  .contact-detail-cards .welcome-text-left:after {
    display: none;
  }
}

.contact-detail-cards .white-card {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}
@media (max-width: 1439px) {
  .contact-detail-cards .white-card {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .contact-detail-cards .white-card {
    margin-bottom: 2rem;
  }
}
.contact-detail-cards .details-wrap {
  margin-bottom: 1.25rem;
}
.contact-detail-cards .details-wrap .semi-title {
  margin-bottom: 0;
  letter-spacing: 0;
  font-size: 0.88rem;
  font-weight: normal;
}
.contact-detail-cards .details-wrap .detail {
  margin-bottom: 0;
  color: #000000;
  text-decoration: none;
  font-size: 1.13rem;
}
.contact-detail-cards .details-title {
  font-family: "Lato", "Arial", sans-serif;
  font-weight: bold;
  margin-bottom: 0.63rem;
  color: #000000;
}

.about-lodge {
  background-color: #F7F0E3;
  display: none;
}
.about-lodge.active {
  display: block;
}
.about-lodge .single-columns-wrapper {
  gap: 1.25rem;
}
.about-lodge .single-columns-wrapper .table {
  max-width: 31%;
  width: 100%;
}
@media (max-width: 767px) {
  .about-lodge .single-columns-wrapper .table {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1.25rem;
    margin-left: 0;
    margin-right: 0;
  }
}
.about-lodge .single-columns-wrapper .table first-of-type {
  margin-left: 0;
}
.about-lodge .single-columns-wrapper .table:last-of-type {
  margin-right: 0;
}
.about-lodge .single-columns-wrapper .table-cell {
  padding: 0.94rem 1.25rem;
}
.about-lodge .single-columns-wrapper .table-cell h5 {
  color: #000000;
}
@media (max-width: 90rem) and (min-width: 78.75rem) {
  .about-lodge.contact-detail-cards.lodge-cards-body .d-flex .cell-16 {
    width: 54%;
  }
  .about-lodge.contact-detail-cards.lodge-cards-body .d-flex .cell-xl-7 {
    width: 46%;
    padding-left: 1.5rem;
  }
}
.about-lodge .about-lodge-image-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  margin-left: 0.94rem;
}
@media (max-width: 1260px) {
  .about-lodge .about-lodge-image-wrap {
    height: 31.25rem;
    margin-left: 0;
  }
}
.about-lodge .about-lodge-image-wrap .abl-img {
  position: relative;
  height: calc(50% - 8px);
}
.about-lodge .about-lodge-image-wrap .abl-img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper-secondary {
  background-color: #F7F0E3;
}
.wrapper-secondary .page-banner-secondary {
  padding-left: 2rem;
  padding-right: 2rem;
}

.intro-text {
  padding-left: 0;
  padding-right: 0;
}
.intro-text-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.intro-text-container.content-top {
  align-items: flex-start;
}
.intro-text-left {
  text-align: right;
  padding: 2rem 4rem 2rem 2rem;
}
.intro-text-left-title {
  font-weight: 700;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .intro-text-left-title {
    text-align: center;
    margin-bottom: 0;
  }
}
.intro-text-left-title span {
  font-weight: normal;
}
.intro-text-right {
  border-left: 1px solid #423718;
  padding-left: 4rem;
  padding: 2rem 2rem 2rem 4rem;
}
@media (max-width: 991px) {
  .intro-text-right {
    border-left: none;
    border-top: 1px solid #423718;
  }
}
.intro-text-right-title {
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.75rem;
  line-height: 2.63rem;
}
@media (max-width: 991px) {
  .intro-text-right-title {
    text-align: center;
    font-size: 1.32rem;
    line-height: 2rem;
  }
}
.intro-text-right-desc {
  font-size: 1.32rem;
  line-height: 2rem;
}
@media (max-width: 991px) {
  .intro-text-right-desc {
    text-align: center;
    font-size: 1rem;
    line-height: 1.69rem;
  }
}
@media (max-width: 767px) {
  .intro-text-right-desc {
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.57rem;
  }
}
@media (max-width: 1439px) {
  .intro-text-left, .intro-text-right {
    padding: 2rem;
  }
}
@media (max-width: 479px) {
  .intro-text-left, .intro-text-right {
    padding: 2rem 1rem;
  }
}

@media (max-width: 991px) {
  .reserve-page .section-feature-a {
    padding-bottom: 17.5rem;
  }
}
@media (max-width: 767px) {
  .reserve-page .section-feature-a {
    padding-bottom: 2rem;
  }
}

.overlay-image {
  max-height: 43.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}
.overlay-image:after {
  position: absolute;
  content: "";
  background-color: rgba(186, 185, 127, 0.2);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.overlay-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: top;
     object-position: top;
}
.overlay-image-wrapper {
  display: flex;
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.team-wrap {
  background-color: #24402A;
}

.horizontal-tab-gallery.hgt-inner-navigation.overflow-lg-auto .hgt-wrapper {
  overflow: auto;
  width: 100%;
}

.team-cards-wrapper {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media (max-width: 767px) {
  .team-cards-wrapper {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.team-cards-container {
  width: 100%;
}
.team-cards-container .forest-light {
  margin-bottom: 2rem;
}
.team-cards-container .forest-light .semi-title {
  background-color: #919F69;
}
.team-cards-container .forest-light .cta-text-wrapper {
  background-color: #919F69;
}
.team-cards-container .primary-light {
  margin-bottom: 2rem;
}
.team-cards-container .primary-light .semi-title {
  background-color: #CEA496;
}
.team-cards-container .primary-light .cta-text-wrapper {
  background-color: #CEA496;
}
.team-cards-container .golds {
  margin-bottom: 2rem;
}
.team-cards-container .golds .semi-title {
  background-color: #BE8E36;
}
.team-cards-container .golds .cta-text-wrapper {
  background-color: #BE8E36;
}
.team-cards-container .bush {
  margin-bottom: 2rem;
}
.team-cards-container .bush .semi-title {
  background-color: #0A5D7E;
}
.team-cards-container .bush .cta-text-wrapper {
  background-color: #0A5D7E;
}
@media (max-width: 991px) {
  .team-cards-container {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .team-cards-container .cta-overlay {
    left: 0.5rem;
    right: 0.5rem;
  }
}
@media (max-width: 1439px) {
  .team-cards-container .cta-overlay .semi-title {
    margin-left: 0.75rem;
  }
}
@media (max-width: 479px) {
  .team-cards-container .cta-overlay .semi-title {
    font-size: 0.57rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 767px) {
  .team-cards-container .cta-gallery {
    padding: 0 0.5rem;
  }
}
@media (max-width: 479px) {
  .team-cards-container .cta-gallery .aspect-ratio {
    height: 15.63rem;
  }
}
@media (max-width: 1439px) {
  .team-cards-container .cta-text-wrapper {
    padding-right: 1rem;
  }
}
@media (max-width: 479px) {
  .team-cards-container .cta-text-wrapper {
    padding: 1rem 0.75rem 0.75rem 0.75rem;
  }
}
.team-cards-container .cta-text-link {
  font-size: 1.63rem;
  line-height: 2.25rem;
  margin-bottom: 0.88rem;
  text-transform: capitalize;
}
@media (max-width: 1439px) {
  .team-cards-container .cta-text-link {
    font-size: 1.13rem;
    line-height: 1.75rem;
    margin-bottom: 0;
  }
}
@media (max-width: 479px) {
  .team-cards-container .cta-text-link {
    font-size: 1rem;
  }
}
.team-cards-container .cta-text-desc {
  text-transform: uppercase;
}

.sabi-sabi-highlights .ssh-row {
  display: flex;
  flex-wrap: wrap;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-row {
    flex-direction: column;
    padding-top: 0rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-highlights .ssh-row {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.sabi-sabi-highlights .ssh-row.reverse {
  flex-direction: row-reverse;
}
.sabi-sabi-highlights .ssh-row.reverse .bgt-shape {
  z-index: 0;
}
.sabi-sabi-highlights .ssh-row.reverse .ssh-text-block {
  margin-right: -64px;
  margin-top: -64px;
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-row.reverse .ssh-text-block {
    margin: 0;
  }
}
.sabi-sabi-highlights .ssh-row:last-of-type() {
  padding-bottom: 4rem;
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-row:last-of-type() {
    padding-bottom: 0rem;
  }
}
.sabi-sabi-highlights .ssh-image {
  max-width: 60%;
  width: 100%;
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-image {
    max-height: 100%;
    max-width: 100%;
  }
}
.sabi-sabi-highlights .ssh-text-block {
  max-width: 44%;
  width: 100%;
  padding: 5rem 4rem;
  color: #F7F0E3;
  position: relative;
  margin-left: -4rem;
  margin-top: -4rem;
  margin-bottom: 9%;
}
.sabi-sabi-highlights .ssh-text-block.primary {
  background-color: #8F3533;
}
.sabi-sabi-highlights .ssh-text-block.gold {
  background-color: #BE8E36;
}
.sabi-sabi-highlights .ssh-text-block.forest {
  background-color: #24402A;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .sabi-sabi-highlights .ssh-text-block {
    padding: 4.38rem 2rem;
    max-height: 34.38rem;
  }
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-text-block {
    margin: 0;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    padding: 2.5rem 2rem;
  }
}
@media (max-width: 479px) {
  .sabi-sabi-highlights .ssh-text-block {
    margin: 0;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    padding: 1.88rem 1.25rem;
  }
}
.sabi-sabi-highlights .ssh-title {
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
  color: #F7F0E3;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .sabi-sabi-highlights .ssh-title {
    font-size: 2.5rem;
  }
}
.sabi-sabi-highlights .ssh-description {
  line-height: 2.63rem;
  font-family: "Lato", "Arial", sans-serif;
  text-align: center;
  font-weight: 300;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .sabi-sabi-highlights .ssh-description {
    font-size: 1.32rem;
    line-height: 2.19rem;
  }
}
@media (max-width: 991px) {
  .sabi-sabi-highlights .ssh-description {
    font-size: 1.32rem;
    line-height: 2.19rem;
  }
}
@media (max-width: 479px) {
  .sabi-sabi-highlights .ssh-description {
    font-size: 1rem;
    line-height: 1.63rem;
  }
}

.members-gallery.reserve-gallery .mg-outer-column-1 .mg-small-row .mg-image-wrap, .members-gallery.reserve-gallery .mg-outer-column-2 .mg-small-row .mg-image-wrap {
  max-height: 380px;
}
.members-gallery.reserve-gallery .mg-outer-column-1 .mg-large-row .mg-image-wrap, .members-gallery.reserve-gallery .mg-outer-column-2 .mg-large-row .mg-image-wrap {
  max-height: 500px;
}
.members-gallery.reserve-gallery .mg-outer-column-3 .mg-small-row .mg-image-wrap, .members-gallery.reserve-gallery .mg-outer-column-4 .mg-small-row .mg-image-wrap {
  max-height: 392px;
}
.members-gallery.reserve-gallery .mg-outer-column-3 .mg-large-row .mg-image-wrap, .members-gallery.reserve-gallery .mg-outer-column-4 .mg-large-row .mg-image-wrap {
  max-height: 488px;
}
.members-gallery.reserve-gallery .mg-outer-column-4 {
  width: 28%;
}
@media (max-width: 479px) {
  .members-gallery.reserve-gallery .mg-outer-column-4 {
    width: 100%;
  }
}
.members-gallery .mg-fullscreen-gallery {
  display: flex;
  width: 100%;
}
@media (max-width: 479px) {
  .members-gallery .mg-fullscreen-gallery {
    flex-wrap: wrap;
  }
}
.members-gallery .mg-outer-column-1 {
  width: 20%;
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-1 {
    width: 35%;
  }
}
.members-gallery .mg-outer-column-2 {
  width: 30%;
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-2 {
    width: 65%;
  }
}
.members-gallery .mg-outer-column-3 {
  width: 24%;
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-3 {
    width: 35%;
  }
}
.members-gallery .mg-outer-column-4 {
  width: 27%;
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-4 {
    width: 65%;
  }
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-4 .mg-small-row {
    height: 18.75rem;
  }
}
@media (max-width: 479px) {
  .members-gallery .mg-outer-column-4 .mg-large-row {
    height: 14.57rem;
  }
}
.members-gallery .mg-small-row {
  display: flex;
  width: 100%;
}
@media (max-width: 479px) {
  .members-gallery .mg-small-row {
    height: 14.57rem;
  }
}
.members-gallery .mg-small-row .mg-image-container {
  height: 100%;
  width: 100%;
  flex: 1;
}
@media (max-width: 479px) {
  .members-gallery .mg-large-row {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 18.75rem;
  }
}
.members-gallery .mg-large-row .mg-image-container {
  width: 100%;
  flex: 1;
  overflow: hidden;
}
@media (max-width: 479px) {
  .members-gallery .mg-large-row .mg-image-container {
    height: 100%;
  }
}
.members-gallery .mg-inner-left {
  max-width: 40%;
  width: 100%;
  overflow: hidden;
}
.members-gallery .mg-inner-right {
  max-width: 60%;
  width: 100%;
  overflow: hidden;
}
.members-gallery .mg-image-container {
  height: 50%;
}
@media (max-width: 479px) {
  .members-gallery .mg-image-wrap.aspect-ratio {
    height: 100%;
  }
  .members-gallery .mg-image-wrap.aspect-ratio:before {
    display: none;
  }
  .members-gallery .mg-image-wrap.aspect-ratio img {
    position: relative;
  }
}
.members-gallery .frame .mg-image-wrap {
  border: 36px solid;
}
@media (max-width: 991px) {
  .members-gallery .frame .mg-image-wrap {
    border: 18px solid;
  }
}
.members-gallery .frame .mg-image-wrap.sky {
  border-color: #58778D;
}
.members-gallery .frame .mg-image-wrap.primary {
  border-color: #8F3533;
}
.members-gallery .frame .mg-image-wrap.gold {
  border-color: #BE8E36;
}
@media (max-width: 479px) {
  .members-gallery.responsive-grid .mg-outer-column-3 .mg-large-row {
    height: 14.75rem;
  }
}
@media (max-width: 479px) {
  .members-gallery.responsive-grid .mg-outer-column-4 {
    width: 65%;
  }
  .members-gallery.responsive-grid .mg-outer-column-4 .mg-small-row {
    height: 14.75rem;
  }
}

@media (max-width: 479px) {
  .members-gallery.members-gallery-mob .mg-fullscreen-gallery .mg-outer-column-4 {
    width: 65%;
  }
}

.slider-with-content-card {
  display: flex;
  flex-wrap: wrap;
}
.slider-with-content-card .slw-white-card {
  background-color: #ffffff;
  padding: 8rem 3rem 4rem 5rem;
  height: 100%;
}
@media (max-width: 991px) {
  .slider-with-content-card .slw-white-card {
    padding: 4rem 2rem;
  }
}
.slider-with-content-card .slw-white-card .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.slider-with-content-card .slw-white-card .list a {
  text-decoration: none;
  font-size: 1.13rem;
  line-height: 1.75rem;
}
.slider-with-content-card .slw-white-card .list.list-blue a {
  color: #0A5D7E;
}
.slider-with-content-card .slw-white-card .list.list-blue a:hover {
  color: #8F3533;
}
.slider-with-content-card .slw-title {
  color: #24402A;
  margin-bottom: 2rem;
  font-size: 2rem;
  line-height: 2.63rem;
  align-self: baseline;
}
@media (max-width: 991px) {
  .slider-with-content-card .slw-title {
    text-align: center;
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  .slider-with-content-card .slw-description {
    text-align: center;
    font-size: 1rem;
  }
}
.slider-with-content-card .ssp-carousel .swiper-slide {
  height: 100%;
}
.slider-with-content-card .ssp-carousel .swiper-slide .slw-image-wrapper {
  height: 100%;
}
.slider-with-content-card .ssp-carousel.wonderland-slider {
  height: 100%;
}
.slider-with-content-card .ssp-carousel.wonderland-slider .sc-pagination {
  height: 83px;
  width: 258px;
  right: 0;
  left: 0;
  bottom: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  flex-direction: row;
}

.featured-animals .title-block {
  text-align: center;
  color: #24402A;
}

.animals-gallery .ag-fullscreen-gallery {
  display: flex;
  flex-wrap: wrap;
}
.animals-gallery .ag-outer-column-right, .animals-gallery .ag-outer-column-left {
  width: 50%;
}
@media (max-width: 767px) {
  .animals-gallery .ag-outer-column-right, .animals-gallery .ag-outer-column-left {
    width: 100%;
  }
}
.animals-gallery .ag-outer-column-right .ag-left-column, .animals-gallery .ag-outer-column-left .ag-left-column {
  width: 40%;
}
@media (max-width: 767px) {
  .animals-gallery .ag-outer-column-right .ag-left-column, .animals-gallery .ag-outer-column-left .ag-left-column {
    width: 50%;
  }
}
@media (max-width: 479px) {
  .animals-gallery .ag-outer-column-right .ag-left-column, .animals-gallery .ag-outer-column-left .ag-left-column {
    width: 100%;
  }
}
.animals-gallery .ag-outer-column-right .ag-right-column, .animals-gallery .ag-outer-column-left .ag-right-column {
  width: 60%;
}
@media (max-width: 767px) {
  .animals-gallery .ag-outer-column-right .ag-right-column, .animals-gallery .ag-outer-column-left .ag-right-column {
    width: 50%;
  }
}
@media (max-width: 479px) {
  .animals-gallery .ag-outer-column-right .ag-right-column, .animals-gallery .ag-outer-column-left .ag-right-column {
    width: 100%;
  }
}
.animals-gallery .ag-outer-column-right .ag-left-column {
  width: 54%;
}
@media (max-width: 767px) {
  .animals-gallery .ag-outer-column-right .ag-left-column {
    width: 100%;
  }
}
.animals-gallery .ag-outer-column-right .ag-right-column {
  width: 60%;
}
@media (max-width: 767px) {
  .animals-gallery .ag-outer-column-right .ag-right-column {
    width: 100%;
  }
}
.animals-gallery .ag-row-small, .animals-gallery .ag-row-large {
  display: flex;
}
@media (max-width: 479px) {
  .animals-gallery .ag-row-small, .animals-gallery .ag-row-large {
    flex-direction: column;
  }
}
.animals-gallery .ag-image-frame {
  height: 100%;
}
.animals-gallery .ag-image-container {
  height: 100%;
}
.animals-gallery .ag-text-frame {
  padding: 2rem;
  color: #ffffff;
  height: 100%;
}
@media (max-width: 991px) {
  .animals-gallery .ag-text-frame {
    padding: 1rem;
  }
}
.animals-gallery .ag-text-frame-title {
  font-size: 2rem;
  line-height: 2.63rem;
}
@media (max-width: 991px) {
  .animals-gallery .ag-text-frame-title {
    font-size: 1.5rem;
    line-height: 2.13rem;
  }
}
.animals-gallery .ag-text-frame-description {
  line-height: 1.5rem;
}
.animals-gallery .ag-text-frame.sky {
  background-color: #58778D;
}
.animals-gallery .ag-text-frame.primary {
  background-color: #8F3533;
}
.animals-gallery .ag-text-frame.gold {
  background-color: #BE8E36;
}
.animals-gallery .ag-text-wrap {
  overflow: auto;
}
.animals-gallery .ag-text-wrap::-webkit-scrollbar {
  width: 10px;
}
.animals-gallery .ag-text-wrap::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.animals-gallery .ag-text-wrap::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(143, 53, 51, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.animals-gallery .ag-text-wrap::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .animals-gallery .ag-text-wrap {
    max-height: 18.75rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .animals-gallery .ag-text-wrap {
    max-height: 8.75rem;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .animals-gallery .ag-text-wrap {
    max-height: 18.75rem;
  }
}

.slide-with-content-card {
  display: flex;
  max-height: 30.63rem;
}
@media (max-width: 767px) {
  .slide-with-content-card {
    max-height: 100%;
    flex-direction: column;
  }
}
.slide-with-content-card .swc-image {
  width: 48%;
}
@media (max-width: 767px) {
  .slide-with-content-card .swc-image {
    width: 100%;
  }
}
.slide-with-content-card .swc-image .image-wrap {
  width: 100%;
  height: 100%;
}
.slide-with-content-card .swc-white-card {
  width: 52%;
  padding: 2.5rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .slide-with-content-card .swc-white-card {
    width: 100%;
  }
}
.slide-with-content-card .swc-content-wrapper {
  max-height: 20rem;
  overflow: auto;
}
.slide-with-content-card .swc-content-wrapper::-webkit-scrollbar {
  width: 10px;
}
.slide-with-content-card .swc-content-wrapper::-webkit-scrollbar-track {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
.slide-with-content-card .swc-content-wrapper::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}
.slide-with-content-card .swc-content-wrapper::-webkit-scrollbar-thumb:window-inactive {
  background: #8F3533;
}
.slide-with-content-card .swc-title {
  color: #24402A;
  font-size: 2rem;
  line-height: 2.63rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .slide-with-content-card .swc-title {
    font-size: 1.5rem;
    line-height: 2.13rem;
  }
}

@media (max-width: 767px) {
  .responsive-spacing {
    padding-top: 20.75rem;
  }
}

.additional-features {
  display: flex;
  transform: translate(10px, -50%);
}
@media (max-width: 991px) {
  .additional-features {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .additional-features {
    transform: translate(0px, 0%);
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-top: 0;
  }
}
.additional-features .afs-card {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 4rem 2rem 4rem;
  color: #ffffff;
  flex: 1;
  height: 100%;
}
.additional-features .afs-card.glass {
  background-color: #BAB97F;
}
.additional-features .afs-card.sky {
  background-color: #58778D;
}
.additional-features .afs-card.primary {
  background-color: #8F3533;
}
.additional-features .afs-card.gold {
  background-color: #BE8E36;
}
@media (max-width: 991px) {
  .additional-features .afs-card {
    padding: 2rem;
  }
}
@media (max-width: 479px) {
  .additional-features .afs-card {
    padding: 1.13rem;
  }
}
.additional-features .afs-icon {
  margin-bottom: 1.63rem;
  display: flex;
  align-items: center;
  flex: 1;
}
@media (max-width: 479px) {
  .additional-features .afs-icon {
    flex: auto;
    height: 2.82rem;
    margin-bottom: 0.75rem;
  }
}
.additional-features .afs-icon img {
  width: 100%;
  height: 100%;
  max-height: 5.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 991px) {
  .additional-features .afs-icon img {
    height: 4.44rem;
  }
}
@media (max-width: 479px) {
  .additional-features .afs-icon img {
    height: 2.57rem;
  }
}
.additional-features .afs-text-wrap {
  text-align: center;
}
.additional-features .afs-number-title h2 {
  font-size: 4.07rem;
  line-height: 3.75rem;
}
@media (max-width: 991px) {
  .additional-features .afs-number-title h2 {
    font-size: 4.07rem;
    line-height: 3.75rem;
  }
}
@media (max-width: 479px) {
  .additional-features .afs-number-title h2 {
    font-size: 2.5rem;
    line-height: 3.75rem;
  }
}
.additional-features .afs-title span {
  font-size: 2rem;
  line-height: 2.63rem;
  font-family: "Playfair Display", "Arial", sans-serif;
  display: block;
  text-transform: capitalize;
}
@media (max-width: 1439px) {
  .additional-features .afs-title span {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .additional-features .afs-title span {
    font-size: 2rem;
    line-height: 2.63rem;
  }
}
@media (max-width: 479px) {
  .additional-features .afs-title span {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.sabi-sabi-family .tour-note-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sabi-sabi-family .tour-note-row .floating-note {
  max-width: 40%;
  flex-basis: 40%;
  width: 100%;
  position: relative;
  margin-right: -15%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .floating-note {
    max-width: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .floating-note {
    max-width: 60%;
    flex-basis: 60%;
    margin-right: -25%;
  }
}
@media (max-width: 479px) {
  .sabi-sabi-family .tour-note-row .floating-note {
    max-width: 100%;
    flex-basis: 100%;
    margin: 0;
  }
}
.sabi-sabi-family .tour-note-row .floating-note .fn-wrapper {
  position: relative;
  z-index: 9;
  padding: 5rem;
  color: #ffffff;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 6.88rem;
}
@media (max-width: 1439px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-wrapper {
    padding: 2.5rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-wrapper {
    padding: 2.25rem;
    margin-bottom: 3.75rem;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-wrapper {
    padding: 1.88rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-wrapper {
    margin-bottom: 0;
  }
}
.sabi-sabi-family .tour-note-row .floating-note .fn-content h2 {
  line-height: 4.38rem;
  margin-bottom: 2rem;
}
@media (max-width: 1439px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-content h2 {
    font-size: 2.63rem;
    line-height: 3.75rem;
  }
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-content h2 {
    font-size: 2rem;
    line-height: 3.38rem;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-content h2 {
    font-size: 1.75rem;
    line-height: 2.88rem;
    margin-bottom: 1.5rem;
  }
}
.sabi-sabi-family .tour-note-row .floating-note .fn-content h2 span {
  color: #BE8E36;
  display: block;
}
.sabi-sabi-family .tour-note-row .floating-note .fn-note {
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 1439px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-note {
    font-size: 1.5rem;
    line-height: 2.75rem;
  }
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-note {
    font-size: 1.13rem;
    line-height: 2.38rem;
  }
}
.sabi-sabi-family .tour-note-row .floating-note .fn-tips {
  margin-top: 4.69rem;
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .floating-note .fn-tips {
    margin-top: 2.5rem;
  }
}
.sabi-sabi-family .tour-note-row .floating-note .fn-tips span {
  display: block;
  font-family: "Playfair Display", "Arial", sans-serif;
  text-transform: capitalize;
}
.sabi-sabi-family .tour-note-row .floating-note .fn-tips .date {
  color: #8F3533;
  font-size: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: 8px;
}
.sabi-sabi-family .tour-note-row .tn-image-block {
  max-width: 60%;
  flex-basis: 60%;
  width: 100%;
}
@media (max-width: 991px) {
  .sabi-sabi-family .tour-note-row .tn-image-block {
    height: 50rem;
  }
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .tn-image-block {
    max-width: 65%;
    flex-basis: 65%;
  }
}
@media (max-width: 479px) {
  .sabi-sabi-family .tour-note-row .tn-image-block {
    max-width: 100%;
    flex-basis: 100%;
    height: 500px;
  }
}
.sabi-sabi-family .tour-note-row .tn-image-block img {
  width: 100%;
  max-height: 84.38rem;
}
@media (max-width: 767px) {
  .sabi-sabi-family .tour-note-row .tn-image-block img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (max-width: 767px) {
  .our-role .panel-intro {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .our-role .panel-intro .or-title-wrap h2 {
    line-height: 2.5rem;
  }
  .our-role .panel-intro .or-title-wrap h2 br {
    display: none;
  }
  .our-role .panel-intro .or-title-wrap h2 span {
    display: block;
  }
}

@media (max-width: 767px) {
  .two-column-row {
    text-align: center;
  }
}
.two-column-row .image-block {
  text-align: center;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .two-column-row .image-block {
    max-width: 170px;
  }
}
.two-column-row .content-block p {
  font-size: 1.75rem;
  line-height: 3rem;
  font-family: "Lato", "Arial", sans-serif;
  color: #24402A;
}
@media (max-width: 991px) {
  .two-column-row .content-block p {
    font-size: 1.13rem;
    line-height: 2.38rem;
  }
}

.primary-highlight-block {
  background-color: #8F3533;
  padding: 5rem 0;
  color: #F7F0E3;
}
@media (max-width: 767px) {
  .primary-highlight-block {
    padding: 3.13rem;
  }
}
@media (max-width: 479px) {
  .primary-highlight-block {
    padding: 1.88rem 1.25rem;
  }
}
.primary-highlight-block .content-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 479px) {
  .primary-highlight-block .content-row {
    margin-bottom: 1.88rem;
  }
}
.primary-highlight-block .content-row .title-block {
  padding: 3.13rem 4rem 6.25rem 0;
  text-align: right;
  border-right: 1px solid #F7F0E3;
}
@media (max-width: 767px) {
  .primary-highlight-block .content-row .title-block {
    padding: 1.57rem 0 1.57rem;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #F7F0E3;
  }
}
.primary-highlight-block .content-row .description-block {
  text-align: left;
  padding: 3.13rem 0 6.25rem 4rem;
}
@media (max-width: 767px) {
  .primary-highlight-block .content-row .description-block {
    padding: 1.57rem 0 1.57rem;
  }
}
.primary-highlight-block .content-row .description-block p {
  font-size: 1.75rem;
  line-height: 2.63rem;
}
@media (max-width: 767px) {
  .primary-highlight-block .content-row .description-block p {
    font-size: 1.13rem;
    line-height: 2rem;
    text-align: center;
  }
}

.members-featured .mf-row {
  display: flex;
  flex-wrap: wrap;
}
.members-featured .mf-image-block {
  flex: 1;
  height: 100%;
}
.members-featured .mf-image-block figure {
  height: 100%;
}
.members-featured .mf-content-block {
  color: #ffffff;
  padding: 5rem 0 0 5rem;
}
@media (max-width: 991px) {
  .members-featured .mf-content-block {
    padding: 3.13rem 0 0 3.13rem;
  }
}
@media (max-width: 767px) {
  .members-featured .mf-content-block {
    padding: 2rem;
    text-align: center;
  }
}
.members-featured .mf-description {
  padding-bottom: 1.13rem;
}
.members-featured .mf-description p {
  margin-bottom: 1.57rem;
}

.floating-wrapper {
  background-color: #ffffff;
  position: relative;
  outline: 0;
}
@media (max-width: 991px) {
  .floating-wrapper:after {
    content: "";
    background-color: white;
    height: 2px;
    width: 100%;
    position: absolute;
    display: block;
    bottom: -1px;
  }
}
@media (max-width: 767px) {
  .floating-wrapper .bgt-shape {
    max-width: 50%;
    right: 0%;
  }
}
@media (max-width: 479px) {
  .floating-wrapper .bgt-shape {
    top: 25%;
    right: -2%;
  }
}
.floating-wrapper--white {
  background-color: transparent;
}
@media (max-width: 991px) {
  .floating-wrapper--white .container-1440 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .floating-wrapper--white .row {
    justify-content: center;
  }
}
.floating-wrapper--white .floating-box {
  padding: 5rem 4rem;
  margin: -30% auto 0 10%;
  transform: translate(0, 0);
}
@media (max-width: 991px) {
  .floating-wrapper--white .floating-box {
    max-width: 80%;
    margin: -30% auto 0 auto;
    padding: 2.5rem 2rem;
  }
}
.floating-wrapper + .featured-animals {
  outline: 0;
}
.floating-box {
  position: relative;
  z-index: 9;
  text-align: center;
  padding: 5rem 2.5rem;
  color: #24402A;
  background-color: #F7F0E3;
  transform: translate(10%, -50%);
  margin-top: 0;
  margin-left: 0;
}
.floating-box.box-transparent {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .floating-box.box-transparent {
    padding: 3.13rem 1.88rem;
  }
}
@media (max-width: 991px) {
  .floating-box.box-transparent p {
    font-size: 1.13rem;
    line-height: 1.75rem;
  }
}
.floating-box p {
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 991px) {
  .floating-box p {
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .floating-box {
    transform: translate(0, 0);
    padding: 1.88rem;
    margin: -30% auto 0;
    padding: 3.13rem 1.88rem;
    font-size: 1.13rem;
    line-height: 1.75rem;
  }
}
@media (max-width: 479px) {
  .floating-box {
    padding: 1.88rem;
  }
  .floating-box p {
    font-size: 0.88rem;
  }
}
.floating-box h2 {
  margin-bottom: 4rem;
}
@media (max-width: 479px) {
  .floating-box h2 {
    margin-bottom: 2rem;
  }
}

.sabisabi-about-featured {
  position: relative;
}
@media (max-width: 991px) {
  .sabisabi-about-featured .container-1440 {
    padding: 0 0;
  }
}
.sabisabi-about-featured .saf-description {
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.sabisabi-about-featured .saf-description h2 {
  margin-bottom: 4rem;
}
@media (max-width: 479px) {
  .sabisabi-about-featured .featured-about-image figure {
    min-height: 20.63rem;
  }
}

.timeline-intro {
  background-image: var(--ourStoryTimelineBG);
  background-size: 100%;
  background-repeat: no-repeat;
  background-color: #8F3533;
  margin: 0 2rem;
}
@media (max-width: 1439px) {
  .timeline-intro {
    background-size: cover;
    background-position: left;
  }
}
@media (max-width: 767px) {
  .timeline-intro {
    margin: 0;
  }
}
@media (max-width: 479px) {
  .timeline-intro {
    background-position: 30%;
  }
}
.timeline-intro .ti-vector-block {
  max-width: 11.88rem;
}
@media (max-width: 991px) {
  .timeline-intro .ti-vector-block {
    max-width: 5.63rem;
  }
}
.timeline-intro .ti-title-block {
  color: #ffffff;
  text-align: left;
  padding-bottom: 11.25rem;
}
.timeline-intro .ptb-title-block {
  margin: 2.5rem 0 0 0;
}
@media (min-width: 992px) {
  .timeline-intro .ptb-title-block {
    display: none;
  }
}
@media (max-width: 991px) {
  .timeline-intro .ptb-title-block h1 {
    text-align: center;
  }
}
.timeline-intro .timeline-floating-block {
  justify-content: flex-end;
  color: #F7F0E3;
  padding: 5rem 3.13rem;
  text-align: center;
  transform: translate(0px, -5%);
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block {
    margin-top: 90%;
    padding: 3.13rem 1.88rem;
    transform: translate(0px, 0%);
  }
}
@media (max-width: 479px) {
  .timeline-intro .timeline-floating-block {
    margin-top: 49.38rem;
  }
}
.timeline-intro .timeline-floating-block-wrapper {
  justify-content: flex-end;
  padding-bottom: 6%;
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block-wrapper {
    padding-bottom: 10rem;
  }
}
@media (max-width: 767px) {
  .timeline-intro .timeline-floating-block-wrapper {
    padding-bottom: 6.88rem;
  }
}
.timeline-intro .timeline-floating-block .tfb-description-block p {
  line-height: 3rem;
  padding: 4rem 0;
}
@media (max-width: 767px) {
  .timeline-intro .timeline-floating-block .tfb-description-block p {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-description-block p {
    padding: 2rem 0;
  }
}
.timeline-intro .timeline-floating-block .tfb-title-block {
  max-width: 26.25rem;
}
@media (max-width: 767px) {
  .timeline-intro .timeline-floating-block .tfb-title-block {
    max-width: 0 auto;
    margin: 0 auto;
  }
}
.timeline-intro .timeline-floating-block .tfb-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-footer {
    flex-wrap: nowrap;
    margin: 0 auto;
  }
}
.timeline-intro .timeline-floating-block .tfb-image-block {
  padding: 0 1rem;
  width: 8.75rem;
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-image-block {
    max-width: 110px;
  }
}
.timeline-intro .timeline-floating-block .tfb-author-block {
  text-align: left;
  padding: 0 1rem;
}
.timeline-intro .timeline-floating-block .tfb-author-block img {
  margin-bottom: 0.63rem;
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-author-block img {
    max-width: 8.13rem;
  }
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-author-block img {
    max-width: 70px;
  }
}
.timeline-intro .timeline-floating-block .tfb-author-name {
  font-size: 1rem;
  line-height: 1.25rem;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .timeline-intro .timeline-floating-block .tfb-author-name {
    font-size: 0.88rem;
    line-height: 1.13rem;
  }
}

.timeline-list-wrap {
  position: absolute;
  transform: translate(100px, 170px);
  z-index: 9999;
}
@media (max-width: 767px) {
  .timeline-list-wrap {
    display: none;
  }
}
@media (max-width: 991px) {
  .timeline-list-wrap {
    transform: translate(40px, 170px);
  }
}
.timeline-list-wrap.sticky {
  float: left;
  position: sticky;
  top: 0;
}
.timeline-list-wrap .timeline-list {
  list-style: none;
}
.timeline-list-wrap .timeline-list li {
  display: flex;
  align-items: center;
  padding: 2.5rem 0;
  position: relative;
}
.timeline-list-wrap .timeline-list li:after, .timeline-list-wrap .timeline-list li:before {
  background-color: #ffffff;
  width: 1px;
  height: 100%;
  position: absolute;
  content: "";
  top: 60%;
  left: 0.44rem;
}
.timeline-list-wrap .timeline-list li:before {
  bottom: 50%;
  top: initial;
  z-index: -1;
}
.timeline-list-wrap .timeline-list li:last-of-type {
  padding-bottom: 0;
}
.timeline-list-wrap .timeline-list li:last-of-type:after {
  display: none;
}
.timeline-list-wrap .timeline-list li:first-of-type {
  padding-top: 0;
}
.timeline-list-wrap .timeline-list li:first-of-type:before {
  display: none;
}
.timeline-list-wrap .timeline-list li .mark {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 0.94rem;
  height: 0.94rem;
  margin-right: 1.25rem;
  background-color: #ffffff;
  border-radius: 50%;
}
.timeline-list-wrap .timeline-list li .mark:before {
  position: absolute;
  content: "";
  background-color: #ffffff;
  height: 1.75rem;
  width: 1.75rem;
  border-radius: 50%;
  left: -6px;
  top: -6px;
  z-index: -1;
  display: none;
}
.timeline-list-wrap .timeline-list li a {
  margin-bottom: 0;
  padding-left: 2.19rem;
  color: #ffffff;
  font-size: 0;
  text-decoration: none;
}
.timeline-list-wrap .timeline-list li a .semi-title {
  font-size: 0;
  text-transform: uppercase;
}
.timeline-list-wrap .timeline-list li.active .mark {
  background-color: #8F3533;
}
.timeline-list-wrap .timeline-list li.active .mark:before {
  display: block;
}
.timeline-list-wrap .timeline-list li.active a {
  display: block;
  font-size: 0.75rem;
}

@media screen {
  html:not(.no-js) {
    /**
    * Fade animations:
    * fade
    * fade-up, fade-down, fade-left, fade-right
    * fade-up-right, fade-up-left, fade-down-right, fade-down-left
    */
    /**
    * Zoom animations:
    * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
    * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
    */
    /**
    * Slide animations
    */
    /**
    * Flip animations:
    * flip-left, flip-right, flip-up, flip-down
    */
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
  }
  html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down] {
    transform: translate3d(0, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0);
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-out] {
    transform: scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-up] {
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-aos=slide-down] {
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-left] {
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform;
  }
  html:not(.no-js) [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
}
body[data-aos-duration="50"] [data-aos], [data-aos][data-aos][data-aos-duration="50"] {
  transition-duration: 50ms;
}
body[data-aos-delay="50"] [data-aos], [data-aos][data-aos][data-aos-delay="50"] {
  transition-delay: 0s;
}
body[data-aos-delay="50"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="50"].aos-animate {
  transition-delay: 50ms;
}
body[data-aos-duration="100"] [data-aos], [data-aos][data-aos][data-aos-duration="100"] {
  transition-duration: 100ms;
}
body[data-aos-delay="100"] [data-aos], [data-aos][data-aos][data-aos-delay="100"] {
  transition-delay: 0s;
}
body[data-aos-delay="100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="100"].aos-animate {
  transition-delay: 100ms;
}
body[data-aos-duration="150"] [data-aos], [data-aos][data-aos][data-aos-duration="150"] {
  transition-duration: 150ms;
}
body[data-aos-delay="150"] [data-aos], [data-aos][data-aos][data-aos-delay="150"] {
  transition-delay: 0s;
}
body[data-aos-delay="150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="150"].aos-animate {
  transition-delay: 150ms;
}
body[data-aos-duration="200"] [data-aos], [data-aos][data-aos][data-aos-duration="200"] {
  transition-duration: 200ms;
}
body[data-aos-delay="200"] [data-aos], [data-aos][data-aos][data-aos-delay="200"] {
  transition-delay: 0s;
}
body[data-aos-delay="200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="200"].aos-animate {
  transition-delay: 200ms;
}
body[data-aos-duration="250"] [data-aos], [data-aos][data-aos][data-aos-duration="250"] {
  transition-duration: 250ms;
}
body[data-aos-delay="250"] [data-aos], [data-aos][data-aos][data-aos-delay="250"] {
  transition-delay: 0s;
}
body[data-aos-delay="250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="250"].aos-animate {
  transition-delay: 250ms;
}
body[data-aos-duration="300"] [data-aos], [data-aos][data-aos][data-aos-duration="300"] {
  transition-duration: 300ms;
}
body[data-aos-delay="300"] [data-aos], [data-aos][data-aos][data-aos-delay="300"] {
  transition-delay: 0s;
}
body[data-aos-delay="300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="300"].aos-animate {
  transition-delay: 300ms;
}
body[data-aos-duration="350"] [data-aos], [data-aos][data-aos][data-aos-duration="350"] {
  transition-duration: 350ms;
}
body[data-aos-delay="350"] [data-aos], [data-aos][data-aos][data-aos-delay="350"] {
  transition-delay: 0s;
}
body[data-aos-delay="350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="350"].aos-animate {
  transition-delay: 350ms;
}
body[data-aos-duration="400"] [data-aos], [data-aos][data-aos][data-aos-duration="400"] {
  transition-duration: 400ms;
}
body[data-aos-delay="400"] [data-aos], [data-aos][data-aos][data-aos-delay="400"] {
  transition-delay: 0s;
}
body[data-aos-delay="400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="400"].aos-animate {
  transition-delay: 400ms;
}
body[data-aos-duration="450"] [data-aos], [data-aos][data-aos][data-aos-duration="450"] {
  transition-duration: 450ms;
}
body[data-aos-delay="450"] [data-aos], [data-aos][data-aos][data-aos-delay="450"] {
  transition-delay: 0s;
}
body[data-aos-delay="450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="450"].aos-animate {
  transition-delay: 450ms;
}
body[data-aos-duration="500"] [data-aos], [data-aos][data-aos][data-aos-duration="500"] {
  transition-duration: 500ms;
}
body[data-aos-delay="500"] [data-aos], [data-aos][data-aos][data-aos-delay="500"] {
  transition-delay: 0s;
}
body[data-aos-delay="500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="500"].aos-animate {
  transition-delay: 500ms;
}
body[data-aos-duration="550"] [data-aos], [data-aos][data-aos][data-aos-duration="550"] {
  transition-duration: 550ms;
}
body[data-aos-delay="550"] [data-aos], [data-aos][data-aos][data-aos-delay="550"] {
  transition-delay: 0s;
}
body[data-aos-delay="550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="550"].aos-animate {
  transition-delay: 550ms;
}
body[data-aos-duration="600"] [data-aos], [data-aos][data-aos][data-aos-duration="600"] {
  transition-duration: 600ms;
}
body[data-aos-delay="600"] [data-aos], [data-aos][data-aos][data-aos-delay="600"] {
  transition-delay: 0s;
}
body[data-aos-delay="600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="600"].aos-animate {
  transition-delay: 600ms;
}
body[data-aos-duration="650"] [data-aos], [data-aos][data-aos][data-aos-duration="650"] {
  transition-duration: 650ms;
}
body[data-aos-delay="650"] [data-aos], [data-aos][data-aos][data-aos-delay="650"] {
  transition-delay: 0s;
}
body[data-aos-delay="650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="650"].aos-animate {
  transition-delay: 650ms;
}
body[data-aos-duration="700"] [data-aos], [data-aos][data-aos][data-aos-duration="700"] {
  transition-duration: 700ms;
}
body[data-aos-delay="700"] [data-aos], [data-aos][data-aos][data-aos-delay="700"] {
  transition-delay: 0s;
}
body[data-aos-delay="700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="700"].aos-animate {
  transition-delay: 700ms;
}
body[data-aos-duration="750"] [data-aos], [data-aos][data-aos][data-aos-duration="750"] {
  transition-duration: 750ms;
}
body[data-aos-delay="750"] [data-aos], [data-aos][data-aos][data-aos-delay="750"] {
  transition-delay: 0s;
}
body[data-aos-delay="750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="750"].aos-animate {
  transition-delay: 750ms;
}
body[data-aos-duration="800"] [data-aos], [data-aos][data-aos][data-aos-duration="800"] {
  transition-duration: 800ms;
}
body[data-aos-delay="800"] [data-aos], [data-aos][data-aos][data-aos-delay="800"] {
  transition-delay: 0s;
}
body[data-aos-delay="800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="800"].aos-animate {
  transition-delay: 800ms;
}
body[data-aos-duration="850"] [data-aos], [data-aos][data-aos][data-aos-duration="850"] {
  transition-duration: 850ms;
}
body[data-aos-delay="850"] [data-aos], [data-aos][data-aos][data-aos-delay="850"] {
  transition-delay: 0s;
}
body[data-aos-delay="850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="850"].aos-animate {
  transition-delay: 850ms;
}
body[data-aos-duration="900"] [data-aos], [data-aos][data-aos][data-aos-duration="900"] {
  transition-duration: 900ms;
}
body[data-aos-delay="900"] [data-aos], [data-aos][data-aos][data-aos-delay="900"] {
  transition-delay: 0s;
}
body[data-aos-delay="900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="900"].aos-animate {
  transition-delay: 900ms;
}
body[data-aos-duration="950"] [data-aos], [data-aos][data-aos][data-aos-duration="950"] {
  transition-duration: 950ms;
}
body[data-aos-delay="950"] [data-aos], [data-aos][data-aos][data-aos-delay="950"] {
  transition-delay: 0s;
}
body[data-aos-delay="950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="950"].aos-animate {
  transition-delay: 950ms;
}
body[data-aos-duration="1000"] [data-aos], [data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1000ms;
}
body[data-aos-delay="1000"] [data-aos], [data-aos][data-aos][data-aos-delay="1000"] {
  transition-delay: 0s;
}
body[data-aos-delay="1000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1000"].aos-animate {
  transition-delay: 1000ms;
}
body[data-aos-duration="1050"] [data-aos], [data-aos][data-aos][data-aos-duration="1050"] {
  transition-duration: 1050ms;
}
body[data-aos-delay="1050"] [data-aos], [data-aos][data-aos][data-aos-delay="1050"] {
  transition-delay: 0s;
}
body[data-aos-delay="1050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1050"].aos-animate {
  transition-delay: 1050ms;
}
body[data-aos-duration="1100"] [data-aos], [data-aos][data-aos][data-aos-duration="1100"] {
  transition-duration: 1100ms;
}
body[data-aos-delay="1100"] [data-aos], [data-aos][data-aos][data-aos-delay="1100"] {
  transition-delay: 0s;
}
body[data-aos-delay="1100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1100"].aos-animate {
  transition-delay: 1100ms;
}
body[data-aos-duration="1150"] [data-aos], [data-aos][data-aos][data-aos-duration="1150"] {
  transition-duration: 1150ms;
}
body[data-aos-delay="1150"] [data-aos], [data-aos][data-aos][data-aos-delay="1150"] {
  transition-delay: 0s;
}
body[data-aos-delay="1150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1150"].aos-animate {
  transition-delay: 1150ms;
}
body[data-aos-duration="1200"] [data-aos], [data-aos][data-aos][data-aos-duration="1200"] {
  transition-duration: 1200ms;
}
body[data-aos-delay="1200"] [data-aos], [data-aos][data-aos][data-aos-delay="1200"] {
  transition-delay: 0s;
}
body[data-aos-delay="1200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1200"].aos-animate {
  transition-delay: 1200ms;
}
body[data-aos-duration="1250"] [data-aos], [data-aos][data-aos][data-aos-duration="1250"] {
  transition-duration: 1250ms;
}
body[data-aos-delay="1250"] [data-aos], [data-aos][data-aos][data-aos-delay="1250"] {
  transition-delay: 0s;
}
body[data-aos-delay="1250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1250"].aos-animate {
  transition-delay: 1250ms;
}
body[data-aos-duration="1300"] [data-aos], [data-aos][data-aos][data-aos-duration="1300"] {
  transition-duration: 1300ms;
}
body[data-aos-delay="1300"] [data-aos], [data-aos][data-aos][data-aos-delay="1300"] {
  transition-delay: 0s;
}
body[data-aos-delay="1300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1300"].aos-animate {
  transition-delay: 1300ms;
}
body[data-aos-duration="1350"] [data-aos], [data-aos][data-aos][data-aos-duration="1350"] {
  transition-duration: 1350ms;
}
body[data-aos-delay="1350"] [data-aos], [data-aos][data-aos][data-aos-delay="1350"] {
  transition-delay: 0s;
}
body[data-aos-delay="1350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1350"].aos-animate {
  transition-delay: 1350ms;
}
body[data-aos-duration="1400"] [data-aos], [data-aos][data-aos][data-aos-duration="1400"] {
  transition-duration: 1400ms;
}
body[data-aos-delay="1400"] [data-aos], [data-aos][data-aos][data-aos-delay="1400"] {
  transition-delay: 0s;
}
body[data-aos-delay="1400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1400"].aos-animate {
  transition-delay: 1400ms;
}
body[data-aos-duration="1450"] [data-aos], [data-aos][data-aos][data-aos-duration="1450"] {
  transition-duration: 1450ms;
}
body[data-aos-delay="1450"] [data-aos], [data-aos][data-aos][data-aos-delay="1450"] {
  transition-delay: 0s;
}
body[data-aos-delay="1450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1450"].aos-animate {
  transition-delay: 1450ms;
}
body[data-aos-duration="1500"] [data-aos], [data-aos][data-aos][data-aos-duration="1500"] {
  transition-duration: 1500ms;
}
body[data-aos-delay="1500"] [data-aos], [data-aos][data-aos][data-aos-delay="1500"] {
  transition-delay: 0s;
}
body[data-aos-delay="1500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1500"].aos-animate {
  transition-delay: 1500ms;
}
body[data-aos-duration="1550"] [data-aos], [data-aos][data-aos][data-aos-duration="1550"] {
  transition-duration: 1550ms;
}
body[data-aos-delay="1550"] [data-aos], [data-aos][data-aos][data-aos-delay="1550"] {
  transition-delay: 0s;
}
body[data-aos-delay="1550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1550"].aos-animate {
  transition-delay: 1550ms;
}
body[data-aos-duration="1600"] [data-aos], [data-aos][data-aos][data-aos-duration="1600"] {
  transition-duration: 1600ms;
}
body[data-aos-delay="1600"] [data-aos], [data-aos][data-aos][data-aos-delay="1600"] {
  transition-delay: 0s;
}
body[data-aos-delay="1600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1600"].aos-animate {
  transition-delay: 1600ms;
}
body[data-aos-duration="1650"] [data-aos], [data-aos][data-aos][data-aos-duration="1650"] {
  transition-duration: 1650ms;
}
body[data-aos-delay="1650"] [data-aos], [data-aos][data-aos][data-aos-delay="1650"] {
  transition-delay: 0s;
}
body[data-aos-delay="1650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1650"].aos-animate {
  transition-delay: 1650ms;
}
body[data-aos-duration="1700"] [data-aos], [data-aos][data-aos][data-aos-duration="1700"] {
  transition-duration: 1700ms;
}
body[data-aos-delay="1700"] [data-aos], [data-aos][data-aos][data-aos-delay="1700"] {
  transition-delay: 0s;
}
body[data-aos-delay="1700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1700"].aos-animate {
  transition-delay: 1700ms;
}
body[data-aos-duration="1750"] [data-aos], [data-aos][data-aos][data-aos-duration="1750"] {
  transition-duration: 1750ms;
}
body[data-aos-delay="1750"] [data-aos], [data-aos][data-aos][data-aos-delay="1750"] {
  transition-delay: 0s;
}
body[data-aos-delay="1750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1750"].aos-animate {
  transition-delay: 1750ms;
}
body[data-aos-duration="1800"] [data-aos], [data-aos][data-aos][data-aos-duration="1800"] {
  transition-duration: 1800ms;
}
body[data-aos-delay="1800"] [data-aos], [data-aos][data-aos][data-aos-delay="1800"] {
  transition-delay: 0s;
}
body[data-aos-delay="1800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1800"].aos-animate {
  transition-delay: 1800ms;
}
body[data-aos-duration="1850"] [data-aos], [data-aos][data-aos][data-aos-duration="1850"] {
  transition-duration: 1850ms;
}
body[data-aos-delay="1850"] [data-aos], [data-aos][data-aos][data-aos-delay="1850"] {
  transition-delay: 0s;
}
body[data-aos-delay="1850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1850"].aos-animate {
  transition-delay: 1850ms;
}
body[data-aos-duration="1900"] [data-aos], [data-aos][data-aos][data-aos-duration="1900"] {
  transition-duration: 1900ms;
}
body[data-aos-delay="1900"] [data-aos], [data-aos][data-aos][data-aos-delay="1900"] {
  transition-delay: 0s;
}
body[data-aos-delay="1900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1900"].aos-animate {
  transition-delay: 1900ms;
}
body[data-aos-duration="1950"] [data-aos], [data-aos][data-aos][data-aos-duration="1950"] {
  transition-duration: 1950ms;
}
body[data-aos-delay="1950"] [data-aos], [data-aos][data-aos][data-aos-delay="1950"] {
  transition-delay: 0s;
}
body[data-aos-delay="1950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1950"].aos-animate {
  transition-delay: 1950ms;
}
body[data-aos-duration="2000"] [data-aos], [data-aos][data-aos][data-aos-duration="2000"] {
  transition-duration: 2000ms;
}
body[data-aos-delay="2000"] [data-aos], [data-aos][data-aos][data-aos-delay="2000"] {
  transition-delay: 0s;
}
body[data-aos-delay="2000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2000"].aos-animate {
  transition-delay: 2000ms;
}
body[data-aos-duration="2050"] [data-aos], [data-aos][data-aos][data-aos-duration="2050"] {
  transition-duration: 2050ms;
}
body[data-aos-delay="2050"] [data-aos], [data-aos][data-aos][data-aos-delay="2050"] {
  transition-delay: 0s;
}
body[data-aos-delay="2050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2050"].aos-animate {
  transition-delay: 2050ms;
}
body[data-aos-duration="2100"] [data-aos], [data-aos][data-aos][data-aos-duration="2100"] {
  transition-duration: 2100ms;
}
body[data-aos-delay="2100"] [data-aos], [data-aos][data-aos][data-aos-delay="2100"] {
  transition-delay: 0s;
}
body[data-aos-delay="2100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2100"].aos-animate {
  transition-delay: 2100ms;
}
body[data-aos-duration="2150"] [data-aos], [data-aos][data-aos][data-aos-duration="2150"] {
  transition-duration: 2150ms;
}
body[data-aos-delay="2150"] [data-aos], [data-aos][data-aos][data-aos-delay="2150"] {
  transition-delay: 0s;
}
body[data-aos-delay="2150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2150"].aos-animate {
  transition-delay: 2150ms;
}
body[data-aos-duration="2200"] [data-aos], [data-aos][data-aos][data-aos-duration="2200"] {
  transition-duration: 2200ms;
}
body[data-aos-delay="2200"] [data-aos], [data-aos][data-aos][data-aos-delay="2200"] {
  transition-delay: 0s;
}
body[data-aos-delay="2200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2200"].aos-animate {
  transition-delay: 2200ms;
}
body[data-aos-duration="2250"] [data-aos], [data-aos][data-aos][data-aos-duration="2250"] {
  transition-duration: 2250ms;
}
body[data-aos-delay="2250"] [data-aos], [data-aos][data-aos][data-aos-delay="2250"] {
  transition-delay: 0s;
}
body[data-aos-delay="2250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2250"].aos-animate {
  transition-delay: 2250ms;
}
body[data-aos-duration="2300"] [data-aos], [data-aos][data-aos][data-aos-duration="2300"] {
  transition-duration: 2300ms;
}
body[data-aos-delay="2300"] [data-aos], [data-aos][data-aos][data-aos-delay="2300"] {
  transition-delay: 0s;
}
body[data-aos-delay="2300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2300"].aos-animate {
  transition-delay: 2300ms;
}
body[data-aos-duration="2350"] [data-aos], [data-aos][data-aos][data-aos-duration="2350"] {
  transition-duration: 2350ms;
}
body[data-aos-delay="2350"] [data-aos], [data-aos][data-aos][data-aos-delay="2350"] {
  transition-delay: 0s;
}
body[data-aos-delay="2350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2350"].aos-animate {
  transition-delay: 2350ms;
}
body[data-aos-duration="2400"] [data-aos], [data-aos][data-aos][data-aos-duration="2400"] {
  transition-duration: 2400ms;
}
body[data-aos-delay="2400"] [data-aos], [data-aos][data-aos][data-aos-delay="2400"] {
  transition-delay: 0s;
}
body[data-aos-delay="2400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2400"].aos-animate {
  transition-delay: 2400ms;
}
body[data-aos-duration="2450"] [data-aos], [data-aos][data-aos][data-aos-duration="2450"] {
  transition-duration: 2450ms;
}
body[data-aos-delay="2450"] [data-aos], [data-aos][data-aos][data-aos-delay="2450"] {
  transition-delay: 0s;
}
body[data-aos-delay="2450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2450"].aos-animate {
  transition-delay: 2450ms;
}
body[data-aos-duration="2500"] [data-aos], [data-aos][data-aos][data-aos-duration="2500"] {
  transition-duration: 2500ms;
}
body[data-aos-delay="2500"] [data-aos], [data-aos][data-aos][data-aos-delay="2500"] {
  transition-delay: 0s;
}
body[data-aos-delay="2500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2500"].aos-animate {
  transition-delay: 2500ms;
}
body[data-aos-duration="2550"] [data-aos], [data-aos][data-aos][data-aos-duration="2550"] {
  transition-duration: 2550ms;
}
body[data-aos-delay="2550"] [data-aos], [data-aos][data-aos][data-aos-delay="2550"] {
  transition-delay: 0s;
}
body[data-aos-delay="2550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2550"].aos-animate {
  transition-delay: 2550ms;
}
body[data-aos-duration="2600"] [data-aos], [data-aos][data-aos][data-aos-duration="2600"] {
  transition-duration: 2600ms;
}
body[data-aos-delay="2600"] [data-aos], [data-aos][data-aos][data-aos-delay="2600"] {
  transition-delay: 0s;
}
body[data-aos-delay="2600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2600"].aos-animate {
  transition-delay: 2600ms;
}
body[data-aos-duration="2650"] [data-aos], [data-aos][data-aos][data-aos-duration="2650"] {
  transition-duration: 2650ms;
}
body[data-aos-delay="2650"] [data-aos], [data-aos][data-aos][data-aos-delay="2650"] {
  transition-delay: 0s;
}
body[data-aos-delay="2650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2650"].aos-animate {
  transition-delay: 2650ms;
}
body[data-aos-duration="2700"] [data-aos], [data-aos][data-aos][data-aos-duration="2700"] {
  transition-duration: 2700ms;
}
body[data-aos-delay="2700"] [data-aos], [data-aos][data-aos][data-aos-delay="2700"] {
  transition-delay: 0s;
}
body[data-aos-delay="2700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2700"].aos-animate {
  transition-delay: 2700ms;
}
body[data-aos-duration="2750"] [data-aos], [data-aos][data-aos][data-aos-duration="2750"] {
  transition-duration: 2750ms;
}
body[data-aos-delay="2750"] [data-aos], [data-aos][data-aos][data-aos-delay="2750"] {
  transition-delay: 0s;
}
body[data-aos-delay="2750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2750"].aos-animate {
  transition-delay: 2750ms;
}
body[data-aos-duration="2800"] [data-aos], [data-aos][data-aos][data-aos-duration="2800"] {
  transition-duration: 2800ms;
}
body[data-aos-delay="2800"] [data-aos], [data-aos][data-aos][data-aos-delay="2800"] {
  transition-delay: 0s;
}
body[data-aos-delay="2800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2800"].aos-animate {
  transition-delay: 2800ms;
}
body[data-aos-duration="2850"] [data-aos], [data-aos][data-aos][data-aos-duration="2850"] {
  transition-duration: 2850ms;
}
body[data-aos-delay="2850"] [data-aos], [data-aos][data-aos][data-aos-delay="2850"] {
  transition-delay: 0s;
}
body[data-aos-delay="2850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2850"].aos-animate {
  transition-delay: 2850ms;
}
body[data-aos-duration="2900"] [data-aos], [data-aos][data-aos][data-aos-duration="2900"] {
  transition-duration: 2900ms;
}
body[data-aos-delay="2900"] [data-aos], [data-aos][data-aos][data-aos-delay="2900"] {
  transition-delay: 0s;
}
body[data-aos-delay="2900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2900"].aos-animate {
  transition-delay: 2900ms;
}
body[data-aos-duration="2950"] [data-aos], [data-aos][data-aos][data-aos-duration="2950"] {
  transition-duration: 2950ms;
}
body[data-aos-delay="2950"] [data-aos], [data-aos][data-aos][data-aos-delay="2950"] {
  transition-delay: 0s;
}
body[data-aos-delay="2950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2950"].aos-animate {
  transition-delay: 2950ms;
}
body[data-aos-duration="3000"] [data-aos], [data-aos][data-aos][data-aos-duration="3000"] {
  transition-duration: 3000ms;
}
body[data-aos-delay="3000"] [data-aos], [data-aos][data-aos][data-aos-delay="3000"] {
  transition-delay: 0s;
}
body[data-aos-delay="3000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="3000"].aos-animate {
  transition-delay: 3000ms;
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

body[data-aos-easing=linear] [data-aos], [data-aos][data-aos][data-aos-easing=linear] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body[data-aos-easing=ease] [data-aos], [data-aos][data-aos][data-aos-easing=ease] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-aos-easing=ease-in] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}
body[data-aos-easing=ease-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
body[data-aos-easing=ease-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body[data-aos-easing=ease-in-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body[data-aos-easing=ease-in-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
body[data-aos-easing=ease-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
body[data-aos-easing=ease-in-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body[data-aos-easing=ease-in-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen {
  html:not(.no-js) {
    /**
    * Fade animations:
    * fade
    * fade-up, fade-down, fade-left, fade-right
    * fade-up-right, fade-up-left, fade-down-right, fade-down-left
    */
    /**
    * Zoom animations:
    * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
    * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
    */
    /**
    * Slide animations
    */
    /**
    * Flip animations:
    * flip-left, flip-right, flip-up, flip-down
    */
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=fade][data-aos^=fade].aos-animate {
    opacity: 1;
    transform: none;
  }
  html:not(.no-js) [data-aos=fade-up] {
    transform: translate3d(0, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down] {
    transform: translate3d(0, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-right] {
    transform: translate3d(-100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-left] {
    transform: translate3d(100px, 0, 0);
  }
  html:not(.no-js) [data-aos=fade-up-right] {
    transform: translate3d(-100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-up-left] {
    transform: translate3d(100px, 100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-right] {
    transform: translate3d(-100px, -100px, 0);
  }
  html:not(.no-js) [data-aos=fade-down-left] {
    transform: translate3d(100px, -100px, 0);
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom] {
    opacity: 0;
    transition-property: opacity, transform;
  }
  html:not(.no-js) [data-aos^=zoom][data-aos^=zoom].aos-animate {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  html:not(.no-js) [data-aos=zoom-in] {
    transform: scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-up] {
    transform: translate3d(0, 100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-down] {
    transform: translate3d(0, -100px, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-right] {
    transform: translate3d(-100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-in-left] {
    transform: translate3d(100px, 0, 0) scale(0.6);
  }
  html:not(.no-js) [data-aos=zoom-out] {
    transform: scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-up] {
    transform: translate3d(0, 100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-down] {
    transform: translate3d(0, -100px, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-right] {
    transform: translate3d(-100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos=zoom-out-left] {
    transform: translate3d(100px, 0, 0) scale(1.2);
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide] {
    transition-property: transform;
    visibility: hidden;
  }
  html:not(.no-js) [data-aos^=slide][data-aos^=slide].aos-animate {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-up] {
    transform: translate3d(0, 100%, 0);
  }
  html:not(.no-js) [data-aos=slide-down] {
    transform: translate3d(0, -100%, 0);
  }
  html:not(.no-js) [data-aos=slide-right] {
    transform: translate3d(-100%, 0, 0);
  }
  html:not(.no-js) [data-aos=slide-left] {
    transform: translate3d(100%, 0, 0);
  }
  html:not(.no-js) [data-aos^=flip][data-aos^=flip] {
    backface-visibility: hidden;
    transition-property: transform;
  }
  html:not(.no-js) [data-aos=flip-left] {
    transform: perspective(2500px) rotateY(-100deg);
  }
  html:not(.no-js) [data-aos=flip-left].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-right] {
    transform: perspective(2500px) rotateY(100deg);
  }
  html:not(.no-js) [data-aos=flip-right].aos-animate {
    transform: perspective(2500px) rotateY(0);
  }
  html:not(.no-js) [data-aos=flip-up] {
    transform: perspective(2500px) rotateX(-100deg);
  }
  html:not(.no-js) [data-aos=flip-up].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
  html:not(.no-js) [data-aos=flip-down] {
    transform: perspective(2500px) rotateX(100deg);
  }
  html:not(.no-js) [data-aos=flip-down].aos-animate {
    transform: perspective(2500px) rotateX(0);
  }
}
body[data-aos-duration="50"] [data-aos], [data-aos][data-aos][data-aos-duration="50"] {
  transition-duration: 50ms;
}
body[data-aos-delay="50"] [data-aos], [data-aos][data-aos][data-aos-delay="50"] {
  transition-delay: 0s;
}
body[data-aos-delay="50"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="50"].aos-animate {
  transition-delay: 50ms;
}
body[data-aos-duration="100"] [data-aos], [data-aos][data-aos][data-aos-duration="100"] {
  transition-duration: 100ms;
}
body[data-aos-delay="100"] [data-aos], [data-aos][data-aos][data-aos-delay="100"] {
  transition-delay: 0s;
}
body[data-aos-delay="100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="100"].aos-animate {
  transition-delay: 100ms;
}
body[data-aos-duration="150"] [data-aos], [data-aos][data-aos][data-aos-duration="150"] {
  transition-duration: 150ms;
}
body[data-aos-delay="150"] [data-aos], [data-aos][data-aos][data-aos-delay="150"] {
  transition-delay: 0s;
}
body[data-aos-delay="150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="150"].aos-animate {
  transition-delay: 150ms;
}
body[data-aos-duration="200"] [data-aos], [data-aos][data-aos][data-aos-duration="200"] {
  transition-duration: 200ms;
}
body[data-aos-delay="200"] [data-aos], [data-aos][data-aos][data-aos-delay="200"] {
  transition-delay: 0s;
}
body[data-aos-delay="200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="200"].aos-animate {
  transition-delay: 200ms;
}
body[data-aos-duration="250"] [data-aos], [data-aos][data-aos][data-aos-duration="250"] {
  transition-duration: 250ms;
}
body[data-aos-delay="250"] [data-aos], [data-aos][data-aos][data-aos-delay="250"] {
  transition-delay: 0s;
}
body[data-aos-delay="250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="250"].aos-animate {
  transition-delay: 250ms;
}
body[data-aos-duration="300"] [data-aos], [data-aos][data-aos][data-aos-duration="300"] {
  transition-duration: 300ms;
}
body[data-aos-delay="300"] [data-aos], [data-aos][data-aos][data-aos-delay="300"] {
  transition-delay: 0s;
}
body[data-aos-delay="300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="300"].aos-animate {
  transition-delay: 300ms;
}
body[data-aos-duration="350"] [data-aos], [data-aos][data-aos][data-aos-duration="350"] {
  transition-duration: 350ms;
}
body[data-aos-delay="350"] [data-aos], [data-aos][data-aos][data-aos-delay="350"] {
  transition-delay: 0s;
}
body[data-aos-delay="350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="350"].aos-animate {
  transition-delay: 350ms;
}
body[data-aos-duration="400"] [data-aos], [data-aos][data-aos][data-aos-duration="400"] {
  transition-duration: 400ms;
}
body[data-aos-delay="400"] [data-aos], [data-aos][data-aos][data-aos-delay="400"] {
  transition-delay: 0s;
}
body[data-aos-delay="400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="400"].aos-animate {
  transition-delay: 400ms;
}
body[data-aos-duration="450"] [data-aos], [data-aos][data-aos][data-aos-duration="450"] {
  transition-duration: 450ms;
}
body[data-aos-delay="450"] [data-aos], [data-aos][data-aos][data-aos-delay="450"] {
  transition-delay: 0s;
}
body[data-aos-delay="450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="450"].aos-animate {
  transition-delay: 450ms;
}
body[data-aos-duration="500"] [data-aos], [data-aos][data-aos][data-aos-duration="500"] {
  transition-duration: 500ms;
}
body[data-aos-delay="500"] [data-aos], [data-aos][data-aos][data-aos-delay="500"] {
  transition-delay: 0s;
}
body[data-aos-delay="500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="500"].aos-animate {
  transition-delay: 500ms;
}
body[data-aos-duration="550"] [data-aos], [data-aos][data-aos][data-aos-duration="550"] {
  transition-duration: 550ms;
}
body[data-aos-delay="550"] [data-aos], [data-aos][data-aos][data-aos-delay="550"] {
  transition-delay: 0s;
}
body[data-aos-delay="550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="550"].aos-animate {
  transition-delay: 550ms;
}
body[data-aos-duration="600"] [data-aos], [data-aos][data-aos][data-aos-duration="600"] {
  transition-duration: 600ms;
}
body[data-aos-delay="600"] [data-aos], [data-aos][data-aos][data-aos-delay="600"] {
  transition-delay: 0s;
}
body[data-aos-delay="600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="600"].aos-animate {
  transition-delay: 600ms;
}
body[data-aos-duration="650"] [data-aos], [data-aos][data-aos][data-aos-duration="650"] {
  transition-duration: 650ms;
}
body[data-aos-delay="650"] [data-aos], [data-aos][data-aos][data-aos-delay="650"] {
  transition-delay: 0s;
}
body[data-aos-delay="650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="650"].aos-animate {
  transition-delay: 650ms;
}
body[data-aos-duration="700"] [data-aos], [data-aos][data-aos][data-aos-duration="700"] {
  transition-duration: 700ms;
}
body[data-aos-delay="700"] [data-aos], [data-aos][data-aos][data-aos-delay="700"] {
  transition-delay: 0s;
}
body[data-aos-delay="700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="700"].aos-animate {
  transition-delay: 700ms;
}
body[data-aos-duration="750"] [data-aos], [data-aos][data-aos][data-aos-duration="750"] {
  transition-duration: 750ms;
}
body[data-aos-delay="750"] [data-aos], [data-aos][data-aos][data-aos-delay="750"] {
  transition-delay: 0s;
}
body[data-aos-delay="750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="750"].aos-animate {
  transition-delay: 750ms;
}
body[data-aos-duration="800"] [data-aos], [data-aos][data-aos][data-aos-duration="800"] {
  transition-duration: 800ms;
}
body[data-aos-delay="800"] [data-aos], [data-aos][data-aos][data-aos-delay="800"] {
  transition-delay: 0s;
}
body[data-aos-delay="800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="800"].aos-animate {
  transition-delay: 800ms;
}
body[data-aos-duration="850"] [data-aos], [data-aos][data-aos][data-aos-duration="850"] {
  transition-duration: 850ms;
}
body[data-aos-delay="850"] [data-aos], [data-aos][data-aos][data-aos-delay="850"] {
  transition-delay: 0s;
}
body[data-aos-delay="850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="850"].aos-animate {
  transition-delay: 850ms;
}
body[data-aos-duration="900"] [data-aos], [data-aos][data-aos][data-aos-duration="900"] {
  transition-duration: 900ms;
}
body[data-aos-delay="900"] [data-aos], [data-aos][data-aos][data-aos-delay="900"] {
  transition-delay: 0s;
}
body[data-aos-delay="900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="900"].aos-animate {
  transition-delay: 900ms;
}
body[data-aos-duration="950"] [data-aos], [data-aos][data-aos][data-aos-duration="950"] {
  transition-duration: 950ms;
}
body[data-aos-delay="950"] [data-aos], [data-aos][data-aos][data-aos-delay="950"] {
  transition-delay: 0s;
}
body[data-aos-delay="950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="950"].aos-animate {
  transition-delay: 950ms;
}
body[data-aos-duration="1000"] [data-aos], [data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1000ms;
}
body[data-aos-delay="1000"] [data-aos], [data-aos][data-aos][data-aos-delay="1000"] {
  transition-delay: 0s;
}
body[data-aos-delay="1000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1000"].aos-animate {
  transition-delay: 1000ms;
}
body[data-aos-duration="1050"] [data-aos], [data-aos][data-aos][data-aos-duration="1050"] {
  transition-duration: 1050ms;
}
body[data-aos-delay="1050"] [data-aos], [data-aos][data-aos][data-aos-delay="1050"] {
  transition-delay: 0s;
}
body[data-aos-delay="1050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1050"].aos-animate {
  transition-delay: 1050ms;
}
body[data-aos-duration="1100"] [data-aos], [data-aos][data-aos][data-aos-duration="1100"] {
  transition-duration: 1100ms;
}
body[data-aos-delay="1100"] [data-aos], [data-aos][data-aos][data-aos-delay="1100"] {
  transition-delay: 0s;
}
body[data-aos-delay="1100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1100"].aos-animate {
  transition-delay: 1100ms;
}
body[data-aos-duration="1150"] [data-aos], [data-aos][data-aos][data-aos-duration="1150"] {
  transition-duration: 1150ms;
}
body[data-aos-delay="1150"] [data-aos], [data-aos][data-aos][data-aos-delay="1150"] {
  transition-delay: 0s;
}
body[data-aos-delay="1150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1150"].aos-animate {
  transition-delay: 1150ms;
}
body[data-aos-duration="1200"] [data-aos], [data-aos][data-aos][data-aos-duration="1200"] {
  transition-duration: 1200ms;
}
body[data-aos-delay="1200"] [data-aos], [data-aos][data-aos][data-aos-delay="1200"] {
  transition-delay: 0s;
}
body[data-aos-delay="1200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1200"].aos-animate {
  transition-delay: 1200ms;
}
body[data-aos-duration="1250"] [data-aos], [data-aos][data-aos][data-aos-duration="1250"] {
  transition-duration: 1250ms;
}
body[data-aos-delay="1250"] [data-aos], [data-aos][data-aos][data-aos-delay="1250"] {
  transition-delay: 0s;
}
body[data-aos-delay="1250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1250"].aos-animate {
  transition-delay: 1250ms;
}
body[data-aos-duration="1300"] [data-aos], [data-aos][data-aos][data-aos-duration="1300"] {
  transition-duration: 1300ms;
}
body[data-aos-delay="1300"] [data-aos], [data-aos][data-aos][data-aos-delay="1300"] {
  transition-delay: 0s;
}
body[data-aos-delay="1300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1300"].aos-animate {
  transition-delay: 1300ms;
}
body[data-aos-duration="1350"] [data-aos], [data-aos][data-aos][data-aos-duration="1350"] {
  transition-duration: 1350ms;
}
body[data-aos-delay="1350"] [data-aos], [data-aos][data-aos][data-aos-delay="1350"] {
  transition-delay: 0s;
}
body[data-aos-delay="1350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1350"].aos-animate {
  transition-delay: 1350ms;
}
body[data-aos-duration="1400"] [data-aos], [data-aos][data-aos][data-aos-duration="1400"] {
  transition-duration: 1400ms;
}
body[data-aos-delay="1400"] [data-aos], [data-aos][data-aos][data-aos-delay="1400"] {
  transition-delay: 0s;
}
body[data-aos-delay="1400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1400"].aos-animate {
  transition-delay: 1400ms;
}
body[data-aos-duration="1450"] [data-aos], [data-aos][data-aos][data-aos-duration="1450"] {
  transition-duration: 1450ms;
}
body[data-aos-delay="1450"] [data-aos], [data-aos][data-aos][data-aos-delay="1450"] {
  transition-delay: 0s;
}
body[data-aos-delay="1450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1450"].aos-animate {
  transition-delay: 1450ms;
}
body[data-aos-duration="1500"] [data-aos], [data-aos][data-aos][data-aos-duration="1500"] {
  transition-duration: 1500ms;
}
body[data-aos-delay="1500"] [data-aos], [data-aos][data-aos][data-aos-delay="1500"] {
  transition-delay: 0s;
}
body[data-aos-delay="1500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1500"].aos-animate {
  transition-delay: 1500ms;
}
body[data-aos-duration="1550"] [data-aos], [data-aos][data-aos][data-aos-duration="1550"] {
  transition-duration: 1550ms;
}
body[data-aos-delay="1550"] [data-aos], [data-aos][data-aos][data-aos-delay="1550"] {
  transition-delay: 0s;
}
body[data-aos-delay="1550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1550"].aos-animate {
  transition-delay: 1550ms;
}
body[data-aos-duration="1600"] [data-aos], [data-aos][data-aos][data-aos-duration="1600"] {
  transition-duration: 1600ms;
}
body[data-aos-delay="1600"] [data-aos], [data-aos][data-aos][data-aos-delay="1600"] {
  transition-delay: 0s;
}
body[data-aos-delay="1600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1600"].aos-animate {
  transition-delay: 1600ms;
}
body[data-aos-duration="1650"] [data-aos], [data-aos][data-aos][data-aos-duration="1650"] {
  transition-duration: 1650ms;
}
body[data-aos-delay="1650"] [data-aos], [data-aos][data-aos][data-aos-delay="1650"] {
  transition-delay: 0s;
}
body[data-aos-delay="1650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1650"].aos-animate {
  transition-delay: 1650ms;
}
body[data-aos-duration="1700"] [data-aos], [data-aos][data-aos][data-aos-duration="1700"] {
  transition-duration: 1700ms;
}
body[data-aos-delay="1700"] [data-aos], [data-aos][data-aos][data-aos-delay="1700"] {
  transition-delay: 0s;
}
body[data-aos-delay="1700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1700"].aos-animate {
  transition-delay: 1700ms;
}
body[data-aos-duration="1750"] [data-aos], [data-aos][data-aos][data-aos-duration="1750"] {
  transition-duration: 1750ms;
}
body[data-aos-delay="1750"] [data-aos], [data-aos][data-aos][data-aos-delay="1750"] {
  transition-delay: 0s;
}
body[data-aos-delay="1750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1750"].aos-animate {
  transition-delay: 1750ms;
}
body[data-aos-duration="1800"] [data-aos], [data-aos][data-aos][data-aos-duration="1800"] {
  transition-duration: 1800ms;
}
body[data-aos-delay="1800"] [data-aos], [data-aos][data-aos][data-aos-delay="1800"] {
  transition-delay: 0s;
}
body[data-aos-delay="1800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1800"].aos-animate {
  transition-delay: 1800ms;
}
body[data-aos-duration="1850"] [data-aos], [data-aos][data-aos][data-aos-duration="1850"] {
  transition-duration: 1850ms;
}
body[data-aos-delay="1850"] [data-aos], [data-aos][data-aos][data-aos-delay="1850"] {
  transition-delay: 0s;
}
body[data-aos-delay="1850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1850"].aos-animate {
  transition-delay: 1850ms;
}
body[data-aos-duration="1900"] [data-aos], [data-aos][data-aos][data-aos-duration="1900"] {
  transition-duration: 1900ms;
}
body[data-aos-delay="1900"] [data-aos], [data-aos][data-aos][data-aos-delay="1900"] {
  transition-delay: 0s;
}
body[data-aos-delay="1900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1900"].aos-animate {
  transition-delay: 1900ms;
}
body[data-aos-duration="1950"] [data-aos], [data-aos][data-aos][data-aos-duration="1950"] {
  transition-duration: 1950ms;
}
body[data-aos-delay="1950"] [data-aos], [data-aos][data-aos][data-aos-delay="1950"] {
  transition-delay: 0s;
}
body[data-aos-delay="1950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1950"].aos-animate {
  transition-delay: 1950ms;
}
body[data-aos-duration="2000"] [data-aos], [data-aos][data-aos][data-aos-duration="2000"] {
  transition-duration: 2000ms;
}
body[data-aos-delay="2000"] [data-aos], [data-aos][data-aos][data-aos-delay="2000"] {
  transition-delay: 0s;
}
body[data-aos-delay="2000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2000"].aos-animate {
  transition-delay: 2000ms;
}
body[data-aos-duration="2050"] [data-aos], [data-aos][data-aos][data-aos-duration="2050"] {
  transition-duration: 2050ms;
}
body[data-aos-delay="2050"] [data-aos], [data-aos][data-aos][data-aos-delay="2050"] {
  transition-delay: 0s;
}
body[data-aos-delay="2050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2050"].aos-animate {
  transition-delay: 2050ms;
}
body[data-aos-duration="2100"] [data-aos], [data-aos][data-aos][data-aos-duration="2100"] {
  transition-duration: 2100ms;
}
body[data-aos-delay="2100"] [data-aos], [data-aos][data-aos][data-aos-delay="2100"] {
  transition-delay: 0s;
}
body[data-aos-delay="2100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2100"].aos-animate {
  transition-delay: 2100ms;
}
body[data-aos-duration="2150"] [data-aos], [data-aos][data-aos][data-aos-duration="2150"] {
  transition-duration: 2150ms;
}
body[data-aos-delay="2150"] [data-aos], [data-aos][data-aos][data-aos-delay="2150"] {
  transition-delay: 0s;
}
body[data-aos-delay="2150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2150"].aos-animate {
  transition-delay: 2150ms;
}
body[data-aos-duration="2200"] [data-aos], [data-aos][data-aos][data-aos-duration="2200"] {
  transition-duration: 2200ms;
}
body[data-aos-delay="2200"] [data-aos], [data-aos][data-aos][data-aos-delay="2200"] {
  transition-delay: 0s;
}
body[data-aos-delay="2200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2200"].aos-animate {
  transition-delay: 2200ms;
}
body[data-aos-duration="2250"] [data-aos], [data-aos][data-aos][data-aos-duration="2250"] {
  transition-duration: 2250ms;
}
body[data-aos-delay="2250"] [data-aos], [data-aos][data-aos][data-aos-delay="2250"] {
  transition-delay: 0s;
}
body[data-aos-delay="2250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2250"].aos-animate {
  transition-delay: 2250ms;
}
body[data-aos-duration="2300"] [data-aos], [data-aos][data-aos][data-aos-duration="2300"] {
  transition-duration: 2300ms;
}
body[data-aos-delay="2300"] [data-aos], [data-aos][data-aos][data-aos-delay="2300"] {
  transition-delay: 0s;
}
body[data-aos-delay="2300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2300"].aos-animate {
  transition-delay: 2300ms;
}
body[data-aos-duration="2350"] [data-aos], [data-aos][data-aos][data-aos-duration="2350"] {
  transition-duration: 2350ms;
}
body[data-aos-delay="2350"] [data-aos], [data-aos][data-aos][data-aos-delay="2350"] {
  transition-delay: 0s;
}
body[data-aos-delay="2350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2350"].aos-animate {
  transition-delay: 2350ms;
}
body[data-aos-duration="2400"] [data-aos], [data-aos][data-aos][data-aos-duration="2400"] {
  transition-duration: 2400ms;
}
body[data-aos-delay="2400"] [data-aos], [data-aos][data-aos][data-aos-delay="2400"] {
  transition-delay: 0s;
}
body[data-aos-delay="2400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2400"].aos-animate {
  transition-delay: 2400ms;
}
body[data-aos-duration="2450"] [data-aos], [data-aos][data-aos][data-aos-duration="2450"] {
  transition-duration: 2450ms;
}
body[data-aos-delay="2450"] [data-aos], [data-aos][data-aos][data-aos-delay="2450"] {
  transition-delay: 0s;
}
body[data-aos-delay="2450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2450"].aos-animate {
  transition-delay: 2450ms;
}
body[data-aos-duration="2500"] [data-aos], [data-aos][data-aos][data-aos-duration="2500"] {
  transition-duration: 2500ms;
}
body[data-aos-delay="2500"] [data-aos], [data-aos][data-aos][data-aos-delay="2500"] {
  transition-delay: 0s;
}
body[data-aos-delay="2500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2500"].aos-animate {
  transition-delay: 2500ms;
}
body[data-aos-duration="2550"] [data-aos], [data-aos][data-aos][data-aos-duration="2550"] {
  transition-duration: 2550ms;
}
body[data-aos-delay="2550"] [data-aos], [data-aos][data-aos][data-aos-delay="2550"] {
  transition-delay: 0s;
}
body[data-aos-delay="2550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2550"].aos-animate {
  transition-delay: 2550ms;
}
body[data-aos-duration="2600"] [data-aos], [data-aos][data-aos][data-aos-duration="2600"] {
  transition-duration: 2600ms;
}
body[data-aos-delay="2600"] [data-aos], [data-aos][data-aos][data-aos-delay="2600"] {
  transition-delay: 0s;
}
body[data-aos-delay="2600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2600"].aos-animate {
  transition-delay: 2600ms;
}
body[data-aos-duration="2650"] [data-aos], [data-aos][data-aos][data-aos-duration="2650"] {
  transition-duration: 2650ms;
}
body[data-aos-delay="2650"] [data-aos], [data-aos][data-aos][data-aos-delay="2650"] {
  transition-delay: 0s;
}
body[data-aos-delay="2650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2650"].aos-animate {
  transition-delay: 2650ms;
}
body[data-aos-duration="2700"] [data-aos], [data-aos][data-aos][data-aos-duration="2700"] {
  transition-duration: 2700ms;
}
body[data-aos-delay="2700"] [data-aos], [data-aos][data-aos][data-aos-delay="2700"] {
  transition-delay: 0s;
}
body[data-aos-delay="2700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2700"].aos-animate {
  transition-delay: 2700ms;
}
body[data-aos-duration="2750"] [data-aos], [data-aos][data-aos][data-aos-duration="2750"] {
  transition-duration: 2750ms;
}
body[data-aos-delay="2750"] [data-aos], [data-aos][data-aos][data-aos-delay="2750"] {
  transition-delay: 0s;
}
body[data-aos-delay="2750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2750"].aos-animate {
  transition-delay: 2750ms;
}
body[data-aos-duration="2800"] [data-aos], [data-aos][data-aos][data-aos-duration="2800"] {
  transition-duration: 2800ms;
}
body[data-aos-delay="2800"] [data-aos], [data-aos][data-aos][data-aos-delay="2800"] {
  transition-delay: 0s;
}
body[data-aos-delay="2800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2800"].aos-animate {
  transition-delay: 2800ms;
}
body[data-aos-duration="2850"] [data-aos], [data-aos][data-aos][data-aos-duration="2850"] {
  transition-duration: 2850ms;
}
body[data-aos-delay="2850"] [data-aos], [data-aos][data-aos][data-aos-delay="2850"] {
  transition-delay: 0s;
}
body[data-aos-delay="2850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2850"].aos-animate {
  transition-delay: 2850ms;
}
body[data-aos-duration="2900"] [data-aos], [data-aos][data-aos][data-aos-duration="2900"] {
  transition-duration: 2900ms;
}
body[data-aos-delay="2900"] [data-aos], [data-aos][data-aos][data-aos-delay="2900"] {
  transition-delay: 0s;
}
body[data-aos-delay="2900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2900"].aos-animate {
  transition-delay: 2900ms;
}
body[data-aos-duration="2950"] [data-aos], [data-aos][data-aos][data-aos-duration="2950"] {
  transition-duration: 2950ms;
}
body[data-aos-delay="2950"] [data-aos], [data-aos][data-aos][data-aos-delay="2950"] {
  transition-delay: 0s;
}
body[data-aos-delay="2950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2950"].aos-animate {
  transition-delay: 2950ms;
}
body[data-aos-duration="3000"] [data-aos], [data-aos][data-aos][data-aos-duration="3000"] {
  transition-duration: 3000ms;
}
body[data-aos-delay="3000"] [data-aos], [data-aos][data-aos][data-aos-delay="3000"] {
  transition-delay: 0s;
}
body[data-aos-delay="3000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="3000"].aos-animate {
  transition-delay: 3000ms;
}

[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

body[data-aos-easing=linear] [data-aos], [data-aos][data-aos][data-aos-easing=linear] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body[data-aos-easing=ease] [data-aos], [data-aos][data-aos][data-aos-easing=ease] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-aos-easing=ease-in] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in] {
  transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}
body[data-aos-easing=ease-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out] {
  transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out] {
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-back] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
body[data-aos-easing=ease-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-back] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body[data-aos-easing=ease-in-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-back] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body[data-aos-easing=ease-in-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-sine] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
body[data-aos-easing=ease-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-sine] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
body[data-aos-easing=ease-in-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-sine] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body[data-aos-easing=ease-in-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quad] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quad] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quad] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-cubic] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-cubic] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-cubic] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quart] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quart] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quart] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media (max-width: 767px) {
  .not-found-content {
    text-align: center;
  }
}

.large-heading {
  font-size: 3.75rem;
  line-height: 4.38rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  .large-heading {
    font-size: 3.25rem;
    line-height: 3.88rem;
  }
}
@media (max-width: 767px) {
  .large-heading {
    font-size: 2.75rem;
    line-height: 3.38rem;
  }
}

.large-subtitle {
  font-weight: bold;
  font-size: 1.57rem;
  line-height: 2.63rem;
  font-family: "Lato", "Arial", sans-serif;
}
@media (max-width: 767px) {
  .large-subtitle {
    font-size: 1.13rem;
    line-height: 2.19rem;
  }
}

@media (max-width: 1439px) {
  .cta-text-wrap p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cta-text-wrap p {
    font-size: 0.88rem;
  }
}
@media (max-width: 1439px) {
  .cta-wrap {
    text-align: left;
  }
}
@media (max-width: 479px) {
  .cta-wrap {
    text-align: center;
  }
}
.cta-wrap a:last-of-type {
  margin-bottom: 0;
}

.not-found .full-image-wrap {
  height: 100%;
  flex: 1;
}
.not-found .full-image-wrap figure {
  width: 100%;
  height: 100%;
}
.not-found-content .contact-links-wrapper .secondary-link {
  font-weight: bold;
  text-decoration: underline;
  color: #70940C;
  display: inline-block;
  margin-right: 0.63rem;
}
.not-found-content .contact-links-wrapper .small-primary-link {
  color: #8F3533;
  font-size: 1rem;
  line-height: 1.5rem;
  text-decoration: underline;
}

.side-navigation-tab .snt-content-table table tbody tr td, .side-navigation-tab .snt-content-table table thead tr th {
  color: #ffffff;
  font-weight: normal;
  font-size: 1.13rem;
  padding: 1.13rem 0.63rem;
}

@media (max-width: 767px) {
  .side-navigation {
    margin-bottom: 2rem;
  }
}
.side-navigation .sn-wrapper {
  margin-bottom: 0.32rem;
  color: #423718;
  display: block;
}
.side-navigation .sn-wrapper.active .sn-link {
  background-color: #70940C;
  color: #ffffff;
}
.side-navigation .sn-link {
  width: 100%;
  padding: 1rem 1.88rem;
  transition: 0.3s;
  font-size: 1.57rem;
  line-height: 2.63rem;
  font-weight: bold;
  text-transform: capitalize;
  background-color: #F7F0E3;
  display: inline-block;
}
@media (max-width: 991px) {
  .side-navigation .sn-link {
    font-size: 1.13rem;
    padding: 1rem 1.5rem;
  }
}
.side-navigation .sn-link:hover {
  background-color: #70940C;
  color: #ffffff;
}
.side-navigation-tab {
  color: #24402A;
}
@media (max-width: 767px) {
  .side-navigation-tab .snt-content-wrapper p {
    font-size: 0.88rem;
  }
}
.side-navigation-tab .snt-container {
  display: none;
}
.side-navigation-tab .snt-container.active {
  display: block;
}
.side-navigation-tab .snt-main-title {
  font-size: 1.57rem;
  line-height: 2.63rem;
  font-weight: bold;
  font-family: "Lato", "Arial", sans-serif;
}
.side-navigation-tab .snt-subtitle {
  font-family: "Lato", "Arial", sans-serif;
  font-size: 1.44rem;
  line-height: 3rem;
  margin-bottom: 1.13rem;
}
@media (max-width: 767px) {
  .side-navigation-tab .snt-subtitle {
    font-size: 1.13rem;
  }
}
.side-navigation-tab .snt-content a {
  color: #70940C;
  font-weight: bold;
}
.side-navigation-tab .snt-content-highlights {
  padding: 0.32rem 0.32rem 2.5rem 4.38rem;
  border-bottom: 3px solid #DBE3DD;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .side-navigation-tab .snt-content-highlights {
    padding-left: 0;
  }
}
.side-navigation-tab .snt-ch-box {
  border: 1px solid #70940C;
  outline: 1px solid #70940C;
  outline-offset: 0.32rem;
  padding: 2rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .side-navigation-tab .snt-ch-box {
    padding: 1.5rem;
  }
}
.side-navigation-tab .snt-content-table {
  padding-top: 1.13rem;
  padding-bottom: 1.13rem;
}
.side-navigation-tab .snt-content-table table {
  width: 100%;
}
.side-navigation-tab .snt-content-table table thead tr th {
  color: #F7F0E3;
  border: 2px solid #ffffff;
  background-color: #B8BEB9;
}
.side-navigation-tab .snt-content-table table tbody tr td {
  color: #423718;
  border: 2px solid #ffffff;
  background-color: #F7F0E3;
}
.side-navigation-tab .snt-content-table-1 table thead tr th {
  background-color: #919F69;
  font-size: 1.63rem;
}
.side-navigation-tab .snt-content-table-1 table tbody tr td {
  padding: 2rem 1.13rem;
}
.side-navigation-tab .snt-content-table-2 table thead tr th {
  background-color: #919F69;
  font-size: 1.63rem;
}
.side-navigation-tab .snt-content-table-2 table thead tr th.bush {
  background-color: #70940C;
}
.side-navigation-tab .snt-content-table-2 table thead tr th.selati {
  background-color: #CEA496;
}
.side-navigation-tab .snt-content-table-2 table thead tr th.earth {
  background-color: #0A5D7E;
}
.side-navigation-tab .snt-content-table-2 table thead tr th.little-bush {
  background-color: #24402A;
}
.side-navigation-tab .snt-content-table-2 table tbody tr td {
  padding: 1.13rem 1.13rem;
}

.multiple-slider-wrapper {
  position: relative;
}
.multiple-slider-wrapper .multiplerow-slider,
.multiple-slider-wrapper .multirow-slider--sky {
  max-width: 59.38rem;
}
@media (max-width: 1439px) {
  .multiple-slider-wrapper .multiplerow-slider,
  .multiple-slider-wrapper .multirow-slider--sky {
    max-width: 53.13rem;
  }
}
@media (max-width: 991px) {
  .multiple-slider-wrapper .multiplerow-slider,
  .multiple-slider-wrapper .multirow-slider--sky {
    max-width: 37.5rem;
  }
}
@media (max-width: 767px) {
  .multiple-slider-wrapper .multiplerow-slider,
  .multiple-slider-wrapper .multirow-slider--sky {
    max-width: 28.13rem;
  }
}
@media (max-width: 479px) {
  .multiple-slider-wrapper .multiplerow-slider,
  .multiple-slider-wrapper .multirow-slider--sky {
    max-width: 100%;
  }
}
.multiple-slider-wrapper .multiplerow-slider .swiper-wrapper,
.multiple-slider-wrapper .multirow-slider--sky .swiper-wrapper {
  padding: 4rem 0 8rem 0;
}
.multiple-slider-wrapper .multiplerow-slider .swiper-slide .inner-slide h5,
.multiple-slider-wrapper .multirow-slider--sky .swiper-slide .inner-slide h5 {
  line-height: 3rem;
  font-family: "Lato", "Arial", sans-serif;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0.94rem;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .multiple-slider-wrapper .multiplerow-slider .swiper-slide .inner-slide h5,
  .multiple-slider-wrapper .multirow-slider--sky .swiper-slide .inner-slide h5 {
    font-size: 1.13rem;
  }
}
.multiple-slider-wrapper .multiplerow-slider .swiper-slide .inner-slide:first-of-type,
.multiple-slider-wrapper .multirow-slider--sky .swiper-slide .inner-slide:first-of-type {
  margin-bottom: 2rem;
}
.multiple-slider-wrapper .multiplerow-slider.air-theme .sc-pagination,
.multiple-slider-wrapper .multirow-slider--sky.air-theme .sc-pagination {
  background-color: rgba(186, 185, 127, 0.5);
}
.multiple-slider-wrapper .swiper-next,
.multiple-slider-wrapper .swiper-prev {
  width: 6.63rem;
  height: 6.63rem;
  border-radius: 50%;
  background-color: rgba(186, 185, 127, 0.5);
  top: 40%;
  right: -5%;
}
.multiple-slider-wrapper .swiper-next:after,
.multiple-slider-wrapper .swiper-prev:after {
  display: none;
}
@media (max-width: 1439px) {
  .multiple-slider-wrapper .swiper-next,
  .multiple-slider-wrapper .swiper-prev {
    top: 40%;
    right: 0;
  }
}
.multiple-slider-wrapper .swiper-next .icon-long-arrow,
.multiple-slider-wrapper .swiper-prev .icon-long-arrow {
  display: flex;
  align-items: center;
}
.multiple-slider-wrapper .swiper-next .icon-long-arrow:before,
.multiple-slider-wrapper .swiper-prev .icon-long-arrow:before {
  color: #ffffff;
  font-size: 3rem;
}
@media (max-width: 1439px) {
  .multiple-slider-wrapper .swiper-next .icon-long-arrow:before,
  .multiple-slider-wrapper .swiper-prev .icon-long-arrow:before {
    font-size: 2rem;
  }
}
@media (max-width: 1439px) {
  .multiple-slider-wrapper .swiper-next,
  .multiple-slider-wrapper .swiper-prev {
    width: 4.07rem;
    height: 4.07rem;
  }
}
.multiple-slider-wrapper .swiper-button-prev {
  left: -5%;
  right: initial;
}
@media (max-width: 1439px) {
  .multiple-slider-wrapper .swiper-button-prev {
    left: 0;
  }
}
.multiple-slider-wrapper .swiper-button-prev .icon-long-arrow {
  transform: rotate(180deg);
}

.multirow-slider--sky {
  background-color: #FDFEFE;
}

.communities-section {
  padding-bottom: 18.75rem;
}
@media (max-width: 767px) {
  .communities-section {
    padding-bottom: 4rem;
  }
}

.cs-content-block {
  padding-right: 4rem;
  padding-left: calc(100% - 570px);
  padding-top: 2rem;
}
@media (max-width: 1439px) {
  .cs-content-block {
    padding: 2rem 4rem;
  }
}
@media (max-width: 991px) {
  .cs-content-block {
    padding: 4rem 2rem;
  }
}
.cs-content-block .semi-title {
  letter-spacing: 0.32rem;
  line-height: 1.88rem;
}
.cs-content-block h2 {
  color: #24402A;
}

.projects-centered.theme-forest .swiper-button-next, .projects-centered.theme-forest .swiper-button-prev,
.story-line.theme-forest .swiper-button-next,
.story-line.theme-forest .swiper-button-prev {
  height: 6.63rem;
  width: 6.63rem;
  display: flex;
  justify-content: center;
  top: 43%;
  right: 5%;
}
.projects-centered.theme-forest .swiper-button-next:after, .projects-centered.theme-forest .swiper-button-prev:after,
.story-line.theme-forest .swiper-button-next:after,
.story-line.theme-forest .swiper-button-prev:after {
  display: none;
}
@media (max-width: 1439px) {
  .projects-centered.theme-forest .swiper-button-next, .projects-centered.theme-forest .swiper-button-prev,
  .story-line.theme-forest .swiper-button-next,
  .story-line.theme-forest .swiper-button-prev {
    height: 5.32rem;
    width: 5.32rem;
  }
}
@media (max-width: 991px) {
  .projects-centered.theme-forest .swiper-button-next, .projects-centered.theme-forest .swiper-button-prev,
  .story-line.theme-forest .swiper-button-next,
  .story-line.theme-forest .swiper-button-prev {
    height: 2.82rem;
    width: 2.82rem;
  }
}
.projects-centered.theme-forest .swiper-button-next .icon-primary-arrow, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow,
.story-line.theme-forest .swiper-button-next .icon-primary-arrow,
.story-line.theme-forest .swiper-button-prev .icon-primary-arrow {
  padding: 1.88rem;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .projects-centered.theme-forest .swiper-button-next .icon-primary-arrow, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow,
  .story-line.theme-forest .swiper-button-next .icon-primary-arrow,
  .story-line.theme-forest .swiper-button-prev .icon-primary-arrow {
    padding: 1rem;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.projects-centered.theme-forest .swiper-button-next .icon-primary-arrow:before, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow:before,
.story-line.theme-forest .swiper-button-next .icon-primary-arrow:before,
.story-line.theme-forest .swiper-button-prev .icon-primary-arrow:before {
  font-size: 3.5rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .projects-centered.theme-forest .swiper-button-next .icon-primary-arrow:before, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow:before,
  .story-line.theme-forest .swiper-button-next .icon-primary-arrow:before,
  .story-line.theme-forest .swiper-button-prev .icon-primary-arrow:before {
    font-size: 2.25rem;
  }
}
@media (max-width: 767px) {
  .projects-centered.theme-forest .swiper-button-next .icon-primary-arrow:before, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow:before,
  .story-line.theme-forest .swiper-button-next .icon-primary-arrow:before,
  .story-line.theme-forest .swiper-button-prev .icon-primary-arrow:before {
    font-size: 1.5rem;
  }
}
.projects-centered.theme-forest .swiper-button-next .icon-primary-arrow.icon, .projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow.icon,
.story-line.theme-forest .swiper-button-next .icon-primary-arrow.icon,
.story-line.theme-forest .swiper-button-prev .icon-primary-arrow.icon {
  background-color: rgba(112, 148, 12, 0.65);
}
.projects-centered.theme-forest .swiper-button-prev,
.story-line.theme-forest .swiper-button-prev {
  left: 5%;
}
.projects-centered.theme-forest .swiper-button-prev .icon-primary-arrow,
.story-line.theme-forest .swiper-button-prev .icon-primary-arrow {
  transform: rotate(180deg);
}
.projects-centered .sst-overlay,
.story-line .sst-overlay {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.projects-centered .sst-overlay-left, .projects-centered .sst-overlay-right,
.story-line .sst-overlay-left,
.story-line .sst-overlay-right {
  display: none;
}
.projects-centered .sst-overlay-left .semi-title,
.story-line .sst-overlay-left .semi-title {
  color: #ffffff;
}
.projects-centered .sst-overlay-left .h4,
.story-line .sst-overlay-left .h4 {
  font-weight: bold;
  margin-bottom: 0;
}
.projects-centered .sst-overlay-right .btn-link,
.story-line .sst-overlay-right .btn-link {
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
}
.projects-centered .sst-overlay-right .btn-link .icon,
.story-line .sst-overlay-right .btn-link .icon {
  margin-left: 0.63rem;
}
.projects-centered .swiper-slide,
.story-line .swiper-slide {
  transform: scale(0.9);
}
.projects-centered .swiper-slide .image-wrap,
.story-line .swiper-slide .image-wrap {
  position: relative;
}
.projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay,
.story-line .swiper-slide .image-wrap .swiper-slide-title-overlay {
  position: absolute;
  content: "";
  bottom: 0;
  color: #ffffff;
  background-color: rgba(36, 64, 42, 0.75);
  left: 0;
  right: 0;
  padding: 1.25rem 2rem;
  max-height: 15.63rem;
  min-height: 6.25rem;
  overflow: auto;
}
@media (max-width: 1439px) {
  .projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay,
  .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay {
    padding: 0.94rem 1.5rem;
  }
}
@media (max-width: 991px) {
  .projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay,
  .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay {
    position: relative;
    max-height: 150px;
    padding: 0.63rem 1rem;
    background-color: #24402A;
  }
}
.projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay h4,
.story-line .swiper-slide .image-wrap .swiper-slide-title-overlay h4 {
  line-height: 2.63rem;
  margin-bottom: 0.75rem;
  display: none;
}
@media (max-width: 1439px) {
  .projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay h4,
  .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay h4 {
    font-size: 1.5rem;
    line-height: 2.13rem;
  }
}
@media (max-width: 767px) {
  .projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay h4,
  .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay h4 {
    font-size: 1.13rem;
    line-height: 1.75rem;
  }
}
.projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay p,
.story-line .swiper-slide .image-wrap .swiper-slide-title-overlay p {
  line-height: 1.63rem;
  display: none;
  position: relative;
  display: none;
}
.projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay.sst-overlay,
.story-line .swiper-slide .image-wrap .swiper-slide-title-overlay.sst-overlay {
  background-color: rgba(112, 148, 12, 0.75);
}
.projects-centered .swiper-slide-active,
.story-line .swiper-slide-active {
  transform: scale(1);
}
.projects-centered .swiper-slide-active .image-wrap .swiper-slide-title-overlay h4,
.projects-centered .swiper-slide-active .image-wrap .swiper-slide-title-overlay .h4,
.projects-centered .swiper-slide-active .image-wrap .swiper-slide-title-overlay p,
.story-line .swiper-slide-active .image-wrap .swiper-slide-title-overlay h4,
.story-line .swiper-slide-active .image-wrap .swiper-slide-title-overlay .h4,
.story-line .swiper-slide-active .image-wrap .swiper-slide-title-overlay p {
  display: block;
}
.projects-centered .swiper-slide-active .image-wrap .sst-overlay-left, .projects-centered .swiper-slide-active .image-wrap .sst-overlay-right,
.story-line .swiper-slide-active .image-wrap .sst-overlay-left,
.story-line .swiper-slide-active .image-wrap .sst-overlay-right {
  display: block;
}
.projects-centered .swiper-slide-active .swiper-slide-title-overlay h4,
.story-line .swiper-slide-active .swiper-slide-title-overlay h4 {
  font-weight: bold;
}
@media (max-width: 767px) {
  .projects-centered .swiper-slide-active .swiper-slide-title-overlay:after,
  .story-line .swiper-slide-active .swiper-slide-title-overlay:after {
    position: fixed;
    content: "";
    bottom: 0;
    left: 0;
    background-color: #24402A;
    height: 1rem;
    width: 100%;
  }
}
.projects-centered .swiper-slide-active .swiper-slide-title-overlay p,
.story-line .swiper-slide-active .swiper-slide-title-overlay p {
  line-height: 1.63rem;
  display: block;
}
@media (max-width: 1439px) {
  .projects-centered .swiper-slide-active .swiper-slide-title-overlay p,
  .story-line .swiper-slide-active .swiper-slide-title-overlay p {
    font-size: 0.94rem;
    line-height: 1.57rem;
  }
}
@media (max-width: 1439px) {
  .projects-centered .swiper-slide-active .swiper-slide-title-overlay p,
  .story-line .swiper-slide-active .swiper-slide-title-overlay p {
    font-size: 0.82rem;
    line-height: 1.38rem;
  }
}
.projects-centered .swiper-wrapper,
.story-line .swiper-wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .wdf-project-section .projects-centered .swiper-slide .image-wrap {
    height: 100%;
  }
  .wdf-project-section .projects-centered .swiper-slide .image-wrap .swiper-slide-title-overlay {
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 20px 10px 35px 20px;
  }
  .wdf-project-section .projects-centered .swiper-wrapper {
    align-items: inherit;
  }
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-prev,
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-next {
    transform: scale(1);
    height: auto;
  }
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-prev .swiper-slide-title-overlay,
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-next .swiper-slide-title-overlay {
    display: none;
  }
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-prev .aspect-ratio,
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-next .aspect-ratio {
    height: 100%;
    display: flex;
    align-items: center;
    background-color: transparent;
  }
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-prev .aspect-ratio > img,
  .wdf-project-section .projects-centered .swiper-slide.swiper-slide-next .aspect-ratio > img {
    position: static;
    height: 90%;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}

.partnerships-content .cards-row {
  justify-content: center;
}
.partnerships-content .card {
  padding: 0 0.69rem;
  margin-bottom: 2rem;
}
.partnerships-content .card-image-caption {
  font-size: 1.5rem;
  font-family: "Lato", "Arial", sans-serif;
  line-height: auto;
  text-transform: capitalize;
  text-align: center;
  margin-top: 1.5rem;
}
@media (max-width: 1439px) {
  .partnerships-content .card-image-caption {
    font-size: 1.13rem;
  }
}

.awards-carousel {
  max-width: 80%;
  /*padding: rem(64px) 0 0;*/
}

.lodges-image-grid {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}
.lodges-image-grid figure {
  height: 100%;
}
.lodges-image-grid .lig-image-block {
  width: 60%;
}
.lodges-image-grid .lig-image-block-sm {
  width: 40%;
}
@media (max-width: 1439px) {
  .lodges-image-grid .lig-image-block-sm figure {
    height: 50%;
  }
}
.lodges-image-grid .lig-image-block-full {
  width: 100%;
}
.lodges-description {
  padding: 4rem 4rem 4rem 8rem;
}
@media (max-width: 1439px) {
  .lodges-description {
    padding: 2rem 2rem 2rem 4rem;
  }
}
.lodges-description h4,
.lodges-description .h4 {
  color: #70940C;
  margin-bottom: 2rem;
}
@media (max-width: 1439px) {
  .lodges-description h4,
  .lodges-description .h4 {
    margin-bottom: 1rem;
  }
}
.lodges-description p {
  color: #24402A;
  line-height: 1.5rem;
}
@media (max-width: 1439px) {
  .lodges-description p {
    font-size: 1rem;
    line-height: 1.38rem;
  }
}
@media (max-width: 767px) {
  .lodges-description p {
    font-size: 0.88rem;
    line-height: 1.25rem;
  }
}

.features-grid .fg-wrapper {
  padding: 0 0.75rem 1.5rem;
}
.features-grid .fg-wrapper .fg-img .aspect-ratio {
  min-height: 12.5rem;
}
.features-grid .fg-description {
  padding: 2rem;
  background-color: #F7F0E3;
  color: #24402A;
}
.features-grid .fg-description .h4 {
  font-size: 2.25rem;
  font-weight: 500;
}
@media (max-width: 991px) {
  .features-grid .fg-description .h4 {
    min-height: auto !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .features-grid .fg-description .h4 {
    font-size: 1.5rem;
  }
}
.features-grid .fg-description p {
  color: #24402A;
}
@media (max-width: 767px) {
  .features-grid .fg-description p {
    font-size: 1rem;
  }
}

.only-text-block {
  margin-bottom: 0;
}
.only-text-block h5 {
  margin-bottom: 2rem;
}
.only-text-block p {
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .only-text-block p {
    font-size: 1.13rem;
    line-height: 2.38rem;
  }
}

@media (max-width: 767px) {
  .pi-title {
    font-size: 2rem;
  }
}

.sticky-sidebar {
  position: sticky;
  top: 7.5rem;
  list-style: none;
  padding-left: 0;
  margin: 0 1.25rem 0 0;
}
@media (max-width: 991px) {
  .sticky-sidebar {
    margin: 0 0 1.57rem 0;
  }
}
.sticky-sidebar li {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.32rem;
  padding: 0.63rem 1.88rem;
  font-size: 1.38rem;
  line-height: 2.63rem;
  font-weight: 600;
  color: #423718;
  text-align: center;
  text-decoration: none;
  background-color: #F7F0E3;
  cursor: pointer;
}
.sticky-sidebar li:last-child {
  padding-bottom: 0.63rem;
}
.sticky-sidebar li:hover, .sticky-sidebar li.current {
  color: #F7F0E3;
  background-color: #70940C;
}
@media (max-width: 479px) {
  .sticky-sidebar li {
    font-size: 1.13rem;
  }
}

.faq-tab-wrap {
  transition: opacity 0.6s;
  opacity: 0;
  display: none;
}
.faq-tab-wrap.current {
  opacity: 1;
  display: block;
}

.image-grid-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.image-grid-wrapper .igw-block {
  position: relative;
  padding: 0 0.63rem;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .image-grid-wrapper .igw-block {
    padding: 0 0.32rem;
    margin-bottom: 0.63rem;
  }
}
.image-grid-wrapper .igw-block-sm {
  max-width: 30%;
}
@media (max-width: 479px) {
  .image-grid-wrapper .igw-block-sm {
    max-width: 100%;
  }
}
.image-grid-wrapper .igw-block-md {
  max-width: 40%;
}
@media (max-width: 479px) {
  .image-grid-wrapper .igw-block-md {
    max-width: 100%;
  }
}
.image-grid-wrapper .igw-block-lg {
  max-width: 50%;
}
@media (max-width: 479px) {
  .image-grid-wrapper .igw-block-lg {
    max-width: 100%;
  }
}
.image-grid-wrapper .igw-block-full {
  max-width: 100%;
}
@media (max-width: 479px) {
  .image-grid-wrapper .igw-block-full {
    max-width: 100%;
  }
}
.image-grid-wrapper .igw-block img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  flex: 1;
}
.image-grid-wrapper .igw-caption {
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: #70940C;
}
@media (max-width: 767px) {
  .image-grid-wrapper .igw-caption {
    left: 0.32rem;
    right: 0.32rem;
    padding: 0.63rem 0.32rem;
  }
}

.library-inner-breadcrumb a {
  display: inline-block;
  position: relative;
  padding-left: 1.57rem;
  font-size: 1.57rem;
  color: #24402A;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
.library-inner-breadcrumb a:first-of-type {
  padding-left: 0;
  font-weight: normal;
}
.library-inner-breadcrumb a:first-of-type:before {
  display: none;
}
.library-inner-breadcrumb a:before {
  position: absolute;
  content: "/";
  left: 0.44rem;
  color: #24402A !important;
}
.library-inner-breadcrumb a:hover {
  color: #8F3533;
}

.article-share-block {
  margin-top: 1.5rem;
}

.blog-description-content {
  overflow: hidden;
}
.blog-description-content .bdc-title {
  margin-bottom: 4.69rem;
  color: #70940C;
  font-size: 2.57rem;
  line-height: 4.38rem;
}
.blog-description-content .bdc-intro-title {
  margin-bottom: 2rem;
}
.blog-description-content .bdc-intro-title .bdc-title {
  font-size: 3.25rem;
  line-height: 4.38rem;
  margin-bottom: 1.25rem;
}
.blog-description-content p {
  font-size: 1.75rem;
  line-height: 3rem;
}
@media (max-width: 767px) {
  .blog-description-content p {
    font-size: 1.13rem;
    line-height: 2.38rem;
  }
}
.blog-description-content ul {
  margin-left: 2rem;
  padding-left: 0;
}
.blog-description-content ul li {
  padding-left: 0.94rem;
  font-size: 1.63rem;
  line-height: 3rem;
}
.blog-description-content ul li::marker {
  font-size: 1.63rem;
}
@media (max-width: 767px) {
  .blog-description-content ul li::marker {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .blog-description-content ul li {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}
.blog-description-content ul:last-of-type {
  margin-bottom: 0;
}
.blog-description-content ul li {
  padding-top: 0;
  padding-bottom: 0;
}
.blog-description-content ul.bullet-list li {
  position: relative;
}
.blog-description-content ul.bullet-list li::marker {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 0.63rem;
  width: 0.63rem;
  border-radius: 50%;
  background-color: #423718;
}
.blog-description-content ul.number-list {
  list-style-type: number;
}

.blog-content-container p {
  font-size: 1.75rem;
  line-height: 3rem;
  margin-bottom: 2.38rem;
}
@media (max-width: 767px) {
  .blog-content-container p {
    font-size: 1.13rem;
    line-height: 2.38rem;
    margin-bottom: 1.75rem;
  }
}
.blog-content-container ul {
  margin-left: 2rem;
  margin-bottom: 2rem;
  padding-left: 0;
}
.blog-content-container ul li {
  padding-left: 0.94rem;
  font-size: 1.63rem;
  line-height: 3rem;
}
.blog-content-container ul li::marker {
  font-size: 1.63rem;
}
@media (max-width: 767px) {
  .blog-content-container ul li::marker {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .blog-content-container ul li {
    font-size: 1rem;
    line-height: 2.25rem;
  }
}
.blog-content-container ul:last-of-type {
  margin-bottom: 0;
}
.blog-content-container ul li {
  padding-top: 0;
  padding-bottom: 0;
}
.blog-content-container ul.bullet-list li {
  position: relative;
}
.blog-content-container ul.bullet-list li::marker {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  height: 0.63rem;
  width: 0.63rem;
  border-radius: 50%;
  background-color: #423718;
}
.blog-content-container ul.number-list {
  list-style-type: number;
}
.blog-content-container .accomodation-features .af-large-spacing {
  margin-bottom: 0rem;
}
.blog-content-container .accomodation-features .af-container-odd .af-content-image-wrap {
  padding-top: 2rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .blog-content-container .accomodation-features .af-container-odd .af-content-image-wrap {
    padding: 0;
  }
}
.blog-content-container .accomodation-features .af-container-even .af-content-image-wrap {
  padding-top: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .blog-content-container .accomodation-features .af-container-even .af-content-image-wrap {
    padding: 0;
  }
}
.blog-content-container .accomodation-features .af-container-odd .af-content-wrap {
  padding-top: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .blog-content-container .accomodation-features .af-container-odd .af-content-wrap {
    padding: 0;
  }
}
.blog-content-container .accomodation-features .af-container-odd .af-content-wrap p {
  margin-bottom: 0px;
}
.blog-content-container .accomodation-features .af-container-even .af-content-wrap {
  padding-top: 2rem;
  padding-left: 2rem;
}
@media (max-width: 767px) {
  .blog-content-container .accomodation-features .af-container-even .af-content-wrap {
    padding: 0;
  }
}
.blog-content-container .accomodation-features .af-container-even .af-content-wrap p {
  margin-bottom: 0px;
}
.blog-content-container .b-section-s1 {
  position: relative;
}
.blog-content-container .b-section-s2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.category-filters .cf-list li.filter-link:after, .category-filters .cf-title:after {
  margin-left: 0.63rem;
  content: "e";
  line-height: 2.82rem;
  font-family: "sabisabi" !important;
  opacity: 0;
  visibility: hidden;
  text-transform: initial;
}
@media (max-width: 991px) {
  .category-filters .cf-list li.filter-link:after, .category-filters .cf-title:after {
    display: none;
  }
}

.category-filters .cf-list li.filter-link:hover, .category-filters .cf-list li.filter-link.active, .category-filters .cf-title.active, .category-filters .cf-title:hover {
  color: #70940C;
  font-weight: bold;
}
.category-filters .cf-list li.filter-link:hover:after, .category-filters .cf-list li.filter-link.active:after, .category-filters .cf-title.active:after, .category-filters .cf-title:hover:after {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .category-filters {
    display: none;
    padding: 0 2rem 2rem 2rem;
  }
}
.category-filters .cf-title {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  color: #70940C;
  font-size: 1.57rem;
  line-height: 2.63rem;
  text-transform: capitalize;
  text-decoration: none;
}
@media (max-width: 767px) {
  .category-filters .cf-title {
    margin-bottom: 0rem;
  }
}
@media (max-width: 991px) {
  .category-filters .cf-title {
    margin-bottom: 0.63rem;
  }
}
.category-filters .cf-container {
  margin-bottom: 4rem;
}
@media (max-width: 991px) {
  .category-filters .cf-container {
    margin: 1.75rem 0 0 0;
  }
}
.category-filters .cf-list {
  list-style: none;
  padding-left: 1.57rem;
  overflow: auto;
}
@media (max-width: 991px) {
  .category-filters .cf-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 7.5rem;
  }
}
@media (max-width: 767px) {
  .category-filters .cf-list {
    max-height: none;
    flex-direction: initial;
  }
}
.category-filters .cf-list li.filter-link {
  display: flex;
  align-items: center;
  margin-bottom: 0.63rem;
  padding: 0;
  font-size: 1.38rem;
  color: #423718;
  line-height: 2.82rem;
  text-align: left;
  text-decoration: none;
  background-color: transparent;
  transition: 0.5s;
  cursor: pointer;
}
@media (max-width: 767px) {
  .category-filters .cf-list li.filter-link {
    align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .category-filters .cf-list li.filter-link {
    width: 50%;
    font-size: 1rem;
    line-height: 2rem;
  }
}

.mobile-filter {
  display: flex;
  margin: 0 0 1rem 0;
  padding: 1rem 1.25rem 1rem;
  border-top: 1px solid rgba(112, 148, 12, 0.2);
  border-bottom: 1px solid rgba(112, 148, 12, 0.2);
}
@media (min-width: 992px) {
  .mobile-filter {
    display: none;
  }
}
@media (max-width: 991px) {
  .mobile-filter label {
    display: inline-block;
    margin-right: 1.25rem;
    font-size: 1.13rem;
    line-height: 2.63rem;
    font-weight: 600;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .mobile-filter label {
    font-size: 1rem;
    line-height: 1.88rem;
  }
}
@media (max-width: 991px) {
  .mobile-filter span.mf-active-category {
    position: relative;
    display: flex;
    flex-basis: 60%;
    max-width: 60%;
    align-items: center;
    margin-left: auto;
    color: #70940C;
    font-size: 1.13rem;
    font-weight: bold;
    text-transform: capitalize;
  }
  .mobile-filter span.mf-active-category:after {
    content: "t";
    font-family: "sabisabi" !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    text-transform: none;
    position: absolute;
    right: 1.25rem;
    color: #24402A;
    font-family: "sabisabi" !important;
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .horizontal-filter {
    justify-content: center;
  }
}
.horizontal-filter .hf-item {
  position: relative;
  margin-right: 2.19rem;
  padding: 0 1rem 1rem;
  transition: 0.3s;
}
@media (max-width: 991px) {
  .horizontal-filter .hf-item {
    margin-right: 0;
  }
}
@media (max-width: 479px) {
  .horizontal-filter .hf-item {
    width: 50%;
    position: unset;
  }
  .horizontal-filter .hf-item a {
    justify-content: center;
  }
  .horizontal-filter .hf-item .dropdown-filter-menu {
    left: 50%;
    transform: translateX(-50%);
    margin-top: -1.25rem;
  }
}
.horizontal-filter .hf-item.dropdown-show .dropdown-filter-menu {
  display: flex;
}
@media (max-width: 767px) {
  .horizontal-filter .hf-item.dropdown-show .dropdown-filter-menu {
    padding: 0.94rem;
  }
}
.horizontal-filter .hf-item.dropdown-show .dropdown-filter-menu.date-fiters-block {
  max-height: none;
  height: auto;
}
.horizontal-filter .hf-item.dropdown-show .icon {
  transition: 0.6s;
  transform: rotate(180deg);
}
.horizontal-filter .hf-item .round-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.horizontal-filter .hf-item .round-radio input[type=radio]:checked + .round-radio-button,
.horizontal-filter .hf-item .round-radio input[type=checkbox]:checked + .round-radio-button {
  border-color: #B8BEB9;
}
.horizontal-filter .hf-item .round-radio input[type=radio]:checked + .round-radio-button:after,
.horizontal-filter .hf-item .round-radio input[type=checkbox]:checked + .round-radio-button:after {
  opacity: 1;
  visibility: visible;
  border-bottom: 0.13rem solid #24402A;
  border-right: 0.13rem solid #24402A;
}
.horizontal-filter .hf-item.enquiry-form .radio-btn-wrap {
  width: 100%;
}
.horizontal-filter .hf-item.enquiry-form .activeCategory {
  display: none;
}
.horizontal-filter .hf-item.enquiry-form.active .icon {
  display: none;
}
.horizontal-filter .hf-item.enquiry-form.active .activeCategory {
  display: flex;
  align-items: center;
  margin-left: 0.32rem;
}
.horizontal-filter .hf-item.enquiry-form.active .hf-link {
  color: rgb(143, 53, 51);
  border-radius: 3px;
  background: rgba(143, 53, 51, 0.1);
}
.horizontal-filter .hf-item .dropdown-link {
  max-width: 50%;
}
.horizontal-filter .hf-item .dropdown-filter-menu {
  position: absolute;
  content: "";
  top: 100%;
  display: none;
  flex-wrap: wrap;
  height: auto;
  min-width: 23.13rem;
  padding: 1.88rem;
  border-radius: 0.19rem;
  border: 1px solid #C4C4C4;
  box-shadow: 0.69rem 0.63rem 1.13rem 0.13rem rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  z-index: 2;
}
.horizontal-filter .hf-item .dropdown-filter-menu .dfm-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (max-width: 767px) {
  .horizontal-filter .hf-item .dropdown-filter-menu .dfm-header {
    flex-direction: column;
  }
}
.horizontal-filter .hf-item .dropdown-filter-menu .dfm-header > span {
  font-size: 0.75rem;
  color: #24402A;
  text-transform: uppercase;
}
.horizontal-filter .hf-item .dropdown-filter-menu .dfm-header .clear {
  display: inline-block;
  margin-left: auto;
  color: #8F3533;
  font-size: 0.75rem;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .horizontal-filter .hf-item .dropdown-filter-menu .dfm-header .clear {
    margin: 0.63rem 0 0 0;
  }
}
.horizontal-filter .hf-item .dropdown-filter-menu .dfm-header .clear:hover {
  color: #423718;
}
.horizontal-filter .hf-item .dropdown-filter-menu .dd-checkbox-wrap {
  max-width: 50%;
  width: 100%;
}
@media (max-width: 767px) {
  .horizontal-filter .hf-item .dropdown-filter-menu .dd-checkbox-wrap {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .horizontal-filter .hf-item .dropdown-filter-menu {
    min-width: unset;
    max-height: unset;
  }
}
.horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown {
  flex-direction: row;
  text-transform: capitalize;
  max-height: unset;
}
.horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown span {
  display: inline-block;
  margin-bottom: 1.25rem;
  padding: 0.63rem;
  color: #24402A;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 0.38rem;
  background-color: #F7F0E3;
}
.horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown a {
  display: inline-block;
  width: 100%;
  padding: 0 0 0 0.63rem;
  color: #8F3533;
  line-height: 1.88rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}
.horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown a:hover {
  color: #70940C;
}
.horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown .ld-link-wrap {
  margin-bottom: 1.25rem;
}
.horizontal-filter .hf-link {
  display: flex;
  align-items: center;
  padding: 0.63rem 1rem;
  color: #24402A;
  font-weight: bold;
  text-decoration: none;
  text-transform: capitalize;
  border-bottom: 4px solid transparent;
  cursor: pointer;
}
.horizontal-filter .hf-link .icon-arrow-down:before {
  display: flex;
}
.horizontal-filter .hf-link:hover, .horizontal-filter .hf-link.active {
  color: rgb(143, 53, 51);
  border-radius: 3px;
  background: rgba(143, 53, 51, 0.1);
}
@media (max-width: 991px) {
  .horizontal-filter .hf-link {
    padding: 0.63rem 0.5rem;
    margin: 0 0 1.25rem 0;
  }
}
@media (max-width: 991px) {
  .horizontal-filter {
    padding: 1.88rem 0 1.25rem 0;
    margin: 0 0 1.88rem 0;
  }
}
@media (max-width: 767px) {
  .horizontal-filter {
    justify-content: center;
    align-items: center;
  }
}

/*css for date filters*/
.dr-row {
  display: flex;
  gap: 0.63rem;
}
.dr-block {
  width: 100%;
}
.dr-label {
  font-size: 1rem;
}
.dr-select .selection .select2-selection__arrow b {
  border-color: #B8BEB9 transparent transparent !important;
}
.dr-select .select2-container {
  width: 100% !important;
}

/*css for tag-filters*/
@media (max-width: 1439px) {
  .tag-fiters-block {
    right: 0;
    left: auto;
  }
}
@media (max-width: 767px) {
  .tag-fiters-block {
    min-width: 13.75rem !important;
  }
}

.tags-block {
  width: 100%;
}
.tags-block .tb-searchbox {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1.88rem;
}
.tags-block .tb-searchbox:after {
  position: absolute;
  content: "A";
  right: 5%;
  color: #B8BEB9;
  font-family: "sabisabi" !important;
  font-size: 1rem;
}
.tags-block .tb-searchbox input[type=text] {
  padding-right: 1.88rem;
  width: 100%;
  max-width: 100%;
  border: 1px solid #B8BEB9;
  border-radius: 3px;
}
.tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tags-container .tag {
  padding: 0.44rem 0.32rem;
  color: #24402A;
  background-color: rgba(145, 159, 105, 0.3);
  border-radius: 0.19rem;
  cursor: pointer;
}
@media (max-width: 991px) {
  .tags-container .tag {
    font-size: 0.75rem;
  }
}
.tags-container .tag.activeTag {
  background-color: #70940C;
  color: #ffffff;
}
.tags-container .tag.activeTag .tag {
  display: flex;
  align-items: center;
}
.tags-container .tag.activeTag .tag-icon-add {
  display: none;
}
.tags-container .tag.activeTag .tag-icon-checkmark {
  display: inline-block;
  height: 0.5rem;
  width: 0.94rem;
  margin-left: 0.32rem;
  transform: rotate(-45deg) translateY(-5px);
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
}

.blogs-thumbnail .bt-breadcrumb {
  display: flex;
  flex-basis: 100%;
  padding-left: 0.63rem;
  margin-bottom: 4rem;
}
.blogs-thumbnail .bt-link {
  position: relative;
  color: #70940C;
  font-size: 1.57rem;
  line-height: 2.63rem;
  text-transform: capitalize;
  text-decoration: none;
}
.blogs-thumbnail .bt-link:not(:first-of-type) {
  padding-left: 1.25rem;
}
.blogs-thumbnail .bt-link:not(:first-of-type):before {
  position: absolute;
  content: "/";
  left: 0.32rem;
  color: #70940C;
}
.blogs-thumbnail .bt-link:last-of-type {
  font-weight: bold;
}
.blogs-thumbnail .bt-block {
  padding-left: 0.63rem;
  padding-right: 0.63rem;
  margin-bottom: 4rem;
}
.blogs-thumbnail .bt-block p {
  margin-bottom: 1.25rem;
}
.blogs-thumbnail .bt-image {
  margin-bottom: 1.25rem;
}
.blogs-thumbnail .bt-title {
  color: #70940C;
  font-size: 1.44rem;
  line-height: 2rem;
  margin-bottom: 1.25rem;
}
.blogs-thumbnail .bt-cta {
  display: flex;
  align-items: center;
  color: #70940C;
  font-size: 1.13rem;
  line-height: 1.75rem;
  text-decoration: none;
  text-transform: uppercase;
}
.blogs-thumbnail .bt-cta .icon-primary-arrow:before {
  display: flex;
  margin-left: 0.5rem;
}
.blogs-thumbnail .bt-cta:hover {
  color: #8F3533;
}
@media (max-width: 991px) {
  .blogs-grid {
    padding-top: 0;
  }
  .blogs-grid .container-1440 {
    padding: 0;
  }
}

@media (max-width: 991px) {
  .intro-bg-text {
    margin-bottom: 0;
  }
}

.gallery-masonry-section {
  padding-top: 0;
}
@media (max-width: 991px) {
  .gallery-masonry-section .horizontal-filter {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .gallery-masonry-section.gallery-library-section .horizontal-filter .hf-item {
    padding: 0 0.32rem;
    width: 33.33%;
  }
}
@media (max-width: 479px) {
  .gallery-masonry-section.gallery-library-section .horizontal-filter .hf-item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .gallery-masonry-section.gallery-library-section .horizontal-filter .hf-item .hf-link {
    margin-bottom: 0.63rem;
    padding: 0.32rem 0.63rem;
  }
}
@media (max-width: 767px) {
  .gallery-masonry-section.gallery-library-section .horizontal-filter .hf-item .dropdown-filter-menu.lodges-dropdown {
    min-width: 17.19rem;
  }
}
.gallery-masonry .gm-row {
  position: relative;
  display: flex;
}
.gallery-masonry .gm-row img {
  max-height: 31.25rem;
  padding: 0.63rem;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-row img {
    padding: 0.32rem;
  }
}
@media (max-width: 479px) {
  .gallery-masonry .gm-row img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .gallery-masonry .gm-row {
    max-height: 100%;
    flex-wrap: wrap;
  }
}
.gallery-masonry .gm-row-small {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-row-small {
    max-height: 100%;
    flex-wrap: wrap;
  }
}
.gallery-masonry .gm-row-small img {
  max-height: 23.75rem;
  height: 100%;
  padding: 0.63rem;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-row-small img {
    padding: 0.32rem;
  }
}
@media (max-width: 479px) {
  .gallery-masonry .gm-row-small img {
    width: 100%;
  }
}
.gallery-masonry .gm-column {
  max-width: 50%;
  width: 50%;
  flex-basis: 50%;
  padding: 0.63rem;
  background-color: transparent;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-column {
    max-width: 100%;
    flex-basis: 100%;
    max-height: 21.88rem;
    padding: 0.32rem;
  }
}
.gallery-masonry .gm-small-column {
  max-width: 25%;
  width: 25%;
  flex-basis: 25%;
  padding: 0.63rem;
  background-color: transparent;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-small-column {
    max-width: 50%;
    flex-basis: 50%;
    max-height: 15.63rem;
    padding: 0.32rem;
  }
}
.gallery-masonry .gm-image-wrap {
  position: relative;
}
.gallery-masonry .gm-image-wrap .caption {
  position: absolute;
  content: "";
  right: 0.63rem;
  bottom: 0.63rem;
  left: 0.63rem;
  background-color: #24402A;
  padding: 0.94rem 1.25rem;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.gallery-masonry .gm-image-wrap:hover .caption {
  opacity: 1;
  visibility: visible;
}
.gallery-masonry .gm-video-wrap {
  position: relative;
  cursor: pointer;
}
.gallery-masonry .gm-video-wrap:after {
  content: "";
  position: absolute;
  top: 0.63rem;
  right: 0.63rem;
  bottom: 0.63rem;
  left: 0.63rem;
  margin: auto;
  max-width: 7.07rem;
  max-height: 7.07rem;
  background-image: url("/application/themes/sabi_sabi/images/white-play-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  transition: 0.6s;
}
@media (max-width: 767px) {
  .gallery-masonry .gm-video-wrap:after {
    max-width: 3.75rem;
    max-height: 3.75rem;
  }
}
.gallery-masonry .gm-video-wrap:hover:after {
  opacity: 1;
}
.gallery-masonry .gallery-images {
  cursor: pointer;
}

.story-intro .si-title-block {
  padding: 4rem 1rem;
  text-align: center;
  color: #24402A;
}
.story-intro .si-floating-block {
  position: relative;
  margin: 0rem 2rem;
  display: flex;
  margin-bottom: -10%;
  z-index: 1;
}
@media (max-width: 479px) {
  .story-intro .si-floating-block {
    flex-direction: column;
  }
}
.story-intro .si-image-block {
  position: absolute;
  top: 2.38rem;
  right: 0;
  left: 0;
  bottom: 2.38rem;
}
.story-intro .si-image-block figure {
  overflow: hidden;
  height: 100%;
}
.story-intro .si-image-block figure img {
  width: 100%;
  height: 100%;
}
@media (max-width: 479px) {
  .story-intro .si-image-block {
    position: relative;
  }
  .story-intro .si-image-block figure {
    min-height: 23.13rem;
  }
}
.story-intro .si-inner-block {
  position: relative;
  right: 3.75rem;
  flex-direction: column;
  justify-content: center;
  max-width: 39.38rem;
  padding: 4.38rem 4rem;
  margin-left: auto;
  color: #F7F0E3;
  text-align: center;
  background-color: #8F3533;
  z-index: 1;
}
@media (max-width: 991px) {
  .story-intro .si-inner-block {
    max-width: 28.13rem;
    right: 1.88rem;
  }
}
@media (max-width: 767px) {
  .story-intro .si-inner-block {
    max-width: 20rem;
    right: 0.94rem;
    padding: 2.19rem 1.75rem;
  }
}
@media (max-width: 479px) {
  .story-intro .si-inner-block {
    height: 100%;
    width: 100%;
    max-width: 90%;
    right: 0;
    margin: -25% auto 0;
  }
}
.story-intro .si-inner-block p {
  margin: 0 0 4rem;
  font-size: 1.75rem;
  line-height: 3rem;
}
.story-intro .si-inner-block p:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .story-intro .si-inner-block p {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media (max-width: 767px) {
  .story-intro .si-inner-block p {
    font-size: 1rem;
    line-height: 1.63rem;
  }
}
@media (max-width: 767px) {
  .story-intro .si-inner-block p {
    font-size: 0.88rem;
    line-height: 1.38rem;
  }
}

.story-line .swiper-slide .image-wrap .swiper-slide-title-overlay {
  background-color: #70940C;
}

.story {
  padding-bottom: 9.38rem;
}
.story-timeline-slider .story-timeline {
  bottom: -7.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  overflow: visible;
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet {
  position: relative;
  margin: 0 2.07rem;
  height: 0.94rem;
  width: 0.94rem;
  left: 0 !important;
  background-color: #70940C;
  transform: scale(1);
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet {
    margin: 0 0.75rem;
  }
}
@media (max-width: 479px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet {
    margin: 0 0.5rem;
    height: 0.5rem;
    width: 0.5rem;
  }
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: 6.25rem;
  height: 0.07rem;
  background-color: #70940C;
}
@media (max-width: 991px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet:after {
    width: 2.5rem;
  }
}
@media (max-width: 479px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet:after {
    width: 1.25rem;
  }
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet .year {
  position: relative;
  display: none;
  justify-content: center;
  height: 100%;
  width: 3.13rem;
  left: -120%;
  margin-top: -3.12rem;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.13rem;
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet .year:after {
  content: "";
  position: absolute;
  left: auto;
  right: auto;
  top: 130%;
  width: 1px;
  height: 1.25rem;
  background-color: #70940C;
}
@media (max-width: 767px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet .year:after {
    display: none;
  }
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet:last-of-type .year, .story-timeline-slider .story-timeline .swiper-pagination-bullet:first-of-type .year {
  display: flex;
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet:last-of-type:after {
  display: none;
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  width: 1.63rem;
  height: 1.63rem;
  border: 6px solid #70940C;
  background-color: #ffffff;
}
.story-timeline-slider .story-timeline .swiper-pagination-bullet.swiper-pagination-bullet-active-main .year {
  display: flex;
  font-size: 1rem;
}
@media (max-width: 479px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet.swiper-pagination-bullet-active-main .year {
    font-size: 0.88rem;
  }
}

@media (max-width: 767px) {
  .story {
    padding-bottom: 7.5rem;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-button-next,
  .story .story-timeline-slider .story-line .swiper-button-prev {
    display: none;
  }
}
.story .story-timeline-slider .story-line .swiper-slide {
  height: auto;
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next {
    transform: scale(1);
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev .swiper-slide-title-overlay, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next .swiper-slide-title-overlay {
    display: none;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev .image-wrap, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next .image-wrap {
    height: 100%;
  }
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev .image-wrap .aspect-ratio, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next .image-wrap .aspect-ratio {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev .image-wrap .aspect-ratio:before, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next .image-wrap .aspect-ratio:before {
    display: none;
  }
  .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-prev .image-wrap .aspect-ratio > img, .story .story-timeline-slider .story-line .swiper-slide.swiper-slide-next .image-wrap .aspect-ratio > img {
    position: static;
    height: 90%;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay h4 {
    font-size: 2rem;
    line-height: 2.63rem;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide .image-wrap .swiper-slide-title-overlay p {
    font-size: 1.13rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide-active .swiper-slide-title-overlay {
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 20px 10px 35px 20px;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide-active .swiper-slide-title-overlay .inner-wrap {
    max-height: 290px;
    overflow: auto;
    padding-right: 10px;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-slide-active .swiper-slide-title-overlay:after {
    display: none;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-line .swiper-wrapper {
    align-items: inherit;
  }
}
@media (max-width: 767px) {
  .story .story-timeline-slider .story-timeline {
    bottom: -6.25rem;
  }
}

@media (max-width: 479px) {
  .story-timeline-slider .story-timeline .swiper-pagination-bullet:first-of-type .year {
    margin-left: -1.25rem;
  }
}

.styleContact .sc-image-caption {
  color: #4b855c;
}
.styleContact .font-secondary {
  color: #4b855c;
}
.styleContact .page-banner {
  z-index: 2;
}
.styleContact .hgroup {
  color: #4b855c;
}
.styleContact .pb-highlight-text .hgroup {
  color: #4b855c;
}
.styleContact-theme-btn {
  background-color: #70940C;
}
.styleContact .bg-1 {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .styleContact .bg-1.drinks-overview {
    background-color: transparent;
  }
}
.styleContact .bg-2 {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .styleContact .bg-2.drinks-overview {
    background-color: transparent;
  }
}
.styleContact .bg-3 {
  background-color: #DBE3DD;
}
@media (max-width: 991px) {
  .styleContact .bg-3.drinks-overview {
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .styleContact .feature-slideshow-2 .fs-navigation {
    background: #4b855c;
  }
  .styleContact .feature-slideshow-2 .fs-navigation .on-link.active, .styleContact .feature-slideshow-2 .fs-navigation .on-link:hover {
    background-color: #718375;
  }
}
.styleContact .badges-wrap.badges-style-2 .badge {
  border-color: #4b855c;
}
.styleContact .badges-wrap.badges-style-2 .badge.active,
.styleContact .badges-wrap.badges-style-2 .badge .badges-wrap.badges-style-2 .badge:hover {
  background-color: #4b855c;
  border-color: #4b855c;
}
.styleContact .badges-wrap.badges-style-2 .badge-forest {
  border-color: #4b855c;
}
.styleContact .badges-wrap.badges-style-2 .badge-forest.active,
.styleContact .badges-wrap.badges-style-2 .badge-forest .badges-wrap.badges-style-2 .badge:hover {
  background-color: #DBE3DD;
  border-color: #4b855c;
}
@media (max-width: 991px) {
  .styleContact .two-columns-grid .drinks-overview-content {
    background-color: #DBE3DD;
  }
}
.styleContact .btn-suite {
  background-color: #F7F0E3;
  color: #4b855c;
  transition: 0.3s;
}
.styleContact .btn-suite:hover {
  background-color: #4b855c;
  color: #F7F0E3;
}
.styleContact .sticky-nav {
  background-color: #4b855c;
}
@media (max-width: 991px) {
  .styleContact .sticky-menu-slider {
    background-color: #4b855c;
  }
}
.styleContact .dine-slider .ssp-carousel .sc-caption-inner {
  background-color: #4b855c;
  color: #ffffff;
}
@media (min-width: 992px) {
  .styleContact .dine-slider .ssp-carousel .sc-caption-inner {
    max-width: 26.88rem;
  }
}
.styleContact .dine-slider .ssp-carousel .sc-caption-inner .btn {
  background-color: #70940C;
}
.styleContact .dine-slider .ssp-carousel .sc-pagination {
  background-color: rgba(75, 133, 92, 0.75);
}
.styleContact .dine-slider .ssp-carousel .sc-pagination .swiper-pagination-bullet-active {
  background-color: #4b855c;
}
.styleContact .dine-slider + .bg-2 .btn {
  background-color: #70940C;
}
.styleContact .horizontal-tab-gallery .hgt-wrapper:after,
.styleContact .horizontal-tab-content .hgt-wrapper:after {
  border-top: 40px solid #4b855c;
}
.styleContact .lv-caption-small {
  background: rgba(75, 133, 92, 0.75);
}
.styleContact .horizontal-tab-gallery .hgt-link.active:after {
  border-bottom: 40px solid #ffffff;
}
.styleContact .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active {
  background-color: #718375;
}
.styleContact .horizontal-tab-gallery.hgt-inner-navigation .hgt-link.active:after {
  border-top: 30px solid #718375;
  border-bottom: none;
}
@media (max-width: 767px) {
  .styleContact-tab-content .horizontal-tab-gallery .hgt-wrapper:after,
  .styleContact-tab-content .horizontal-tab-content .hgt-wrapper:after {
    border-top: 20px solid #4b855c;
  }
}
.styleContact-tab-content .horizontal-tab-gallery .hgt-link.active,
.styleContact-tab-content .horizontal-tab-content .hgt-link.active {
  background-color: #718375;
}
.styleContact-tab-content .horizontal-tab-gallery .hgt-link.active:after,
.styleContact-tab-content .horizontal-tab-content .hgt-link.active:after {
  border-bottom: 20px solid #ffffff;
}
.styleContact .content-tile {
  background-color: #4b855c;
}
.styleContact .content-tile .btn {
  background-color: #4b855c;
}
.styleContact .lv-grid-style-2 .lv-caption-large {
  background-color: #4b855c;
}
.styleContact .centered .swiper-slide-title-overlay {
  background-color: rgba(75, 133, 92, 0.75);
}
.styleContact .centered .swiper-button-next, .styleContact .centered .swiper-rtl .swiper-button-prev, .styleContact .centered .swiper-button-prev, .styleContact .centered .swiper-rtl .swiper-button-next {
  background-color: rgba(75, 133, 92, 0.75);
}
.styleContact .highlight-message-wrap {
  border-color: #4b855c;
}
.styleContact .highlight-message-inner {
  background-color: #DBE3DD;
  border-color: #4b855c;
}
.styleContact .content-strip-wrap {
  border: 1px solid #4b855c;
  outline: 1px solid #4b855c;
}
.styleContact .content-strip-wrap h5 span {
  color: #4b855c;
}
.styleContact .hover-gallery .sc-list .hover-up .sc-overlay-text {
  background-color: #4b855c;
}
.styleContact .feature-testimonial .semi-title {
  color: #4b855c;
}
.styleContact .secondary-arrows .swiper-button-next,
.styleContact .secondary-arrows .swiper-button-prev {
  background-color: rgba(75, 133, 92, 0.75);
}
.styleContact .icon-list-item .icon {
  color: #4b855c;
}
.styleContact .lsc-note {
  border: 1px solid #4b855c;
}
.styleContact .lsc-note .semi-title {
  color: #4b855c;
}
.styleContact .lsc-note-text-wrap .icon {
  color: #4b855c;
}
.styleContact .suites {
  background-color: #DBE3DD;
}
.styleContact .green-faq .ac-wrap {
  border: 1px solid #4b855c;
}
.styleContact .green-faq .ac-group {
  border-bottom: 1px solid #4b855c;
}
.styleContact .green-faq .ac-title {
  color: #4b855c;
}
.styleContact .green-faq .ac-title:before, .styleContact .green-faq .ac-title:after {
  background-color: #4b855c;
}
.styleContact .green-faq .ac-header.open .ac-title {
  color: #4b855c;
}
.styleContact .lodge-btn {
  background-color: #70940C;
}

.style-3 .h1,
.style-3 h2 {
  color: #24402A;
}
.style-3 .quote path {
  fill: #70940C;
}

.styleContact .hgt-wrapper.bg-1 {
  background-color: #4b855c;
}
.styleContact .hgt-link.active {
  background-color: #4b855c;
}/*# sourceMappingURL=style.css.map */

