/*
  This file loads all core SCSS files from main-parts file
*/
/* ------------------------------------------------------------------------- */
/* 1. SETUP */
/* ------------------------------------------------------------------------- */
/****************************************************/
/*** COLORS *****************************************/
/****************************************************/
/****************************************************/
/*** TYPOGRAPHY *************************************/
/****************************************************/
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 1rem;
}

body {
  font-family: "termina_regular", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: #FFFDE8;
  font-size: 1rem;
  line-height: 150%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

h1, .heading-1 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 120%;
  letter-spacing: 0.532px;
}
@media only screen and (max-width: 575px) {
  h1, .heading-1 {
    font-size: 2.5rem;
  }
}

h2, .heading-2 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 3rem;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h2, .heading-2 {
    font-size: 2.25rem;
  }
}

h3, .heading-3 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h3, .heading-3 {
    font-size: 2rem;
  }
}

h4, .heading-4 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 130%;
}
@media only screen and (max-width: 575px) {
  h4, .heading-4 {
    font-size: 1.5rem;
  }
}

h5, .heading-5 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 140%;
}
@media only screen and (max-width: 575px) {
  h5, .heading-5 {
    font-size: 1.25rem;
  }
}

h6, .heading-6 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 140%;
}
@media only screen and (max-width: 575px) {
  h6, .heading-6 {
    font-size: 1.125rem;
  }
}

p, span, a {
  font-family: "termina_regular", sans-serif;
  font-size: 1rem;
  line-height: 150%;
}

p.large, span.large, a.large {
  font-family: "termina_regular", sans-serif;
  font-size: 1.25rem;
  line-height: 150%;
}

p.medium, span.medium, a.medium {
  font-family: "termina_regular", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
}

p.small, span.small, a.small {
  font-family: "termina_regular", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
}

p.tiny, span.tiny, a.tiny {
  font-family: "termina_regular", sans-serif;
  font-size: 0.75rem;
  line-height: 150%;
}

/****************************************************/
/*** BUTTONS ****************************************/
/****************************************************/
.btn,
button,
button[type=submit],
input[type=submit] {
  font-family: "termina_bold", serif;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  border: 1px solid #517352;
  background-color: #517352;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  width: fit-content;
  padding: 9px 24px 10px;
  height: 44px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
  margin: 0 5px;
}
.btn:before,
button:before,
button[type=submit]:before,
input[type=submit]:before {
  content: "";
  position: absolute;
  transition: all 0.3s ease-in-out;
  height: 30px;
  width: 4px;
  background-color: #517352;
  top: 50%;
  transform: translateY(-50%);
  left: -6px;
  border-left: 1px solid #517352;
  border-top: 1px solid #517352;
  border-bottom: 1px solid #517352;
}
.btn:after,
button:after,
button[type=submit]:after,
input[type=submit]:after {
  content: "";
  position: absolute;
  transition: all 0.3s ease-in-out;
  height: 30px;
  width: 4px;
  background-color: #517352;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  border-right: 1px solid #517352;
  border-top: 1px solid #517352;
  border-bottom: 1px solid #517352;
}
.btn:hover,
button:hover,
button[type=submit]:hover,
input[type=submit]:hover {
  background-color: #721121;
  border-color: #721121;
}
.btn:hover:before, .btn:hover:after,
button:hover:before,
button:hover:after,
button[type=submit]:hover:before,
button[type=submit]:hover:after,
input[type=submit]:hover:before,
input[type=submit]:hover:after {
  background-color: #721121;
  border-color: #721121;
}
.btn.var,
button.var,
button[type=submit].var,
input[type=submit].var {
  background-color: transparent;
  border-color: #031422;
  color: #031422;
}
.btn.var:before, .btn.var:after,
button.var:before,
button.var:after,
button[type=submit].var:before,
button[type=submit].var:after,
input[type=submit].var:before,
input[type=submit].var:after {
  background-color: transparent;
  border-color: #031422;
}
.btn.var:hover,
button.var:hover,
button[type=submit].var:hover,
input[type=submit].var:hover {
  background-color: #721121;
  border-color: #721121;
  color: #fff;
}
.btn.var:hover:before, .btn.var:hover:after,
button.var:hover:before,
button.var:hover:after,
button[type=submit].var:hover:before,
button[type=submit].var:hover:after,
input[type=submit].var:hover:before,
input[type=submit].var:hover:after {
  background-color: #721121;
  border-color: #721121;
}
.btn.light,
button.light,
button[type=submit].light,
input[type=submit].light {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
  color: #031422;
}
.btn.light:before, .btn.light:after,
button.light:before,
button.light:after,
button[type=submit].light:before,
button[type=submit].light:after,
input[type=submit].light:before,
input[type=submit].light:after {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
}
.btn.light:hover,
button.light:hover,
button[type=submit].light:hover,
input[type=submit].light:hover {
  background-color: #721121;
  border-color: #721121;
  color: #fff;
}
.btn.light:hover:before, .btn.light:hover:after,
button.light:hover:before,
button.light:hover:after,
button[type=submit].light:hover:before,
button[type=submit].light:hover:after,
input[type=submit].light:hover:before,
input[type=submit].light:hover:after {
  background-color: #721121;
  border-color: #721121;
}
.btn.light-var,
button.light-var,
button[type=submit].light-var,
input[type=submit].light-var {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn.light-var:before, .btn.light-var:after,
button.light-var:before,
button.light-var:after,
button[type=submit].light-var:before,
button[type=submit].light-var:after,
input[type=submit].light-var:before,
input[type=submit].light-var:after {
  background-color: transparent;
  border-color: #fff;
}
.btn.light-var:hover,
button.light-var:hover,
button[type=submit].light-var:hover,
input[type=submit].light-var:hover {
  background-color: #721121;
  border-color: #721121;
  color: #fff;
}
.btn.light-var:hover:before, .btn.light-var:hover:after,
button.light-var:hover:before,
button.light-var:hover:after,
button[type=submit].light-var:hover:before,
button[type=submit].light-var:hover:after,
input[type=submit].light-var:hover:before,
input[type=submit].light-var:hover:after {
  background-color: #721121;
  border-color: #721121;
}
.btn.small-btn,
button.small-btn,
button[type=submit].small-btn,
input[type=submit].small-btn {
  height: 37px;
  font-size: 0.875rem;
  padding: 7px 20px 8px;
}
@media (max-width: 768px) {
  .btn,
  button,
  button[type=submit],
  input[type=submit] {
    height: 37px;
    font-size: 0.875rem;
    padding: 7px 20px 8px;
  }
}

/* ------------------------------------------------------------------------- *
/*  WORDPRESS DEFAULTS OVERRIDES  */
/* ------------------------------------------------------------------------- */
/******** wp-admin ********/
#wpadminbar {
  top: -38px !important;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#wpadminbar .quicklinks ul {
  pointer-events: none;
}

#wpadminbar:hover {
  top: 0px !important;
  opacity: 1;
}

#wpadminbar:hover .quicklinks ul {
  pointer-events: initial;
}

@media only screen and (min-width: 992px) {
  #wpadminbar {
    top: -28px !important;
  }
}
/******** Searchforms ********/
.searchform > div {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 40px auto 0;
}

.searchform .searchbar {
  width: 100%;
}

#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.3);
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  opacity: 0;
}

#scroll-to-top.active {
  opacity: 1;
}

/******** Gallery ********/
.wp_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  margin-left: -0.8rem;
  margin-right: -0.8rem;
  padding: 0 1rem;
}

.wp_gallery > figure {
  width: 50%; /*on mobile all gallery images go to 50%*/
  padding: 0.4rem;
  height: 16vw;
}
@media only screen and (max-width: 991px) {
  .wp_gallery > figure {
    height: 20vw;
  }
}
@media only screen and (max-width: 600px) {
  .wp_gallery > figure {
    height: 30vw;
  }
}

.wp_gallery > figure > a {
  width: 100%;
  display: inline-block;
  height: 100%;
}

.wp_gallery > figure > a > img {
  object-fit: cover;
  width: 100% !important;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .wp_gallery > figure > a > img {
    height: 20vw;
  }
}
@media only screen and (max-width: 600px) {
  .wp_gallery > figure > a > img {
    height: 30vw;
  }
}

@media only screen and (min-width: 576px) {
  .wp_gallery > figure {
    padding: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .gallery-columns- > figure,
  .gallery-columns-3 > figure {
    width: 33.3333333333%;
  }
  .gallery-columns-4 > figure {
    width: 25%;
  }
  .gallery-columns-5 > figure {
    width: 20%;
  }
  /* you can add higher column divisions but does not really make sense to go any higher unless necessary */
}
@media only screen and (min-width: 992px) {
  .wp_gallery {
    margin-top: 1.4rem;
  }
}
/*************************************** */
/* UMIBASE */
/*************************************** */
* {
  box-sizing: border-box;
  margin: 0;
}

body,
html,
ul,
ol,
form,
address,
dl,
dir,
menu,
blockquote,
article,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-height: 100vh;
  transition: all 0.2s ease-in-out;
}

ol,
ul {
  overflow-wrap: normal;
  list-style-type: none;
}

.btn-holder {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .btn-holder {
    gap: 8px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 20px;
  }
}

p {
  margin-bottom: 16px;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child {
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
  margin-bottom: 0;
}

a {
  color: #031422;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/******** Youtube Embeds in WYSIWYG's ********/
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1200px;
  margin: 1rem auto;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (min-width: 992px) {
  .video-container {
    margin: 1.5rem auto;
  }
}
/******** Section Padding ********/
.p-default {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .p-default {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .p-default {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.py-default {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .py-default {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .py-default {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-new {
  padding-top: 5rem;
}
@media (max-width: 992px) {
  .p-new {
    padding-top: 4rem;
  }
}
@media (max-width: 768px) {
  .p-new {
    padding-top: 3rem;
  }
}

.p-end {
  padding-bottom: 5rem;
}
@media (max-width: 992px) {
  .p-end {
    padding-bottom: 4rem;
  }
}
@media (max-width: 768px) {
  .p-end {
    padding-bottom: 3rem;
  }
}

/*************************************** */
/*** SECTION TITLE ********************* */
/*************************************** */
.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
  text-align: center;
}
.section-title p:last-child {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .section-title p:last-child {
    margin-bottom: 8px;
  }
}

/*************************************** */
/* Plugin / Library overrides / addons */
/*************************************** */
.flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 4.5px;
  opacity: 1;
  background-color: #CCC;
}
.flickity-page-dots .dot.is-selected {
  background-color: #517352;
}

.flickity-button {
  width: 48px;
  height: 48px;
  transform: unset;
  padding: 0;
  background-image: url("../../images/arrow_left.svg");
  background-size: contain;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.flickity-button:focus {
  box-shadow: none;
}
.flickity-button:before, .flickity-button:after {
  display: none;
}
.flickity-button:hover {
  background: inherit;
  background-image: url("../../images/arrow_left.svg");
  background-size: contain;
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
}
.flickity-button svg {
  display: none;
}
.flickity-button.next {
  background-image: url("../../images/arrow_right.svg");
}

/*************************************** */
/* LOADING SPINNER */
/*************************************** */
/* LOADING SPINNER */
/*Hidden class for adding and removing*/
.ajax-loader.hidden {
  display: none;
}

/*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  opacity: 1;
  transition: all 0.5s;
}

.ajax-overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 99;
  opacity: 1;
  transition: all 0.5s;
  transform: translate(-50%, -50%);
}

/*Spinner Styles*/
.ajax-loader {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin: 130px auto;
}

.ajax-loader:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 5% auto;
  border-radius: 50%;
  border: 6px solid;
  border-color: #721121 #721121 #721121 transparent;
  animation: ajax-loader 1.2s linear infinite;
}

@keyframes ajax-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flicker {
  0%, 50% {
    opacity: 1;
  }
  50.01%, 100% {
    opacity: 0;
  }
}
/* ------------------------------------------------------------------------- *
/* 2. BASE */
/* ------------------------------------------------------------------------- */
/****************************************************/
/* HEADER */
/****************************************************/
body.menu-open {
  overflow: hidden;
}
body.menu-open header .navbar {
  background-color: #031422 !important;
}
body.menu-open header .navbar .right .book_now .btn {
  background-color: #FFFDE8 !important;
  border-color: #FFFDE8 !important;
  color: #031422 !important;
}
body.menu-open header .navbar .right .book_now .btn:before, body.menu-open header .navbar .right .book_now .btn:after {
  background-color: #FFFDE8 !important;
  border-color: #FFFDE8 !important;
}
body.menu-open header .navbar .right .book_now .btn.open-sub-menu {
  background-color: #721121 !important;
  border-color: #721121 !important;
  color: #fff !important;
}
body.menu-open header .navbar .right .book_now .btn.open-sub-menu:before {
  left: 2px;
  background-color: #721121 !important;
  border-color: #721121 !important;
}
body.menu-open header .navbar .right .book_now .btn.open-sub-menu:after {
  right: 2px;
  background-color: #721121 !important;
  border-color: #721121 !important;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  margin: auto;
  z-index: 3;
  height: 72px;
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  background-color: #031422;
  height: 100%;
  padding: 0 64px;
}
@media (max-width: 992px) {
  header .navbar {
    padding: 0 24px;
  }
}
header .navbar .left .hamburger {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
header .navbar .left .hamburger a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
}
header .navbar .left .hamburger a span {
  color: #fff;
  font-family: "termina_bold", serif;
}
@media (max-width: 650px) {
  header .navbar .left .hamburger a span {
    display: none;
  }
}
header .navbar .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 28px;
  width: 140px;
}
header .navbar .logo .main-logo {
  display: inline-block;
  height: 100%;
  width: 100%;
}
header .navbar .logo .main-logo .desktop-logo {
  height: 100%;
  width: 100%;
}
header .navbar .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  header .navbar .right {
    gap: 12px;
  }
}
header .navbar .right .login {
  height: 45px;
  padding: 12px;
}
header .navbar .right .book_now {
  position: relative;
}
header .navbar .right .book_now .btn.open-sub-menu {
  background-color: #721121 !important;
  border-color: #721121 !important;
  color: #fff !important;
}
header .navbar .right .book_now .btn.open-sub-menu:before {
  left: 2px;
  background-color: #721121 !important;
  border-color: #721121 !important;
}
header .navbar .right .book_now .btn.open-sub-menu:after {
  right: 2px;
  background-color: #721121 !important;
  border-color: #721121 !important;
}
@media (max-width: 650px) {
  header .navbar .right .book_now .btn {
    display: none;
  }
}
header .navbar .right .book_now .main_drop_down {
  position: absolute;
  min-width: 218px;
  right: 5px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  box-shadow: -10px 3px 12px rgba(0, 0, 0, 0.25);
}
@media (max-width: 650px) {
  header .navbar .right .book_now .main_drop_down {
    display: none;
  }
}
header .navbar .right .book_now .main_drop_down.open-sub-menu {
  max-height: 900px;
  transition: all 0.3s ease-in-out;
}
header .navbar .right .book_now .main_drop_down > a {
  text-align: right;
  font-family: "termina_bold", serif;
  display: flex;
  align-items: center;
  color: #031422;
  justify-content: flex-end;
  border: none;
  background-color: #FFFDE8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  width: 100%;
  height: 44px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  padding: 9px 24px 10px 12px;
  border-top: 1px solid #517352;
  transition: 0.3s all ease-in-out;
}
header .navbar .right .book_now .main_drop_down > a:first-child {
  border-top-color: #FFFDE8;
}
header .navbar .right .book_now .main_drop_down > a:hover {
  background-color: #721121;
  color: #fff;
  border-color: #721121;
}

.home header .navbar {
  box-shadow: none;
  background-color: transparent;
}
.home header .navbar .right .btn {
  background-color: #517352;
  border-color: #517352;
  color: #fff;
}
.home header .navbar .right .btn:before, .home header .navbar .right .btn:after {
  background-color: var(--btn-before-color, #517352);
  border-color: var(--btn-before-color, #517352);
}
.home header .navbar .right .btn:hover {
  background-color: #721121;
  border-color: #721121;
  color: #fff;
}
.home header .navbar .right .btn:hover:before, .home header .navbar .right .btn:hover:after {
  background-color: #721121;
  border-color: #721121;
}

#mainMenu {
  position: fixed;
  top: 0;
  left: -120%;
  z-index: 16;
  width: 100%;
  max-width: 560px;
  height: 100%;
  background-color: #FFFDE8;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
  box-shadow: -10px 3px 12px rgba(0, 0, 0, 0.25);
}
#mainMenu > .top {
  padding: 24px 24px 0;
  margin-left: auto;
}
@media (max-width: 992px) {
  #mainMenu > .top {
    padding: 12px 20px 12px;
  }
}
#mainMenu > .top .close {
  border: none;
  background-color: transparent;
  background-image: url("../../images/cross.svg");
  display: block;
  padding: 12px 15px;
  height: 48px;
  width: 48px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
}
#mainMenu > .top .close:before, #mainMenu > .top .close:after {
  display: none;
}
#mainMenu .slide-in-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
#mainMenu .slide-in-menu > .top {
  margin-top: 8px;
  padding: 0 64px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu > .top {
    padding: 0 52px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  #mainMenu .slide-in-menu > .top {
    padding: 0 24px;
  }
}
#mainMenu .slide-in-menu > .top .slide_logo {
  width: 110px;
}
#mainMenu .slide-in-menu > .top .slide_logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#mainMenu .slide-in-menu .menu-contain {
  padding: 32px 64px 40px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .menu-contain {
    padding: 24px 52px 40px;
  }
}
@media (max-width: 768px) {
  #mainMenu .slide-in-menu .menu-contain {
    padding: 16px 20px 24px;
  }
}
#mainMenu .slide-in-menu .menu-contain > ul {
  padding-right: 21px;
}
#mainMenu .slide-in-menu .menu-contain > ul > li {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #517352;
}
#mainMenu .slide-in-menu .menu-contain > ul > li a {
  display: inline-block;
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 140%;
  padding-bottom: 6px;
}
#mainMenu .slide-in-menu .menu-contain > ul > li a i {
  display: none;
}
@media only screen and (max-width: 768px) {
  #mainMenu .slide-in-menu .menu-contain > ul > li a {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 575px) {
  #mainMenu .slide-in-menu .menu-contain > ul > li a {
    font-size: 1.125rem;
  }
}
#mainMenu .slide-in-menu .menu-contain > ul > li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}
#mainMenu .slide-in-menu .menu-contain > ul > li:last-child > a {
  padding-bottom: 0px;
}
#mainMenu .slide-in-menu .menu-contain > ul > li.menu-item-has-children > a {
  position: relative;
}
#mainMenu .slide-in-menu .menu-contain > ul > li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: -46px;
  top: 50%;
  transform: translateY(-56%);
  height: 30px;
  width: 30px;
  background-image: url("../../images/chev_down_blk.svg");
  background-repeat: no-repeat;
  background-position: center;
}
#mainMenu .slide-in-menu .menu-contain > ul > li.menu-item-has-children > a.open-sub-menu:after {
  transform: translateY(-56%) scaleY(-1);
}
#mainMenu .slide-in-menu .menu-contain > ul > li > .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: none;
}
#mainMenu .slide-in-menu .menu-contain > ul > li > .sub-menu li a {
  font-family: "termina_regular", sans-serif;
  font-size: 1.25rem;
  line-height: 150%;
  font-weight: 500;
  padding-bottom: 0;
  padding-top: 8px;
}
@media (max-width: 768px) {
  #mainMenu .slide-in-menu .menu-contain > ul > li > .sub-menu li a {
    font-size: 1rem;
  }
}
#mainMenu .slide-in-menu .menu-contain > ul > li > .sub-menu.open-sub-menu {
  max-height: 1000px;
  transition: all 0.3s ease;
}
#mainMenu .slide-in-menu .contact-details {
  padding: 0px 64px 80px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .contact-details {
    padding: 0px 52px 64px;
  }
}
@media (max-width: 768px) {
  #mainMenu .slide-in-menu .contact-details {
    padding: 0px 20px 40px;
  }
}
#mainMenu .slide-in-menu .contact-details address p span {
  font-family: "termina_regular", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
}
#mainMenu .slide-in-menu .contact-details .telephone, #mainMenu .slide-in-menu .contact-details .email {
  display: inline-block;
}
#mainMenu .slide-in-menu .contact-details .telephone {
  padding: 4px 0;
}
#mainMenu .slide-in-menu .contact-details .socials {
  margin-top: 24px;
  justify-content: flex-start;
}
#mainMenu.slide-in {
  left: 0 !important;
}

.book_now_mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
.book_now_mobile .btn {
  width: 100%;
  margin: 0;
  height: 44px;
  position: relative;
}
.book_now_mobile .btn:before, .book_now_mobile .btn:after {
  display: none;
}
.book_now_mobile .btn.open-sub-menu {
  background-color: #721121;
  border-color: #721121;
  color: #fff;
}
.book_now_mobile .main_drop_down {
  position: absolute;
  bottom: 44px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.book_now_mobile .main_drop_down.open-sub-menu {
  max-height: 900px;
  transition: all 0.3s ease-in-out;
}
.book_now_mobile .main_drop_down > a {
  text-align: right;
  font-family: "termina_bold", serif;
  display: flex;
  align-items: center;
  color: #031422;
  justify-content: center;
  border: none;
  background-color: #FFFDE8;
  font-size: 1rem;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  width: 100%;
  height: 44px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
  padding: 9px 12px 10px 12px;
  border-top: 1px solid #517352;
}
.book_now_mobile .main_drop_down > a:first-child {
  border-top-color: #FFFDE8;
}
@media (max-width: 650px) {
  .book_now_mobile {
    display: block;
  }
}

#login {
  position: fixed;
  height: 100vh;
  width: 100%;
  z-index: 10;
  background-color: rgba(3, 20, 34, 0.4);
  top: -120%;
}
#login > div {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 20px;
}
#login > div .card {
  background-color: #FFFDE8;
  padding: 48px;
  width: 480px;
  position: relative;
}
@media (max-width: 575px) {
  #login > div .card {
    padding: 32px 24px;
  }
}
#login > div .card .close {
  position: absolute;
  right: 16px;
  top: 16px;
  border: none;
  background-color: transparent;
  background-image: url("../../images/cross.svg");
  display: block;
  padding: 12px 15px;
  height: 48px;
  width: 48px;
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0;
}
#login > div .card .close:before, #login > div .card .close:after {
  display: none;
}
#login > div .card p {
  text-align: center;
}
@media (max-width: 575px) {
  #login > div .card p {
    font-size: 14px;
  }
}
#login > div .card a {
  text-decoration: underline;
}
@media (max-width: 575px) {
  #login > div .card a {
    font-size: 14px;
  }
}
#login > div .card .coat_of_arms {
  text-align: center;
  width: 110px;
  margin: 0 auto 24px;
}
@media (max-width: 575px) {
  #login > div .card .coat_of_arms {
    width: 70px;
    margin: 0 auto 16px;
  }
}
#login > div .card .coat_of_arms img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#login > div .card h4 {
  text-align: center;
  margin-bottom: 24px;
}
#login > div .card #input_1, #login > div .card #input_2 {
  width: 100%;
}
#login > div .card label {
  margin: 8px 0;
  display: inline-block;
}
#login > div .card label .gfield_required {
  color: #721121;
  padding-left: 4px;
  font-size: 0.9rem;
}
#login > div .card .gfield-choice-input {
  height: unset;
}
#login > div .card .gform_footer {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding-bottom: 16px;
}
#login > div .card .gf_login_links {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #000;
}
#login.menu-open {
  top: 0%;
}

/* ------------------------------------------------------------------------- *
/* FOOTER */
/* ------------------------------------------------------------------------- */
@media (max-width: 650px) {
  footer {
    margin-bottom: 44px;
  }
}
footer * {
  color: #fff;
}
footer > div {
  background-color: #031422;
  padding: 48px 64px 80px;
}
@media (max-width: 1200px) {
  footer > div {
    padding: 32px 48px 64px;
  }
}
@media (max-width: 575px) {
  footer > div {
    padding: 24px 20px 48px;
  }
}
footer > div .top {
  display: flex;
  gap: 80px;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 1200px) {
  footer > div .top {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  footer > div .top {
    flex-direction: column-reverse;
  }
}
footer > div .top .left {
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  footer > div .top .left {
    width: 100%;
  }
}
footer > div .top .left .footer_logo {
  width: 200px;
}
footer > div .top .left .footer_logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
footer > div .top .left .cols {
  display: flex;
  gap: 40px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  footer > div .top .left .cols {
    gap: 24px;
  }
}
footer > div .top .left .cols > div {
  flex: 1;
}
footer > div .top .left .cols > div .col_title {
  font-family: "termina_bold", serif;
  font-weight: 700;
}
footer > div .top .left .cols > div address {
  padding: 8px 0;
}
footer > div .top .left .cols > div address p span {
  font-family: "termina_regular", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
}
footer > div .top .left .cols > div .telephone, footer > div .top .left .cols > div .email {
  padding: 8px 0;
  display: inline-block;
}
footer > div .top .left .cols > div .nav li a {
  font-size: 0.875rem;
  padding: 8px 0;
  display: inline-block;
}
footer > div .top .left .cols > div .socials {
  margin-top: 16px;
  justify-content: flex-start;
}
footer > div .top .left .cols .contact {
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  footer > div .top .left .cols .contact {
    width: 100%;
  }
}
footer > div .top .left .cols .contact .logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 32px;
}
footer > div .top .left .cols .contact .logos a, footer > div .top .left .cols .contact .logos div {
  display: inline-block;
  width: 150px;
}
footer > div .top .left .cols .contact .logos a img, footer > div .top .left .cols .contact .logos div img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
footer > div .top .right {
  width: 30%;
}
@media (max-width: 992px) {
  footer > div .top .right {
    width: 100%;
  }
}
footer > div .top .right .newsletter {
  border: 1px solid #fff;
  padding: 24px;
}
footer > div .top .right .newsletter p.medium {
  font-family: "termina_bold", serif;
  font-weight: 700;
}
footer > div .top .right .newsletter button {
  width: 100% !important;
  margin-bottom: 16px !important;
}
footer > div .top .right .newsletter a {
  text-decoration: underline;
}
footer > div .top .right .newsletter .gform_wrapper .gform_footer {
  margin-top: 16px;
}
footer > div .bottom {
  margin-top: 64px;
}
@media (max-width: 992px) {
  footer > div .bottom {
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  footer > div .bottom {
    margin-top: 24px;
  }
}
footer > div .bottom p {
  text-align: center;
}

/* ------------------------------------------------------------------------- *
/* 3. INCLUDES */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* SINGLE PAGINATION */
/* ------------------------------------------------------------------------- */
.pagination > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1120px;
  margin: auto;
}
.pagination > div > div {
  flex: 1;
  margin: 0 16px;
  align-items: center;
}
@media only screen and (max-width: 575px) {
  .pagination > div > div {
    margin: 0 8px;
  }
}
.pagination > div > div img {
  margin-right: 24px;
}
@media only screen and (max-width: 575px) {
  .pagination > div > div img {
    margin-right: 8px;
  }
}
@media only screen and (max-width: 768px) {
  .pagination > div > div h2 {
    font-size: 48px;
  }
}
.pagination > div > div h2:hover {
  color: #031422;
}
@media only screen and (max-width: 575px) {
  .pagination > div > div h2 span {
    display: none;
  }
}
.pagination > div .previous.empty {
  background-color: unset;
  border: none;
}
.pagination > div .next {
  justify-content: flex-end;
}
.pagination > div .next img {
  transform: rotate(180deg);
  margin-bottom: 5px;
  margin-right: 0px;
  margin-left: 24px;
}
@media only screen and (max-width: 575px) {
  .pagination > div .next img {
    margin-right: 0px;
    margin-left: 8px;
  }
}
.pagination > div .next .content {
  text-align: right;
}
.pagination > div .next.empty {
  background-color: unset;
  border: none;
}

/* ------------------------------------------------------------------------- */
/* SOCIALS */
/* ------------------------------------------------------------------------- */
.socials {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.socials li a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
  transition: all 0.3s ease-in-out;
  background-size: cover;
}

.book_bar {
  background-color: #031422;
  position: relative;
}
.book_bar > div {
  max-width: 1304px;
  margin: auto;
  padding: 16px 52px;
}
@media (max-width: 992px) {
  .book_bar > div {
    padding: 40px 52px;
  }
}
@media (max-width: 768px) {
  .book_bar > div {
    padding: 40px 20px;
  }
}
.book_bar > div form {
  display: flex;
  align-items: center;
}
@media (max-width: 1150px) {
  .book_bar > div form {
    flex-direction: column;
    gap: 16px;
  }
}
.book_bar > div form > * {
  color: #fff;
}
.book_bar > div form .form-group {
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  flex: 1;
}
@media (max-width: 1150px) {
  .book_bar > div form .form-group {
    width: 100%;
    padding: 0;
  }
}
.book_bar > div form .form-group:first-child {
  padding-left: 0;
}
.book_bar > div form .form-group label {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.book_bar > div form .form-group input {
  height: 24px;
  border: none;
  border-bottom: 1px solid #AAA;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  font-family: "termina_regular", sans-serif;
  cursor: pointer;
  font-size: 1rem;
}
.book_bar > div form .form-group input::placeholder {
  color: #fff;
}
.book_bar > div form .form-group input:focus-visible {
  outline: none;
  border-radius: 0px;
  border-bottom: 1px solid #721121;
}
.book_bar > div form .form-group {
  /* Custom Dropdown Styling */
}
.book_bar > div form .form-group .custom-dropdown {
  height: 24px;
  padding: 0 0 8px;
  border: none;
  border-bottom: 1px solid #AAA;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  color: #fff;
  font-family: "termina_regular", sans-serif;
  cursor: pointer;
  position: relative;
  font-size: 1rem;
}
.book_bar > div form .form-group .custom-dropdown .dropdown-selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 8px;
}
.book_bar > div form .form-group .custom-dropdown .dropdown-options {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  background-color: #FFFDE8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  z-index: 3;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
.book_bar > div form .form-group .custom-dropdown .dropdown-options .dropdown-item {
  cursor: pointer;
  font-family: "termina_bold", serif;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  color: #031422;
  justify-content: center;
  border: none;
  font-weight: 700;
  line-height: 100%;
  width: 100%;
  height: 42px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  padding: 9px 16px 10px;
  border-bottom: 1px solid #517352;
}
.book_bar > div form .form-group .custom-dropdown .dropdown-options .dropdown-item:last-child {
  border: none;
}
.book_bar > div form .form-group .custom-dropdown .dropdown-options .dropdown-item:hover {
  background-color: #517352;
  color: #fff;
}
.book_bar > div form .form-group .custom-dropdown .dropdown-options.open {
  max-height: 200px;
}
@media (max-width: 1150px) {
  .book_bar > div form button[type=submit] {
    margin-top: 16px;
  }
}
@media (max-width: 768px) {
  .book_bar > div form button[type=submit] {
    max-width: unset;
    width: 100%;
  }
}
.book_bar .tool_tip {
  max-width: unset;
  margin: unset;
  padding: unset;
  position: absolute;
  top: -50px;
  right: 20%;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: #517352;
  padding: 10px;
  color: #fff;
}
@media (max-width: 768px) {
  .book_bar .tool_tip {
    right: unset;
    width: 100%;
    text-align: center;
  }
}
.book_bar .tool_tip.show {
  opacity: 1;
  pointer-events: all;
}
.book_bar .tool_tip:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #517352 transparent transparent transparent;
}
.book_bar .tool_tip span {
  margin-left: 10px;
  cursor: pointer;
}
.book_bar .tool_tip a {
  display: inline-block;
  color: #fff;
}

/* ------------------------------------------------------------------------- *
/* 4. PARTIALS */
/* ------------------------------------------------------------------------- */
/* ------------------------ */
/* HERO */
/* ------------------------ */
#hero .holder {
  position: relative;
}
#hero .holder .hero-slider {
  height: calc(100dvh - 72px);
  width: 100%;
}
@media (max-width: 650px) {
  #hero .holder .hero-slider {
    height: calc(100dvh - 44px - 72px);
  }
}
#hero .holder .hero-slider .flickity-viewport {
  height: calc(100dvh - 72px) !important;
}
@media (max-width: 650px) {
  #hero .holder .hero-slider .flickity-viewport {
    height: calc(100dvh - 44px - 72px) !important;
  }
}
#hero .holder .hero-slider .slider-cell {
  height: 100%;
  width: 100%;
  position: relative;
}
#hero .holder .hero-slider .slider-cell:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
#hero .holder .hero-slider .slider-cell img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#hero .holder .hero-slider .slider-nav {
  position: absolute;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 992px) {
  #hero .holder .hero-slider .slider-nav {
    bottom: 32px;
  }
}
@media (max-width: 650px) {
  #hero .holder .hero-slider .slider-nav {
    bottom: 24px;
  }
}
#hero .holder .hero-slider .slider-nav .hero-previous, #hero .holder .hero-slider .slider-nav .hero-next {
  background-color: transparent;
  height: 24px;
  width: 24px;
  padding: 0 4px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}
#hero .holder .hero-slider .slider-nav .hero-previous:before, #hero .holder .hero-slider .slider-nav .hero-previous:after, #hero .holder .hero-slider .slider-nav .hero-next:before, #hero .holder .hero-slider .slider-nav .hero-next:after {
  display: none;
}
#hero .holder .hero-slider .slider-nav .hero-previous {
  background-image: url("../../images/chev_left_wht.svg");
}
#hero .holder .hero-slider .slider-nav .hero-next {
  background-image: url("../../images/chev_right_wht.svg");
}
#hero .holder .hero-slider .slider-nav .flickity-page-dots {
  position: static;
  width: fit-content;
  padding: 0 16px;
}
#hero .holder .hero-slider .slider-nav .flickity-page-dots .dot {
  background-color: #AAA;
}
#hero .holder .hero-slider .slider-nav .flickity-page-dots .dot.is-selected {
  background-color: #fff;
}
#hero .holder .video {
  height: calc(100dvh - 72px);
  width: 100%;
  overflow: hidden;
}
@media (max-width: 650px) {
  #hero .holder .video {
    height: calc(100dvh - 44px - 72px);
  }
}
#hero .holder .video .vimeo-wrapper {
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: relative;
  padding-bottom: 85%;
  height: 100%;
  max-width: 100%;
}
#hero .holder .video .vimeo-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 177.77vh;
  position: absolute;
  left: 50%;
  top: 0%;
  transform: translate(-50%, 0%);
  min-height: 640px;
  overflow: hidden;
}
#hero .holder .video .vimeo-wrapper .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#hero .holder .hero-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
#hero .holder .hero-content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  #hero .holder .hero-content > div {
    padding: 64px 52px;
  }
}
@media only screen and (max-width: 575px) {
  #hero .holder .hero-content > div {
    padding: 64px 20px;
  }
}
#hero .holder .hero-content > div h1 {
  color: #fff;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 992px) {
  #hero .holder .hero-content > div h1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 575px) {
  #hero .holder .hero-content > div h1 {
    font-size: 2.25rem;
  }
}
#hero .holder .hero-content > div p {
  color: #fff;
  font-family: "termina_regular", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  max-width: 768px;
  margin: 24px auto;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  #hero .holder .hero-content > div p {
    font-size: 1rem;
  }
}
#hero .holder .split-hero {
  background-color: #fff;
}
#hero .holder .split-hero > div {
  display: flex;
  height: calc(100dvh - 72px);
  width: 100%;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div {
    flex-direction: column;
    height: 100%;
  }
}
#hero .holder .split-hero > div .left {
  width: 50%;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .left {
    width: 100%;
  }
}
#hero .holder .split-hero > div .left .hero-content {
  height: 100%;
  position: static;
  padding: 20px 80px 20px 64px;
  max-width: 850px;
  margin: auto;
}
@media (max-width: 1200px) {
  #hero .holder .split-hero > div .left .hero-content {
    padding: 20px 48px 20px 48px;
  }
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .left .hero-content {
    padding: 64px 48px 32px;
  }
}
@media (max-width: 768px) {
  #hero .holder .split-hero > div .left .hero-content {
    padding: 48px 20px 24px;
  }
}
#hero .holder .split-hero > div .left .hero-content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  padding: 0;
}
#hero .holder .split-hero > div .left .hero-content > div .shield {
  margin-bottom: 16px;
  height: 56px;
}
@media (max-width: 768px) {
  #hero .holder .split-hero > div .left .hero-content > div .shield {
    margin-bottom: 16px;
    height: 40px;
  }
}
#hero .holder .split-hero > div .left .hero-content > div .shield img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#hero .holder .split-hero > div .left .hero-content > div h1 {
  color: #031422;
  text-align: left;
  max-width: unset;
  margin: 0;
}
#hero .holder .split-hero > div .left .hero-content > div p {
  color: #031422;
  text-align: left;
  margin-bottom: 24px;
  max-width: unset;
}
#hero .holder .split-hero > div .left .hero-content > div .btn-holder {
  gap: 24px;
}
#hero .holder .split-hero > div .right {
  width: 50%;
  height: 100%;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-height: 40vh;
  }
}
#hero .holder .split-hero > div .right .split-image {
  height: 100%;
  width: 100%;
}
#hero .holder .split-hero > div .right .split-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#hero .holder .short-hero {
  background-color: #fff;
}
#hero .holder .short-hero > div .hero-content {
  height: 100%;
  position: static;
  padding: 48px 64px;
}
@media (max-width: 992px) {
  #hero .holder .short-hero > div .hero-content {
    padding: 32px 48px;
  }
}
@media (max-width: 768px) {
  #hero .holder .short-hero > div .hero-content {
    padding: 24px 20px;
  }
}
#hero .holder .short-hero > div .hero-content > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#hero .holder .short-hero > div .hero-content > div h1 {
  color: #031422;
}
#hero .holder .short-hero > div .hero-content > div p {
  color: #031422;
}
@media (max-width: 992px) {
  #hero .holder .short-hero > div .hero-content > div p {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  #hero .holder .short-hero > div .hero-content > div p {
    margin: 8px 0 20px;
  }
}
#hero .holder .border-hero > div {
  padding: 24px;
}
@media (max-width: 992px) {
  #hero .holder .border-hero > div {
    padding: 10px;
  }
}
#hero .holder .border-hero > div .outer {
  position: relative;
}
#hero .holder .border-hero > div .outer > .top, #hero .holder .border-hero > div .outer > .right, #hero .holder .border-hero > div .outer > .bottom, #hero .holder .border-hero > div .outer > .left {
  position: absolute;
  background-color: #031422;
}
#hero .holder .border-hero > div .outer > .top, #hero .holder .border-hero > div .outer > .bottom {
  height: 1px;
  width: calc(100% - 70px);
  left: 35px;
}
#hero .holder .border-hero > div .outer > .top {
  top: 0;
}
#hero .holder .border-hero > div .outer > .bottom {
  bottom: 0;
}
#hero .holder .border-hero > div .outer > .left, #hero .holder .border-hero > div .outer > .right {
  height: calc(100% - 70px);
  width: 1px;
  top: 35px;
}
#hero .holder .border-hero > div .outer > .left {
  left: 0;
}
#hero .holder .border-hero > div .outer > .right {
  right: 0;
}
#hero .holder .border-hero > div .outer .top-left, #hero .holder .border-hero > div .outer .top-right, #hero .holder .border-hero > div .outer .bottom-left, #hero .holder .border-hero > div .outer .bottom-right {
  position: absolute;
  height: 35px;
  width: 35px;
  background-size: contain;
}
#hero .holder .border-hero > div .outer .top-left {
  background-image: url("../../images/top-left-corner.svg");
  top: 0;
  left: 0;
}
#hero .holder .border-hero > div .outer .top-right {
  background-image: url("../../images/top-right-corner.svg");
  top: 0;
  right: 0;
}
#hero .holder .border-hero > div .outer .bottom-left {
  background-image: url("../../images/bottom-left-corner.svg");
  bottom: 0;
  left: 0;
}
#hero .holder .border-hero > div .outer .bottom-right {
  background-image: url("../../images/bottom-right-corner.svg");
  bottom: 0;
  right: 0;
}
#hero .holder .border-hero > div .outer .inner {
  padding: 80px 40px;
}
@media (max-width: 992px) {
  #hero .holder .border-hero > div .outer .inner {
    padding: 56px 28px;
  }
}
@media (max-width: 575px) {
  #hero .holder .border-hero > div .outer .inner {
    padding: 20px 28px 44px;
  }
}
#hero .holder .border-hero > div .outer .inner > .top, #hero .holder .border-hero > div .outer .inner > .right, #hero .holder .border-hero > div .outer .inner > .bottom, #hero .holder .border-hero > div .outer .inner > .left {
  position: absolute;
  background-color: #031422;
}
#hero .holder .border-hero > div .outer .inner > .top, #hero .holder .border-hero > div .outer .inner > .bottom {
  height: 1px;
  width: calc(100% - 70px);
  left: 35px;
}
#hero .holder .border-hero > div .outer .inner > .top {
  top: 10px;
}
#hero .holder .border-hero > div .outer .inner > .bottom {
  bottom: 10px;
}
#hero .holder .border-hero > div .outer .inner > .left, #hero .holder .border-hero > div .outer .inner > .right {
  height: calc(100% - 70px);
  width: 1px;
  top: 35px;
}
#hero .holder .border-hero > div .outer .inner > .left {
  left: 10px;
}
#hero .holder .border-hero > div .outer .inner > .right {
  right: 10px;
}
#hero .holder .border-hero > div .outer .inner .hero-content {
  position: static;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#hero .holder .border-hero > div .outer .inner .hero-content > div {
  padding: 0;
}
#hero .holder .border-hero > div .outer .inner .hero-content > div .intro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  gap: 40px;
  width: 100%;
}
@media (max-width: 992px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div .intro {
    gap: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div .intro {
    margin-bottom: 24px;
  }
}
#hero .holder .border-hero > div .outer .inner .hero-content > div .intro .line {
  width: 100%;
  max-width: 320px;
  height: 1px;
  background-color: #031422;
}
@media (max-width: 575px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div .intro .line {
    display: none;
  }
}
#hero .holder .border-hero > div .outer .inner .hero-content > div .intro .coat_of_arms {
  width: 164px;
}
@media (max-width: 992px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div .intro .coat_of_arms {
    width: 88px;
    min-width: 88px;
  }
}
@media (max-width: 575px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div .intro .coat_of_arms {
    width: 79px;
    min-width: 79px;
  }
}
#hero .holder .border-hero > div .outer .inner .hero-content > div .intro .coat_of_arms img {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
#hero .holder .border-hero > div .outer .inner .hero-content > div h1 {
  color: #031422;
}
#hero .holder .border-hero > div .outer .inner .hero-content > div p {
  color: #031422;
}
@media (max-width: 992px) {
  #hero .holder .border-hero > div .outer .inner .hero-content > div p {
    margin: 24px 0 16px;
  }
}
#hero .holder .border-hero.dark {
  background-color: #031422;
}
#hero .holder .border-hero.dark > div .outer > .top, #hero .holder .border-hero.dark > div .outer > .right, #hero .holder .border-hero.dark > div .outer > .bottom, #hero .holder .border-hero.dark > div .outer > .left {
  background-color: #FFFDE8;
}
#hero .holder .border-hero.dark > div .outer .top-left {
  background-image: url("../../images/top-left-corner-light.svg");
}
#hero .holder .border-hero.dark > div .outer .top-right {
  background-image: url("../../images/top-right-corner-light.svg");
}
#hero .holder .border-hero.dark > div .outer .bottom-left {
  background-image: url("../../images/bottom-left-corner-light.svg");
}
#hero .holder .border-hero.dark > div .outer .bottom-right {
  background-image: url("../../images/bottom-right-corner-light.svg");
}
#hero .holder .border-hero.dark > div .outer .inner > .top, #hero .holder .border-hero.dark > div .outer .inner > .right, #hero .holder .border-hero.dark > div .outer .inner > .bottom, #hero .holder .border-hero.dark > div .outer .inner > .left {
  background-color: #FFFDE8;
}
#hero .holder .border-hero.dark > div .outer .inner .hero-content > div .intro .line {
  background-color: #FFFDE8;
}
#hero .holder .border-hero.dark > div .outer .inner .hero-content > div h1 {
  color: #FFFDE8;
}
#hero .holder .border-hero.dark > div .outer .inner .hero-content > div p {
  color: #FFFDE8;
}
#hero.book_bar_show .holder .hero-slider {
  height: calc(100dvh - 72px - 122px);
}
#hero.book_bar_show .holder .hero-slider .flickity-viewport {
  height: calc(100dvh - 72px - 122px) !important;
}

.home #hero .holder .hero-slider {
  height: 100dvh;
}
@media (max-width: 650px) {
  .home #hero .holder .hero-slider {
    height: calc(100dvh - 44px);
  }
}
.home #hero .holder .hero-slider .flickity-viewport {
  height: 100vh !important;
}
@media (max-width: 650px) {
  .home #hero .holder .hero-slider .flickity-viewport {
    height: calc(100dvh - 44px) !important;
  }
}
.home #hero .holder .video {
  height: 100dvh;
}
@media (max-width: 650px) {
  .home #hero .holder .video {
    height: calc(100dvh - 44px);
  }
}
.home #hero.book_bar_show .holder .hero-slider {
  height: calc(100dvh - 122px);
}
@media (max-width: 1150px) {
  .home #hero.book_bar_show .holder .hero-slider {
    height: 100dvh;
  }
}
@media (max-width: 650px) {
  .home #hero.book_bar_show .holder .hero-slider {
    height: calc(100dvh - 44px);
  }
}
.home #hero.book_bar_show .holder .hero-slider .flickity-viewport {
  height: calc(100dvh - 122px) !important;
}
@media (max-width: 1150px) {
  .home #hero.book_bar_show .holder .hero-slider .flickity-viewport {
    height: 100dvh !important;
  }
}
@media (max-width: 650px) {
  .home #hero.book_bar_show .holder .hero-slider .flickity-viewport {
    height: calc(100dvh - 44px) !important;
  }
}
.home #hero.book_bar_show .holder .video {
  height: calc(100dvh - 122px);
}
@media (max-width: 1150px) {
  .home #hero.book_bar_show .holder .video {
    height: 100dvh;
  }
}
@media (max-width: 650px) {
  .home #hero.book_bar_show .holder .video {
    height: calc(100dvh - 44px);
  }
}

/* ------------------------------------------------------------------------- */
/* SIMPLE CONTENT */
/* ------------------------------------------------------------------------- */
.simple-content {
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}
.simple-content > div {
  position: relative;
  padding: 0;
}
.simple-content > div a {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .simple-content > div figure img {
    display: block;
    width: 75%;
    margin: auto;
  }
  .simple-content > div .video-container {
    max-width: none;
  }
}

.feature_cards_3_column > div .card_hold {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.feature_cards_3_column > div .card_hold .single_card {
  height: 640px;
  width: 33.3333333333%;
}
@media (max-width: 992px) {
  .feature_cards_3_column > div .card_hold .single_card {
    width: 100%;
    height: 400px;
  }
}
.feature_cards_3_column > div .card_hold .single_card:nth-child(2) {
  border-left: 1px solid #FFFDE8;
  border-right: 1px solid #FFFDE8;
}
@media (max-width: 992px) {
  .feature_cards_3_column > div .card_hold .single_card:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid #FFFDE8;
    border-bottom: 1px solid #FFFDE8;
  }
}
.feature_cards_3_column > div .card_hold .single_card > div {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.feature_cards_3_column > div .card_hold .single_card > div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  display: block;
}
.feature_cards_3_column > div .card_hold .single_card > div .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.feature_cards_3_column > div .card_hold .single_card > div .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  height: 100%;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .feature_cards_3_column > div .card_hold .single_card > div .content {
    padding: 48px;
  }
}
@media (max-width: 768px) {
  .feature_cards_3_column > div .card_hold .single_card > div .content {
    padding: 24px;
  }
}
.feature_cards_3_column > div .card_hold .single_card > div .content .section-title {
  justify-content: flex-start;
  align-items: flex-start;
}
.feature_cards_3_column > div .card_hold .single_card > div .content .section-title .title, .feature_cards_3_column > div .card_hold .single_card > div .content .section-title .caption {
  color: #fff;
}
.feature_cards_3_column > div .card_hold .single_card > div .content .section-title .title {
  margin: 0;
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 130%;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .feature_cards_3_column > div .card_hold .single_card > div .content .section-title .title {
    font-size: 1.5rem;
  }
}
.feature_cards_3_column > div .card_hold .single_card > div .content .section-title .caption {
  margin: 24px 0 16px;
}
.feature_cards_3_column > div .card_hold .single_card > div .content .section-title .caption p {
  margin: 0;
  text-align: left;
}
.feature_cards_3_column > div .card_hold .single_card > div .content .btn-holder {
  justify-content: flex-start;
  align-items: flex-start;
}
.feature_cards_3_column > div .card_hold .single_card:hover > div img {
  scale: 1.1;
}
.feature_cards_3_column {
  /* 16:9 aspect ratio */
}
.feature_cards_3_column.landscape > div .card_hold .single_card {
  height: 100%;
  aspect-ratio: 16/9;
  max-height: fit-content;
}
.feature_cards_3_column {
  /* 4:5 aspect ratio */
}
.feature_cards_3_column.portrait > div .card_hold .single_card {
  height: 100%;
  aspect-ratio: 4/5;
  max-height: fit-content;
}
.feature_cards_3_column {
  /* 1:1 aspect ratio */
}
.feature_cards_3_column.square > div .card_hold .single_card {
  height: 100%;
  aspect-ratio: 1/1;
  max-height: fit-content;
}

.image_navigation {
  background-color: #fff;
}
.image_navigation > div {
  display: flex;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 992px) {
  .image_navigation > div {
    flex-direction: column;
    gap: 40px;
  }
}
.image_navigation > div .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 992px) {
  .image_navigation > div .left {
    width: 100%;
    align-items: center;
  }
}
.image_navigation > div .left > div {
  padding-right: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 850px;
  margin: auto;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div {
    padding: 0;
    align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .image_navigation > div .left > div {
    align-items: flex-start;
  }
}
.image_navigation > div .left > div .shield {
  margin-bottom: 24px;
  height: 56px;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .shield {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .image_navigation > div .left > div .shield {
    height: 40px;
  }
}
.image_navigation > div .left > div .shield img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.image_navigation > div .left > div .section-title {
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .section-title {
    justify-content: center;
    align-items: center;
  }
}
.image_navigation > div .left > div .section-title .title {
  margin: 0;
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 130%;
  text-align: left;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .section-title .title {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .image_navigation > div .left > div .section-title .title {
    font-size: 1.5rem;
    text-align: left;
    width: 100%;
  }
}
.image_navigation > div .left > div .section-title .caption {
  margin: 24px 0 16px;
}
.image_navigation > div .left > div .section-title .caption p {
  margin: 0;
  text-align: left;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .section-title .caption p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .section-title .caption p {
    text-align: left;
  }
}
.image_navigation > div .left > div .features_list {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 16px;
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .features_list {
    flex-direction: column;
  }
}
.image_navigation > div .left > div .features_list .feature {
  width: 100%;
}
.image_navigation > div .left > div .features_list .feature h6 {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .features_list .feature h6 {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .features_list .feature h6 {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .features_list .feature p {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .features_list .feature p {
    text-align: left;
  }
}
.image_navigation > div .left > div .features_list .feature ul {
  list-style: inside;
}
@media (max-width: 992px) {
  .image_navigation > div .left > div .features_list .feature ul {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .features_list .feature ul {
    text-align: left;
  }
}
.image_navigation > div .left > div .btn-holder {
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .image_navigation > div .left > div .btn-holder {
    width: 100%;
  }
}
.image_navigation > div .right {
  width: 50%;
}
@media (max-width: 992px) {
  .image_navigation > div .right {
    width: 100%;
  }
}
.image_navigation > div .right > div .gallery-main, .image_navigation > div .right > div .gal-main {
  height: 540px;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .image_navigation > div .right > div .gallery-main, .image_navigation > div .right > div .gal-main {
    height: 640px;
  }
}
@media (max-width: 575px) {
  .image_navigation > div .right > div .gallery-main, .image_navigation > div .right > div .gal-main {
    height: 335px;
  }
}
.image_navigation > div .right > div .gallery-main .gallery-main_img, .image_navigation > div .right > div .gal-main .gallery-main_img {
  height: 100%;
  width: 100%;
}
.image_navigation > div .right > div .gallery-main .gallery-main_img img, .image_navigation > div .right > div .gal-main .gallery-main_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.image_navigation > div .right > div .gallery-nav, .image_navigation > div .right > div .gal-nav {
  height: 120px;
  padding: 0 48px 0 64px;
}
@media (max-width: 575px) {
  .image_navigation > div .right > div .gallery-nav, .image_navigation > div .right > div .gal-nav {
    height: 80px;
    padding: 0 44px 0 52px;
  }
}
.image_navigation > div .right > div .gallery-nav .gallery-nav_img, .image_navigation > div .right > div .gal-nav .gallery-nav_img {
  width: calc(33.3333333333% - 16px);
  height: 100%;
  margin-left: 16px;
}
@media (max-width: 575px) {
  .image_navigation > div .right > div .gallery-nav .gallery-nav_img, .image_navigation > div .right > div .gal-nav .gallery-nav_img {
    width: calc(33.3333333333% - 8px);
    margin-left: 8px;
  }
}
.image_navigation > div .right > div .gallery-nav .gallery-nav_img img, .image_navigation > div .right > div .gal-nav .gallery-nav_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.image_navigation > div .right > div .gallery-nav .flickity-button, .image_navigation > div .right > div .gal-nav .flickity-button {
  width: 48px;
  height: 120px;
  transform: unset;
  padding: 0;
  background-image: url("../../images/arrow_left.svg");
  background-size: contain;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #517352;
  border-radius: 0;
  left: 0;
  top: 0;
  margin: 0;
}
@media (max-width: 575px) {
  .image_navigation > div .right > div .gallery-nav .flickity-button, .image_navigation > div .right > div .gal-nav .flickity-button {
    height: 80px;
  }
}
.image_navigation > div .right > div .gallery-nav .flickity-button.next, .image_navigation > div .right > div .gal-nav .flickity-button.next {
  background-image: url("../../images/arrow_right.svg");
  left: unset;
  right: 0;
}
.image_navigation.gall_left > div {
  flex-direction: row-reverse;
}
.image_navigation.gall_left > div .left > div {
  padding-left: 80px;
  padding-right: 0;
}
@media (max-width: 992px) {
  .image_navigation.gall_left > div .left > div {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .image_navigation.gall_left > div {
    flex-direction: column;
    gap: 40px;
  }
}

.half_card > div {
  padding: 48px 32px;
  height: 556px;
}
@media (max-width: 1200px) {
  .half_card > div {
    height: 952px;
    padding: 35px 25px;
  }
}
@media (max-width: 992px) {
  .half_card > div {
    min-height: 952px;
    height: unset;
  }
}
@media (max-width: 575px) {
  .half_card > div {
    padding: 0;
  }
}
.half_card > div .inner {
  border: 1px solid #031422;
  display: flex;
  height: 100%;
  gap: 32px;
}
@media (max-width: 1200px) {
  .half_card > div .inner {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .half_card > div .inner {
    padding: 40px 20px;
  }
}
.half_card > div .inner .shield {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -17px);
  height: 63px;
  background-color: #FFFDE8;
}
@media (max-width: 1200px) {
  .half_card > div .inner .shield {
    transform: translate(-50%, -25px);
    height: 48px;
  }
}
@media (max-width: 575px) {
  .half_card > div .inner .shield {
    z-index: 1;
  }
}
.half_card > div .inner .shield img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.half_card > div .inner .single_cta {
  width: 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1200px) {
  .half_card > div .inner .single_cta {
    padding: 37px 31px 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .half_card > div .inner .single_cta {
    padding: 0;
  }
}
@media (max-width: 1200px) {
  .half_card > div .inner .single_cta:last-child {
    padding-top: 0;
    padding-bottom: 21px;
  }
}
@media (max-width: 575px) {
  .half_card > div .inner .single_cta:last-child {
    padding: 0;
  }
}
.half_card > div .inner .single_cta > div {
  height: 100%;
  width: 100%;
  position: relative;
}
.half_card > div .inner .single_cta > div > .top, .half_card > div .inner .single_cta > div > .right, .half_card > div .inner .single_cta > div > .bottom, .half_card > div .inner .single_cta > div > .left {
  position: absolute;
}
.half_card > div .inner .single_cta > div > .top, .half_card > div .inner .single_cta > div > .bottom {
  height: 22px;
  width: calc(100% - 52px);
  left: 26px;
  border-left: 1px solid #031422;
  border-right: 1px solid #031422;
}
@media (max-width: 575px) {
  .half_card > div .inner .single_cta > div > .top, .half_card > div .inner .single_cta > div > .bottom {
    height: 14px;
    width: calc(100% - 30px);
    left: 15px;
  }
}
.half_card > div .inner .single_cta > div > .top {
  top: 0;
  border-top: 1px solid #031422;
}
.half_card > div .inner .single_cta > div > .bottom {
  bottom: 0;
  border-bottom: 1px solid #031422;
}
.half_card > div .inner .single_cta > div > .left, .half_card > div .inner .single_cta > div > .right {
  height: calc(100% - 44px);
  width: 27px;
  top: 22px;
  border-top: 1px solid #031422;
  border-bottom: 1px solid #031422;
}
@media (max-width: 575px) {
  .half_card > div .inner .single_cta > div > .left, .half_card > div .inner .single_cta > div > .right {
    height: calc(100% - 28px);
    width: 16px;
    top: 14px;
  }
}
.half_card > div .inner .single_cta > div > .left {
  left: 0;
  border-left: 1px solid #031422;
}
.half_card > div .inner .single_cta > div > .right {
  right: 0;
  border-right: 1px solid #031422;
}
.half_card > div .inner .single_cta > div .content {
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.half_card > div .inner .single_cta > div .content .section-title h2 {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  .half_card > div .inner .single_cta > div .content .section-title h2 {
    font-size: 2rem;
  }
}
.half_card.dark {
  background-color: #031422;
}
.half_card.dark > div .inner {
  border: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .shield {
  background-color: #031422;
}
.half_card.dark > div .inner .single_cta > div > .top, .half_card.dark > div .inner .single_cta > div > .bottom {
  border-left: 1px solid #FFFDE8;
  border-right: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div > .top {
  border-top: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div > .bottom {
  border-bottom: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div > .left, .half_card.dark > div .inner .single_cta > div > .right {
  border-top: 1px solid #FFFDE8;
  border-bottom: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div > .left {
  border-left: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div > .right {
  border-right: 1px solid #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div .content .section-title h2 {
  color: #FFFDE8;
}
.half_card.dark > div .inner .single_cta > div .content p {
  color: #FFFDE8;
}

.featured_cards {
  max-width: 1900px;
  margin: auto;
}
.featured_cards > div {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .featured_cards > div {
    padding-left: 3rem;
  }
}
@media (max-width: 768px) {
  .featured_cards > div {
    padding-left: 1.25rem;
  }
}
.featured_cards > div .intro {
  margin-bottom: 40px;
}
.featured_cards > div .intro .section-title {
  max-width: 768px;
  margin: auto;
}
.featured_cards > div .intro .section-title .caption p:last-child {
  margin-bottom: 0px;
}
.featured_cards > div .intro .btn-holder {
  margin-top: 32px;
}
.featured_cards > div .cards_rpt .card {
  flex: 1;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 2px;
}
@media (max-width: 1100px) {
  .featured_cards > div .cards_rpt .card {
    width: 100%;
  }
}
.featured_cards > div .cards_rpt .card > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.featured_cards > div .cards_rpt .card > div .featured-image {
  height: 260px;
  width: 100%;
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .card > div .featured-image {
    height: 198px;
  }
}
.featured_cards > div .cards_rpt .card > div .featured-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.featured_cards > div .cards_rpt .card > div .content_hold {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner {
  margin-bottom: 16px;
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .card > div .content_hold .content_inner {
    margin-bottom: 0px;
  }
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner h4 {
  margin: 0 0 8px;
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .card > div .content_hold .content_inner h4 {
    margin: 0 0 12px;
  }
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .content p {
  margin: 0 0 16px;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  margin-bottom: 0;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .features li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .features li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: 24px;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .features li .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .price {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .price span {
  font-family: "termina_bold", serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
}
.featured_cards > div .cards_rpt .card > div .content_hold .content_inner .price p {
  margin-bottom: 4px;
}
.featured_cards > div .cards_rpt .card > div .content_hold .btn-holder .btn {
  flex: 1;
  padding: 9px 12px 10px;
}
.featured_cards > div .cards_rpt .flickity-page-dots {
  position: relative;
  bottom: 0;
  margin-top: 68px;
  margin-bottom: 20px;
  padding-right: 4rem;
  width: fit-content;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 992px) {
  .featured_cards > div .cards_rpt .flickity-page-dots {
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .featured_cards > div .cards_rpt .flickity-page-dots {
    padding-right: 1.25rem;
  }
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .flickity-page-dots {
    margin-top: 52px;
  }
}
.featured_cards > div .cards_rpt .flickity-button {
  width: 48px;
  height: 48px;
  background-color: #517352;
  background-image: url("../../images/arrow_left.svg");
  background-size: 24px;
  border-radius: 0;
  top: unset;
  bottom: -18px;
  left: calc(50% - 200px);
  z-index: 1;
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .flickity-button {
    left: 0px;
  }
}
.featured_cards > div .cards_rpt .flickity-button:disabled {
  opacity: 1;
  background-color: #CCC;
}
.featured_cards > div .cards_rpt .flickity-button.next {
  left: unset;
  right: calc(50% - 200px + 64px);
  background-image: url("../../images/arrow_right.svg");
}
@media (max-width: 768px) {
  .featured_cards > div .cards_rpt .flickity-button.next {
    right: calc(50% - 200px + 20px);
  }
}
@media (max-width: 650px) {
  .featured_cards > div .cards_rpt .flickity-button.next {
    right: 20px;
  }
}
.featured_cards.white {
  background-color: #fff;
}
.featured_cards.less > div {
  max-width: 1900px;
  margin: auto;
  padding-right: 4rem;
}
@media (max-width: 1100px) {
  .featured_cards.less > div {
    padding-right: 0rem;
  }
}
@media (max-width: 992px) {
  .featured_cards.less > div .intro {
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .featured_cards.less > div .intro {
    padding-right: 1.25rem;
  }
}
.featured_cards.less > div .cards_rpt {
  display: flex;
  gap: 36px;
}
@media (max-width: 1100px) {
  .featured_cards.less > div .cards_rpt {
    display: block;
  }
}
.featured_cards.less > div .cards_rpt:after {
  content: "flickity";
  display: none;
}
@media (min-width: 1101px) {
  .featured_cards.less > div .cards_rpt:after {
    content: "";
  }
}
@media (max-width: 1100px) {
  .featured_cards.less > div .cards_rpt .card {
    width: 80%;
    margin-right: 36px;
  }
}
@media (max-width: 650px) {
  .featured_cards.less > div .cards_rpt .card {
    margin-right: 24px;
    width: 90%;
  }
}
.featured_cards.more > div .intro {
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .featured_cards.more > div .intro {
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .featured_cards.more > div .intro {
    padding-right: 1.25rem;
  }
}
.featured_cards.more > div .cards_rpt .card {
  margin-right: 36px;
  width: 30%;
}
@media (max-width: 1200px) {
  .featured_cards.more > div .cards_rpt .card {
    width: 40%;
  }
}
@media (max-width: 992px) {
  .featured_cards.more > div .cards_rpt .card {
    width: 50%;
  }
}
@media (max-width: 650px) {
  .featured_cards.more > div .cards_rpt .card {
    margin-right: 24px;
    width: 90%;
  }
}
.featured_cards.count-2 > div .cards_rpt .card > div .featured-image {
  height: 320px;
}
@media (max-width: 650px) {
  .featured_cards.count-2 > div .cards_rpt .card > div .featured-image {
    height: 198px;
  }
}
.featured_cards {
  /* 16:9 aspect ratio */
}
.featured_cards.landscape > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 16/9;
  max-height: fit-content;
}
.featured_cards {
  /* 4:5 aspect ratio */
}
.featured_cards.portrait > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 4/5;
  max-height: fit-content;
}
.featured_cards {
  /* 1:1 aspect ratio */
}
.featured_cards.square > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 1/1;
  max-height: fit-content;
}

.feature_list > div {
  max-width: 1900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 575px) {
  .feature_list > div {
    gap: 48px;
  }
}
.feature_list > div .top .section-title {
  gap: 80px;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .feature_list > div .top .section-title {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .feature_list > div .top .section-title {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .feature_list > div .top .section-title {
    flex-direction: column;
    gap: 20px;
  }
}
.feature_list > div .top .section-title h2, .feature_list > div .top .section-title .caption {
  width: 50%;
}
@media (max-width: 992px) {
  .feature_list > div .top .section-title h2, .feature_list > div .top .section-title .caption {
    width: 100%;
  }
}
.feature_list > div .top .section-title h2 {
  text-align: left;
  margin-bottom: 0;
}
.feature_list > div .top .section-title .caption p {
  text-align: left;
  font-size: 1.125rem;
}
@media only screen and (max-width: 575px) {
  .feature_list > div .top .section-title .caption p {
    font-size: 1rem;
  }
}
.feature_list > div .bottom .features {
  display: flex;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 992px) {
  .feature_list > div .bottom .features {
    flex-wrap: wrap;
    gap: 32px 32px;
  }
}
.feature_list > div .bottom .features .feature {
  flex: 1;
  height: auto;
}
@media (max-width: 992px) {
  .feature_list > div .bottom .features .feature {
    flex: unset;
    width: calc(50% - 32px);
  }
}
@media (max-width: 575px) {
  .feature_list > div .bottom .features .feature {
    width: 100%;
  }
}
.feature_list > div .bottom .features .feature > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.feature_list > div .bottom .features .feature > div .inner h5 {
  margin-bottom: 0;
}
.feature_list > div .bottom .features .feature > div .inner .content p {
  margin: 16px 0 16px;
}
.feature_list > div .bottom .features .feature > div .btn-holder {
  justify-content: flex-start;
}
.feature_list.white {
  background-color: #fff;
}
.feature_list.red {
  background-color: #721121;
}
.feature_list.red > div .bottom .features .feature > div .btn-holder .btn:hover {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
  color: #031422;
}
.feature_list.red > div .bottom .features .feature > div .btn-holder .btn:hover:before, .feature_list.red > div .bottom .features .feature > div .btn-holder .btn:hover:after {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
}
.feature_list.black {
  background-color: #031422;
}
.feature_list.red > div .top .section-title h2, .feature_list.black > div .top .section-title h2 {
  color: #FFFDE8;
}
.feature_list.red > div .top .section-title .caption p, .feature_list.black > div .top .section-title .caption p {
  color: #FFFDE8;
}
.feature_list.red > div .bottom .features .feature > div .inner h5, .feature_list.black > div .bottom .features .feature > div .inner h5 {
  color: #FFFDE8;
}
.feature_list.red > div .bottom .features .feature > div .inner .content p, .feature_list.black > div .bottom .features .feature > div .inner .content p {
  color: #FFFDE8;
}

.content_slider > div {
  padding-left: 4rem;
  display: flex;
  gap: 80px;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 1200px) {
  .content_slider > div {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .content_slider > div {
    flex-direction: column;
    padding-left: 3rem;
  }
}
@media (max-width: 768px) {
  .content_slider > div {
    padding-left: 1.25rem;
  }
}
.content_slider > div .intro {
  text-align: left;
  max-width: 380px;
}
@media (max-width: 992px) {
  .content_slider > div .intro {
    max-width: unset;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .content_slider > div .intro {
    padding-right: 1.25rem;
  }
}
.content_slider > div .intro .shield {
  margin-bottom: 24px;
  height: 56px;
  width: fit-content;
}
@media (max-width: 992px) {
  .content_slider > div .intro .shield {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .content_slider > div .intro .shield {
    height: 40px;
  }
}
.content_slider > div .intro .shield img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.content_slider > div .intro .section-title {
  max-width: 768px;
  margin-right: auto;
  align-items: flex-start;
}
.content_slider > div .intro .section-title h2 {
  text-align: left;
}
.content_slider > div .intro .section-title .caption p {
  text-align: left;
}
.content_slider > div .intro .section-title .caption p:last-child {
  margin-bottom: 0px;
}
.content_slider > div .intro .btn-holder {
  margin-top: 32px;
  justify-content: flex-start;
}
.content_slider > div .cards_rpt {
  flex: 1;
  padding-bottom: 96px;
}
.content_slider > div .cards_rpt .card {
  flex: 1;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  margin-right: 36px;
  width: 42%;
  margin-bottom: 2px;
}
@media (max-width: 1200px) {
  .content_slider > div .cards_rpt .card {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .content_slider > div .cards_rpt .card {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .content_slider > div .cards_rpt .card {
    width: 85%;
  }
}
.content_slider > div .cards_rpt .card > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content_slider > div .cards_rpt .card > div .featured-image {
  height: 233px;
  width: 100%;
}
@media (max-width: 575px) {
  .content_slider > div .cards_rpt .card > div .featured-image {
    height: 198px;
  }
}
.content_slider > div .cards_rpt .card > div .featured-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.content_slider > div .cards_rpt .card > div .content_hold {
  min-height: 336px;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content_slider > div .cards_rpt .card > div .content_hold .content_inner {
  margin-bottom: 16px;
}
.content_slider > div .cards_rpt .card > div .content_hold .content_inner h4 {
  margin: 0 0 16px;
}
.content_slider > div .cards_rpt .card > div .content_hold .content_inner .content p {
  margin: 0;
}
.content_slider > div .cards_rpt .card > div .content_hold .btn-holder {
  justify-content: flex-start;
}
.content_slider > div .cards_rpt .card > div .content_hold .btn-holder .btn {
  padding: 9px 12px 10px;
}
.content_slider > div .cards_rpt .flickity-page-dots {
  position: absolute;
  left: 63px;
  bottom: 17px;
  width: fit-content;
}
@media (max-width: 575px) {
  .content_slider > div .cards_rpt .flickity-page-dots {
    left: 50%;
    transform: translate(-50%);
  }
}
.content_slider > div .cards_rpt .flickity-button {
  width: 48px;
  height: 48px;
  background-color: #517352;
  background-image: url("../../images/arrow_left.svg");
  background-size: 24px;
  border-radius: 0;
  top: unset;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
}
.content_slider > div .cards_rpt .flickity-button:disabled {
  opacity: 1;
  background-color: #CCC;
}
.content_slider > div .cards_rpt .flickity-button.next {
  left: unset;
  background-image: url("../../images/arrow_right.svg");
}
@media (max-width: 575px) {
  .content_slider > div .cards_rpt .flickity-button.next {
    left: unset !important;
    right: 20px;
  }
}
.content_slider.white {
  background-color: #fff;
}
.content_slider.black {
  background-color: #031422;
}
.content_slider.black > div .intro .section-title .title {
  color: #FFFDE8;
}
.content_slider.black > div .intro .section-title .caption p {
  color: #FFFDE8;
}
.content_slider.black > div .cards_rpt {
  flex: 1;
  padding-bottom: 96px;
}
.content_slider.black > div .cards_rpt .card {
  flex: 1;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  margin-right: 36px;
  width: 42%;
}
@media (max-width: 1200px) {
  .content_slider.black > div .cards_rpt .card {
    width: 80%;
  }
}
@media (max-width: 992px) {
  .content_slider.black > div .cards_rpt .card {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .content_slider.black > div .cards_rpt .card {
    width: 85%;
  }
}
.content_slider.black > div .cards_rpt .card > div {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content_slider.black > div .cards_rpt .card > div .featured-image {
  height: 233px;
  width: 100%;
}
@media (max-width: 575px) {
  .content_slider.black > div .cards_rpt .card > div .featured-image {
    height: 198px;
  }
}
.content_slider.black > div .cards_rpt .card > div .featured-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.content_slider.black > div .cards_rpt .card > div .content_hold {
  min-height: 336px;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.content_slider.black > div .cards_rpt .card > div .content_hold .content_inner {
  margin-bottom: 16px;
}
.content_slider.black > div .cards_rpt .card > div .content_hold .content_inner h4 {
  margin: 0 0 16px;
}
.content_slider.black > div .cards_rpt .card > div .content_hold .content_inner .content p {
  margin: 0;
}
.content_slider.black > div .cards_rpt .card > div .content_hold .btn-holder {
  justify-content: flex-start;
}
.content_slider.black > div .cards_rpt .card > div .content_hold .btn-holder .btn {
  padding: 9px 12px 10px;
}
.content_slider.black > div .cards_rpt .flickity-page-dots {
  position: absolute;
  left: 63px;
  bottom: 17px;
  width: fit-content;
}
@media (max-width: 575px) {
  .content_slider.black > div .cards_rpt .flickity-page-dots {
    left: 50%;
    transform: translate(-50%);
  }
}
.content_slider.black > div .cards_rpt .flickity-button {
  width: 48px;
  height: 48px;
  background-color: #517352;
  background-image: url("../../images/arrow_left.svg");
  background-size: 24px;
  border-radius: 0;
  top: unset;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
}
.content_slider.black > div .cards_rpt .flickity-button:disabled {
  opacity: 1;
  background-color: #CCC;
}
.content_slider.black > div .cards_rpt .flickity-button.next {
  left: unset;
  background-image: url("../../images/arrow_right.svg");
}
@media (max-width: 575px) {
  .content_slider.black > div .cards_rpt .flickity-button.next {
    left: unset !important;
    right: 20px;
  }
}
.content_slider {
  /* 16:9 aspect ratio */
}
.content_slider.landscape > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 16/9;
  max-height: fit-content;
}
.content_slider {
  /* 4:5 aspect ratio */
}
.content_slider.portrait > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 4/5;
  max-height: fit-content;
}
.content_slider {
  /* 1:1 aspect ratio */
}
.content_slider.square > div .cards_rpt .card > div .featured-image {
  height: 100%;
  aspect-ratio: 1/1;
  max-height: fit-content;
}

.room_features {
  background-color: #fff;
}
.room_features > div {
  max-width: 1900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 575px) {
  .room_features > div {
    gap: 24px;
  }
}
.room_features > div .top .section-title {
  gap: 80px;
  flex-direction: row;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .room_features > div .top .section-title {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .room_features > div .top .section-title {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .room_features > div .top .section-title {
    flex-direction: column;
    gap: 20px;
  }
}
.room_features > div .top .section-title h2, .room_features > div .top .section-title .caption {
  width: 50%;
}
@media (max-width: 992px) {
  .room_features > div .top .section-title h2, .room_features > div .top .section-title .caption {
    width: 100%;
  }
}
.room_features > div .top .section-title h2 {
  text-align: center;
  margin-bottom: 0;
}
.room_features > div .top .section-title .caption p {
  text-align: left;
  margin: 0;
}
.room_features > div .bottom .features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 992px) {
  .room_features > div .bottom .features {
    gap: 16px;
  }
}
.room_features > div .bottom .features .feature {
  display: flex;
  gap: 8px;
  align-items: center;
}
.room_features > div .bottom .features .feature .icon {
  height: 48px;
  width: 48px;
  padding: 8px;
}
@media (max-width: 992px) {
  .room_features > div .bottom .features .feature .icon {
    height: 42px;
    width: 42px;
    padding: 10px;
  }
}
@media (max-width: 768px) {
  .room_features > div .bottom .features .feature .icon {
    height: 24px;
    width: 24px;
    padding: 5px;
  }
}
.room_features > div .bottom .features .feature .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.room_features > div .bottom .features .feature p {
  font-family: "termina_bold", serif;
  font-weight: 700;
  font-size: 18px;
}
@media (max-width: 992px) {
  .room_features > div .bottom .features .feature p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .room_features > div .bottom .features .feature p {
    font-size: 16px;
    position: relative;
    top: 4px;
  }
}

.anchored_simple_content {
  background-color: #fff;
}
.anchored_simple_content > div {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 992px) {
  .anchored_simple_content > div {
    flex-direction: column;
    gap: 48px;
  }
}
.anchored_simple_content > div .sidebar div {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .anchored_simple_content > div .sidebar div > h5 {
    cursor: pointer;
    position: relative;
    border: 1px solid black;
    padding: 12px 16px;
    font-family: "termina_regular", sans-serif;
    font-size: 1rem;
  }
}
.anchored_simple_content > div .sidebar div > h5:after {
  position: absolute;
  bottom: calc(50% - 10px);
  right: 12px;
  height: 14px;
  width: 14px;
  background-image: url("../../images/chev_down_blk.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .anchored_simple_content > div .sidebar div > h5:after {
    content: "";
  }
}
.anchored_simple_content > div .sidebar div ul {
  width: 320px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .anchored_simple_content > div .sidebar div ul {
    width: 100%;
    max-height: 0;
    overflow: hidden;
  }
}
@media (max-width: 992px) {
  .anchored_simple_content > div .sidebar div ul.show {
    max-height: 1000px;
  }
}
.anchored_simple_content > div .sidebar div ul li a {
  display: inline-block;
  padding: 12px 16px;
  font-size: 18px;
}
@media (max-width: 992px) {
  .anchored_simple_content > div .sidebar div ul li a {
    font-size: 1rem;
  }
}
.anchored_simple_content > div .sidebar div ul li.h3 a {
  padding-left: 32px;
}
.anchored_simple_content > div .sidebar div ul li.h4 a {
  padding-left: 48px;
}
.anchored_simple_content > div .sidebar div ul li.h5 a {
  padding-left: 64px;
}
.anchored_simple_content > div .sidebar div ul li.h6 a {
  padding-left: 80px;
}
.anchored_simple_content > div .content {
  max-width: 768px;
}
.anchored_simple_content > div .content h2 {
  margin: 16px 0 16px;
}
.anchored_simple_content > div .content h2:first-child {
  margin-top: 0px;
}
.anchored_simple_content > div .content h3 {
  margin: 24px 0 24px;
}
.anchored_simple_content > div .content h4 {
  margin: 24px 0 20px;
}
.anchored_simple_content > div .content h5, .anchored_simple_content > div .content h6 {
  margin: 20px 0 16px;
}
.anchored_simple_content > div .content p img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 48px 0;
}
@media (max-width: 768px) {
  .anchored_simple_content > div .content p img {
    height: 209px;
    margin: 40px 0;
  }
}
.anchored_simple_content > div .content .wp-caption {
  width: 100% !important;
}
.anchored_simple_content > div .content .wp-caption img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin: 48px 0 0;
}
@media (max-width: 768px) {
  .anchored_simple_content > div .content .wp-caption img {
    height: 209px;
    margin: 40px 0 0;
  }
}
.anchored_simple_content > div .content .wp-caption .wp-caption-text {
  margin-top: 8px;
  margin-bottom: 48px;
  padding: 0 8px;
  font-size: 14px;
  border-left: 2px solid #000;
}
@media (max-width: 768px) {
  .anchored_simple_content > div .content .wp-caption .wp-caption-text {
    margin-bottom: 40px;
  }
}
.anchored_simple_content > div .content blockquote {
  margin: 36px 0;
  padding: 0 20px;
  border-left: 2px solid #000;
  font-size: 20px;
  font-style: italic;
}
.anchored_simple_content > div .content blockquote p {
  margin: 0;
}

.image_gallery {
  background-color: #fff;
}
.image_gallery > div {
  padding-left: 4rem;
}
@media (max-width: 992px) {
  .image_gallery > div {
    padding-left: 3rem;
  }
}
@media (max-width: 768px) {
  .image_gallery > div {
    padding-left: 1.25rem;
  }
}
.image_gallery > div .section-title {
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .image_gallery > div .section-title {
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .image_gallery > div .section-title {
    padding-right: 1.25rem;
  }
}
@media (max-width: 650px) {
  .image_gallery > div .section-title {
    align-items: flex-start;
    margin: unset;
  }
}
@media (max-width: 650px) {
  .image_gallery > div .section-title .title {
    text-align: left;
  }
}
@media (max-width: 650px) {
  .image_gallery > div .section-title p {
    text-align: left;
  }
}
@media (max-width: 650px) {
  .image_gallery > div .btn-holder {
    justify-content: flex-start;
  }
}
.image_gallery > div .gallery_hold {
  margin-top: 40px;
}
.image_gallery > div .gallery_hold .image_gallery_slider .image_gallery_slider_img {
  height: 304px;
  width: 304px;
  margin-right: 16px;
  display: block;
}
@media (max-width: 650px) {
  .image_gallery > div .gallery_hold .image_gallery_slider .image_gallery_slider_img {
    height: 144px;
    width: 144px;
  }
}
.image_gallery > div .gallery_hold .image_gallery_slider .image_gallery_slider_img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.image_gallery > div .gallery_hold .image_gallery_slider .flickity-page-dots {
  position: relative;
  bottom: 0;
  margin-top: 68px;
  margin-bottom: 20px;
  padding-right: 4rem;
  width: fit-content;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 768px) {
  .image_gallery > div .gallery_hold .image_gallery_slider .flickity-page-dots {
    padding-right: 20px;
  }
}
@media (max-width: 650px) {
  .image_gallery > div .gallery_hold .image_gallery_slider .flickity-page-dots {
    margin-top: 40px;
  }
}
.image_gallery > div .gallery_hold .image_gallery_slider .flickity-button {
  width: 48px;
  height: 48px;
  background-color: #517352;
  background-image: url("../../images/arrow_left.svg");
  background-size: 24px;
  border-radius: 0;
  top: unset;
  bottom: -18px;
  z-index: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .image_gallery > div .gallery_hold .image_gallery_slider .flickity-button {
    left: 0px !important;
  }
}
.image_gallery > div .gallery_hold .image_gallery_slider .flickity-button:disabled {
  opacity: 1;
  background-color: #CCC;
}
.image_gallery > div .gallery_hold .image_gallery_slider .flickity-button.next {
  left: unset;
  background-image: url("../../images/arrow_right.svg");
}
@media (max-width: 768px) {
  .image_gallery > div .gallery_hold .image_gallery_slider .flickity-button.next {
    left: unset !important;
    right: 20px !important;
  }
}

.call_out > div {
  padding: 24px;
  margin: auto;
  max-width: 1600px;
}
@media (max-width: 992px) {
  .call_out > div {
    padding: 10px;
  }
}
.call_out > div .outer {
  position: relative;
}
.call_out > div .outer > .top, .call_out > div .outer > .right, .call_out > div .outer > .bottom, .call_out > div .outer > .left {
  position: absolute;
  background-color: #031422;
}
.call_out > div .outer > .top, .call_out > div .outer > .bottom {
  height: 1px;
  width: calc(100% - 70px);
  left: 35px;
}
.call_out > div .outer > .top {
  top: 0;
}
.call_out > div .outer > .bottom {
  bottom: 0;
}
.call_out > div .outer > .left, .call_out > div .outer > .right {
  height: calc(100% - 70px);
  width: 1px;
  top: 35px;
}
.call_out > div .outer > .left {
  left: 0;
}
.call_out > div .outer > .right {
  right: 0;
}
.call_out > div .outer .top-left, .call_out > div .outer .top-right, .call_out > div .outer .bottom-left, .call_out > div .outer .bottom-right {
  position: absolute;
  height: 35px;
  width: 35px;
  background-size: contain;
}
.call_out > div .outer .top-left {
  background-image: url("../../images/top-left-corner.svg");
  top: 0;
  left: 0;
}
.call_out > div .outer .top-right {
  background-image: url("../../images/top-right-corner.svg");
  top: 0;
  right: 0;
}
.call_out > div .outer .bottom-left {
  background-image: url("../../images/bottom-left-corner.svg");
  bottom: 0;
  left: 0;
}
.call_out > div .outer .bottom-right {
  background-image: url("../../images/bottom-right-corner.svg");
  bottom: 0;
  right: 0;
}
.call_out > div .outer .inner {
  padding: 56px 80px;
}
@media (max-width: 992px) {
  .call_out > div .outer .inner {
    padding: 90px 40px;
  }
}
@media (max-width: 575px) {
  .call_out > div .outer .inner {
    padding: 120px 26px;
  }
}
.call_out > div .outer .inner > .top, .call_out > div .outer .inner > .right, .call_out > div .outer .inner > .bottom, .call_out > div .outer .inner > .left {
  position: absolute;
  background-color: #031422;
}
.call_out > div .outer .inner > .top, .call_out > div .outer .inner > .bottom {
  height: 1px;
  width: calc(100% - 70px);
  left: 35px;
}
.call_out > div .outer .inner > .top {
  top: 10px;
}
.call_out > div .outer .inner > .bottom {
  bottom: 10px;
}
.call_out > div .outer .inner > .left, .call_out > div .outer .inner > .right {
  height: calc(100% - 70px);
  width: 1px;
  top: 35px;
}
.call_out > div .outer .inner > .left {
  left: 10px;
}
.call_out > div .outer .inner > .right {
  right: 10px;
}
.call_out > div .outer .inner .content {
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .call_out > div .outer .inner .content {
    flex-direction: column;
    gap: 24px;
  }
}
.call_out > div .outer .inner .content > div {
  width: 50%;
}
@media (max-width: 992px) {
  .call_out > div .outer .inner .content > div {
    width: 100%;
  }
}
.call_out > div .outer .inner .content p {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .call_out > div .outer .inner .content p {
    margin-bottom: 16px;
  }
}
.call_out > div .outer .inner .content .btn-holder {
  justify-content: flex-start;
}
.call_out.black {
  background-color: #031422;
}
.call_out.red {
  background-color: #721121;
}
.call_out.red > div .outer .inner .content .btn-holder .btn:hover {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
  color: #031422;
}
.call_out.red > div .outer .inner .content .btn-holder .btn:hover:before, .call_out.red > div .outer .inner .content .btn-holder .btn:hover:after {
  background-color: #FFFDE8;
  border-color: #FFFDE8;
}
.call_out.black > div .outer > .top, .call_out.black > div .outer > .right, .call_out.black > div .outer > .bottom, .call_out.black > div .outer > .left, .call_out.red > div .outer > .top, .call_out.red > div .outer > .right, .call_out.red > div .outer > .bottom, .call_out.red > div .outer > .left {
  background-color: #FFFDE8;
}
.call_out.black > div .outer .top-left, .call_out.red > div .outer .top-left {
  background-image: url("../../images/top-left-corner-light.svg");
}
.call_out.black > div .outer .top-right, .call_out.red > div .outer .top-right {
  background-image: url("../../images/top-right-corner-light.svg");
}
.call_out.black > div .outer .bottom-left, .call_out.red > div .outer .bottom-left {
  background-image: url("../../images/bottom-left-corner-light.svg");
}
.call_out.black > div .outer .bottom-right, .call_out.red > div .outer .bottom-right {
  background-image: url("../../images/bottom-right-corner-light.svg");
}
.call_out.black > div .outer .inner > .top, .call_out.black > div .outer .inner > .right, .call_out.black > div .outer .inner > .bottom, .call_out.black > div .outer .inner > .left, .call_out.red > div .outer .inner > .top, .call_out.red > div .outer .inner > .right, .call_out.red > div .outer .inner > .bottom, .call_out.red > div .outer .inner > .left {
  background-color: #FFFDE8;
}
.call_out.black > div .outer .inner .content > div h2, .call_out.red > div .outer .inner .content > div h2 {
  color: #FFFDE8;
}
.call_out.black > div .outer .inner .content > div p, .call_out.red > div .outer .inner .content > div p {
  color: #FFFDE8;
}

.faqs > div {
  display: flex;
  gap: 80px;
}
@media (max-width: 1200px) {
  .faqs > div {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .faqs > div {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .faqs > div {
    gap: 24px;
  }
}
.faqs > div .content {
  width: 500px;
}
@media (max-width: 1200px) {
  .faqs > div .content {
    width: 400px;
  }
}
@media (max-width: 992px) {
  .faqs > div .content {
    width: 100%;
  }
}
.faqs > div .content .shield {
  margin-bottom: 32px;
  height: 56px;
  width: fit-content;
}
@media (max-width: 992px) {
  .faqs > div .content .shield {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .faqs > div .content .shield {
    height: 40px;
  }
}
.faqs > div .content .shield img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.faqs > div .content .section-title {
  align-items: flex-start;
}
@media (max-width: 575px) {
  .faqs > div .content .section-title h2 {
    margin-bottom: 20px;
  }
}
.faqs > div .content .section-title .caption {
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .faqs > div .content .section-title .caption {
    margin-bottom: 8px;
  }
}
.faqs > div .content .section-title .caption p {
  text-align: left;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  margin: 0;
}
@media only screen and (max-width: 575px) {
  .faqs > div .content .section-title .caption p {
    font-size: 1rem;
  }
}
.faqs > div .content .btn-holder {
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .faqs > div .content .btn-holder {
    width: 100%;
  }
}
.faqs > div .faq_list {
  flex: 1;
}
@media (max-width: 992px) {
  .faqs > div .faq_list {
    width: 100%;
  }
}
.faqs > div .faq_list .faq {
  border: 1px solid #000;
  margin-bottom: 16px;
}
.faqs > div .faq_list .faq .question {
  cursor: pointer;
  padding: 20px 24px;
  position: relative;
}
@media (max-width: 575px) {
  .faqs > div .faq_list .faq .question {
    padding: 16px 20px;
  }
}
.faqs > div .faq_list .faq .question h6 {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .faqs > div .faq_list .faq .question h6 {
    padding-right: 36px;
  }
}
.faqs > div .faq_list .faq .question .icon {
  position: absolute;
  height: 20px;
  width: 18px;
  right: 30px;
  top: calc(50% - 10px);
  transition: 0.3s all ease-in-out;
}
.faqs > div .faq_list .faq .question .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.faqs > div .faq_list .faq .question.ui-state-active .icon {
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.faqs > div .faq_list .faq .answer {
  padding: 16px 24px 20px;
}
.faqs.white {
  background-color: #fff;
}
.faqs.white > div .section-title h2 {
  color: #031422;
}
.faqs.white > div .section-title p {
  color: #031422;
}

.contact_form {
  background-color: #fff;
}
.contact_form > div {
  display: flex;
  gap: 80px;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 1200px) {
  .contact_form > div {
    gap: 32px;
  }
}
@media (max-width: 992px) {
  .contact_form > div {
    flex-direction: column;
  }
}
.contact_form > div .left {
  width: 50%;
}
@media (max-width: 992px) {
  .contact_form > div .left {
    width: 100%;
  }
}
.contact_form > div .left .section-title {
  align-items: flex-start;
  margin-bottom: 32px;
  text-align: left;
}
.contact_form > div .left .section-title h2 {
  text-transform: capitalize;
}
.contact_form > div .left .section-title .caption p {
  font-size: 1.125rem;
}
.contact_form > div .left .section-title .caption p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .contact_form > div .left .section-title .caption p {
    font-size: 1rem;
  }
}
.contact_form > div .right {
  width: 50%;
}
@media (max-width: 992px) {
  .contact_form > div .right {
    width: 100%;
  }
}
.contact_form > div .right .image_hold {
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .contact_form > div .right .image_hold {
    height: 664px;
  }
}
@media (max-width: 768px) {
  .contact_form > div .right .image_hold {
    height: 335px;
  }
}
.contact_form > div .right .image_hold img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ------------------------------------------------------------------------- */
/* FEATURE CONTENT */
/* ------------------------------------------------------------------------- */
.section_cards {
  background-color: #fff;
}
.section_cards > div {
  display: flex;
  gap: 80px;
  align-items: center;
  max-width: 1900px;
  margin: auto;
}
@media (max-width: 1200px) {
  .section_cards > div {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .section_cards > div {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .section_cards > div {
    gap: 24px;
  }
}
.section_cards > div .col-one, .section_cards > div .col-two {
  width: 50%;
}
@media (max-width: 992px) {
  .section_cards > div .col-one, .section_cards > div .col-two {
    width: 100%;
  }
}
.section_cards > div .col-one .section-title {
  align-items: flex-start;
  text-align: left;
}
.section_cards > div .col-one .section-title .caption {
  text-align: left;
}
.section_cards > div .col-one .section-title .caption p {
  font-size: 1.125rem;
}
@media only screen and (max-width: 575px) {
  .section_cards > div .col-one .section-title .caption p {
    font-size: 1rem;
  }
}
.section_cards > div .col-one .btn-holder {
  justify-content: flex-start;
}
.section_cards > div .col-two .img_hold {
  width: 100%;
  height: 640px;
}
@media (max-width: 768px) {
  .section_cards > div .col-two .img_hold {
    height: 348px;
  }
}
.section_cards > div .col-two .img_hold img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.section_cards.left > div {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .section_cards.left > div {
    flex-direction: column;
  }
}

.full_gallery {
  background-color: #fff;
}
.full_gallery > div {
  max-width: 1900px;
  margin: auto;
}
.full_gallery > div .section-title {
  max-width: 768px;
  margin: auto;
}
.full_gallery > div .section-title .caption p:last-child {
  margin-bottom: 0;
}
.full_gallery > div .filter-bar {
  margin-top: 40px;
  margin-bottom: 40px;
}
.full_gallery > div .filter-bar .gallery-filter-tags-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .full_gallery > div .filter-bar .gallery-filter-tags-list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  .full_gallery > div .filter-bar .gallery-filter-tags-list {
    justify-content: flex-start;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
}
.full_gallery > div .filter-bar .gallery-filter-tags-list li a {
  padding: 8px 16px;
  border: 1px solid transparent;
  display: inline-block;
}
.full_gallery > div .filter-bar .gallery-filter-tags-list li a.active {
  border: 1px solid #000;
}
.full_gallery > div .gallery > div {
  column-count: 2;
  column-gap: 32px;
}
@media (max-width: 768px) {
  .full_gallery > div .gallery > div {
    column-count: 1;
  }
}
.full_gallery > div .gallery > div .image {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
  display: block;
}
.full_gallery > div .gallery > div .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.full_gallery > div .view-all-button {
  margin: 40px auto 0;
}

.spaces_loop {
  background-color: #fff;
}
.spaces_loop > div {
  max-width: 1900px;
  margin: auto;
}
.spaces_loop > div .filter-bar {
  margin-top: 48px;
  margin-bottom: 0px;
}
.spaces_loop > div .filter-bar > div .spaces-filter-tags-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .spaces_loop > div .filter-bar > div .spaces-filter-tags-list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  .spaces_loop > div .filter-bar > div .spaces-filter-tags-list {
    justify-content: flex-start;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
}
.spaces_loop > div .filter-bar > div .spaces-filter-tags-list li a {
  padding: 8px 16px;
  border: 1px solid transparent;
  display: inline-block;
}
.spaces_loop > div .filter-bar > div .spaces-filter-tags-list li a.active {
  border: 1px solid #000;
}
.spaces_loop > div .space_loop .space_block > div .image_navigation {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (max-width: 992px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.spaces_loop > div .space_loop .space_block > div .image_navigation > div {
  flex-direction: row-reverse;
}
.spaces_loop > div .space_loop .space_block > div .image_navigation > div .left > div {
  padding-left: 80px;
  padding-right: 0;
}
@media (max-width: 992px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation > div .left > div {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation > div {
    flex-direction: column;
    gap: 40px;
  }
}
.spaces_loop > div .space_loop .space_block > div .image_navigation:nth-of-type(2n) > div {
  flex-direction: row;
}
.spaces_loop > div .space_loop .space_block > div .image_navigation:nth-of-type(2n) > div .left > div {
  padding-right: 80px;
  padding-left: 0;
}
@media (max-width: 992px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation:nth-of-type(2n) > div .left > div {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .spaces_loop > div .space_loop .space_block > div .image_navigation:nth-of-type(2n) > div {
    flex-direction: column;
    gap: 40px;
  }
}

/* ------------------------------------------------------------------------- *
/* 5. POSTS */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- *
/* 6. CPT */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- *
/* TESTIMONIALS */
/* ------------------------------------------------------------------------- */
.testimonials > div {
  max-width: 1900px;
  margin: auto;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .testimonials > div {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media (max-width: 768px) {
  .testimonials > div {
    padding-left: 1.25rem;
    padding-right: 0;
  }
}
.testimonials > div .section-title {
  max-width: 768px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .testimonials > div .section-title {
    align-items: flex-start;
  }
}
.testimonials > div .section-title h2 {
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .testimonials > div .section-title h2 {
    text-align: left;
  }
}
.testimonials > div .section-title .caption {
  margin: 0;
}
.testimonials > div .section-title .caption p {
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials > div .section-title .caption p {
    text-align: left;
  }
}
.testimonials > div .testimonial_slider {
  height: 100%;
}
.testimonials > div .testimonial_slider .testimonial {
  height: auto;
  width: calc(33.3333333333% - 32px);
  background-color: #fff;
  min-height: 355px;
  margin-right: 32px;
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  margin-bottom: 2px;
}
@media (max-width: 1200px) {
  .testimonials > div .testimonial_slider .testimonial {
    width: calc(50% - 32px);
    min-height: 290px;
  }
}
@media (max-width: 768px) {
  .testimonials > div .testimonial_slider .testimonial {
    width: 85%;
    margin-right: 24px;
  }
}
.testimonials > div .testimonial_slider .testimonial > div {
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 575px) {
  .testimonials > div .testimonial_slider .testimonial > div {
    padding: 24px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .testimonials > div .testimonial_slider .testimonial > div .review {
    padding-bottom: 4px;
  }
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer {
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 575px) {
  .testimonials > div .testimonial_slider .testimonial > div .reviewer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .left .reviewer_image {
  height: 56px;
  width: 56px;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .left .reviewer_image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .right h6 {
  font-size: 1rem;
  margin: 0;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .right p {
  margin: 0;
}
.testimonials > div .testimonial_slider .flickity-page-dots {
  position: relative;
  bottom: 0;
  margin-top: 68px;
  margin-bottom: 20px;
}
@media (max-width: 650px) {
  .testimonials > div .testimonial_slider .flickity-page-dots {
    margin-top: 52px;
  }
}
.testimonials > div .testimonial_slider .flickity-button {
  width: 48px;
  height: 48px;
  background-color: #517352;
  background-image: url("../../images/arrow_left.svg");
  background-size: 24px;
  border-radius: 0;
  top: unset;
  bottom: -18px;
  left: calc(50% - 200px);
  z-index: 1;
}
@media (max-width: 650px) {
  .testimonials > div .testimonial_slider .flickity-button {
    left: 0px;
  }
}
.testimonials > div .testimonial_slider .flickity-button:disabled {
  opacity: 1;
  background-color: #CCC;
}
.testimonials > div .testimonial_slider .flickity-button.next {
  left: unset;
  right: calc(50% - 200px);
  background-image: url("../../images/arrow_right.svg");
}
@media (max-width: 768px) {
  .testimonials > div .testimonial_slider .flickity-button.next {
    right: calc(50% - 200px + 20px);
  }
}
@media (max-width: 650px) {
  .testimonials > div .testimonial_slider .flickity-button.next {
    right: 20px;
  }
}

.cpt_archive {
  background-color: #fff;
}
.cpt_archive > div {
  max-width: 1900px;
  margin: auto;
}
.cpt_archive > div .section-title {
  max-width: 768px;
  margin: 0 auto 40px;
}
.cpt_archive > div .section-title .caption p:last-child {
  margin-bottom: 0;
}
.cpt_archive > div .filter-bar {
  margin-top: 40px;
  margin-bottom: 40px;
}
.cpt_archive > div .filter-bar > div .cpt-block-filter-tags-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 575px) {
  .cpt_archive > div .filter-bar > div .cpt-block-filter-tags-list::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 575px) {
  .cpt_archive > div .filter-bar > div .cpt-block-filter-tags-list {
    justify-content: flex-start;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
}
.cpt_archive > div .filter-bar > div .cpt-block-filter-tags-list li a {
  padding: 8px 16px;
  border: 1px solid transparent;
  display: inline-block;
}
.cpt_archive > div .filter-bar > div .cpt-block-filter-tags-list li a.active {
  border: 1px solid #000;
}
.cpt_archive > div .cpt_loop .cpts_cards > div {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card {
  box-shadow: 0px 4px 8px -2px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.06);
  width: calc(33.3333333333% - 32px);
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .cpt_archive > div .cpt_loop .cpts_cards > div .card {
    width: calc(50% - 32px);
  }
}
@media (max-width: 768px) {
  .cpt_archive > div .cpt_loop .cpts_cards > div .card {
    width: 100%;
  }
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .img_hold {
  width: 100%;
  position: relative;
  /*min-height: 277px;*/
  height: 277px;
}
@media (max-width: 768px) {
  .cpt_archive > div .cpt_loop .cpts_cards > div .card .img_hold {
    min-height: 225px;
    height: 225px;
  }
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .img_hold img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .img_hold .category {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 8px;
  background-color: #FFFDE8;
  font-family: "termina_bold", serif;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content {
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content > div .date_loc {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content > div .date_loc p {
  margin: 0;
  display: flex;
  gap: 8px;
  align-items: center;
  line-height: 100%;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content > div .date_loc p .icon {
  display: inline-block;
  margin-top: 3px;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content > div h5 {
  margin-bottom: 8px;
}
.cpt_archive > div .cpt_loop .cpts_cards > div .card .content .btn {
  margin-top: 24px;
}
.cpt_archive > div .view-all-button {
  margin: 40px auto 0;
}
.cpt_archive {
  /* 16:9 aspect ratio */
}
.cpt_archive.landscape > div .cpt_loop .cpts_cards > div .card .img_hold {
  height: 100%;
  aspect-ratio: 16/9;
  max-height: fit-content;
}
.cpt_archive {
  /* 4:5 aspect ratio */
}
.cpt_archive.portrait > div .cpt_loop .cpts_cards > div .card .img_hold {
  height: 100%;
  aspect-ratio: 4/5;
  max-height: fit-content;
}
.cpt_archive {
  /* 1:1 aspect ratio */
}
.cpt_archive.square > div .cpt_loop .cpts_cards > div .card .img_hold {
  height: 100%;
  aspect-ratio: 1/1;
  max-height: fit-content;
}

/* ------------------------------------------------------------------------- *
/* 7. PLUGINS */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- *
/* GRAVITY FORM */
/* ------------------------------------------------------------------------- */
.gform_wrapper .gform_body .gform_fields {
  row-gap: 24px;
}
.gform_wrapper .gform_body .gform_fields .gfield label {
  font-family: "termina_regular", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #031422;
}
.gform_wrapper .gform_body .gform_fields .gfield input {
  height: 48px;
  padding: 12px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 0;
  font-size: 1rem;
  font-family: "termina_regular", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #666;
}
.gform_wrapper .gform_body .gform_fields .gfield input::placeholder {
  color: #666;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_select {
  position: relative;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_select:after {
  content: "";
  position: absolute;
  right: 12px;
  width: 20px;
  height: 12px;
  top: calc(50% - 4px);
  background-image: url("../../images/chev_down_blk.svg");
  background-size: 16px;
  background-repeat: no-repeat;
  pointer-events: none;
}
.gform_wrapper .gform_body .gform_fields .gfield select {
  height: 48px;
  padding: 12px;
  border: 1px solid #031422;
  background: #fff;
  border-radius: 0;
  font-size: 1rem;
  font-family: "termina_regular", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #031422;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  height: 180px;
  min-height: unset;
  padding: 12px;
  border: 1px solid #031422;
  background: #fff;
  border-radius: 0;
  font-size: 1rem;
  font-family: "termina_regular", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #031422;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
  color: #031422;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent input {
  height: 18px;
  width: 18px;
  padding: 0;
  margin-top: 1px;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label {
  font-family: "termina_regular", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
  margin-left: 6px;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a {
  font-family: "termina_regular", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
  position: relative;
  display: inline-block;
  width: fit-content;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 2px;
  left: 0;
  background-color: #031422;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.2s ease-in-out;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a:hover:after {
  visibility: visible;
  transform: scaleX(1);
}
.gform_wrapper .gform_footer {
  margin-top: 24px;
}
.gform_wrapper .gform_footer button {
  font-family: "termina_bold", serif !important;
  display: flex !important;
  align-items: center !important;
  color: #fff !important;
  justify-content: center !important;
  border: 1px solid #517352 !important;
  background-color: #517352 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 100% !important;
  text-transform: uppercase !important;
  width: fit-content !important;
  padding: 9px 24px 10px !important;
  height: 44px !important;
  vertical-align: middle !important;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
  text-align: center !important;
  text-decoration: none !important;
  position: relative !important;
  margin: 0 5px !important;
  border-radius: unset !important;
}
.gform_wrapper .gform_footer button:before {
  content: "" !important;
  position: absolute;
  transition: all 0.3s ease-in-out !important;
  height: 30px;
  width: 4px;
  background-color: #517352;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  border-left: 1px solid #517352;
  border-top: 1px solid #517352;
  border-bottom: 1px solid #517352;
}
.gform_wrapper .gform_footer button:after {
  content: "" !important;
  position: absolute;
  transition: all 0.3s ease-in-out !important;
  height: 30px;
  width: 4px;
  background-color: #517352;
  top: 50%;
  transform: translateY(-50%);
  right: -5px;
  border-right: 1px solid #517352;
  border-top: 1px solid #517352;
  border-bottom: 1px solid #517352;
}
.gform_wrapper .gform_footer button:hover {
  background-color: #721121 !important;
  border-color: #721121 !important;
}
.gform_wrapper .gform_footer button:hover:before, .gform_wrapper .gform_footer button:hover:after {
  background-color: #721121 !important;
  border-color: #721121 !important;
}

.slide-menu .gform_wrapper {
  margin-top: 139px;
  padding: 0 64px 67px 40px;
  background-color: #FFFDE8;
}
@media (max-width: 992px) {
  .slide-menu .gform_wrapper {
    margin-top: 40px;
    padding: 0 20px 40px;
  }
}
.slide-menu .gform_wrapper .gform_heading {
  margin-bottom: 32px;
}
.slide-menu .gform_wrapper .gform_heading h2 {
  font-family: "termina_regular", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media only screen and (max-width: 575px) {
  .slide-menu .gform_wrapper .gform_heading h2 {
    font-size: 1.25rem;
  }
}

#password-lost-form-wrap {
  max-width: 480px;
  margin: auto;
}
#password-lost-form-wrap .som-password-error-message, #password-lost-form-wrap .som-password-sent-message {
  margin-bottom: 32px;
}
#password-lost-form-wrap #lostpasswordform fieldset, #password-lost-form-wrap #resetpasswordform fieldset {
  border: none;
  padding: 0;
}
#password-lost-form-wrap #lostpasswordform fieldset legend, #password-lost-form-wrap #resetpasswordform fieldset legend {
  display: none;
}
#password-lost-form-wrap #lostpasswordform fieldset .somfrp-lost-pass-form-text, #password-lost-form-wrap #resetpasswordform fieldset .somfrp-lost-pass-form-text {
  padding-bottom: 24px;
}
#password-lost-form-wrap #lostpasswordform fieldset label, #password-lost-form-wrap #resetpasswordform fieldset label {
  display: inline-block;
  margin-bottom: 8px;
}
#password-lost-form-wrap #lostpasswordform fieldset input, #password-lost-form-wrap #resetpasswordform fieldset input {
  height: 48px;
  width: 100%;
  max-width: unset !important;
  padding: 12px;
  font-family: "termina_regular", sans-serif;
  cursor: pointer;
  font-size: 1rem;
}
#password-lost-form-wrap #resetpasswordform .extra-space {
  margin-bottom: 0;
}
#password-lost-form-wrap #resetpasswordform p {
  margin-bottom: 16px;
}

/* ------------------------------------------------------------------------- *
/* COOKIE BOT */
/* ------------------------------------------------------------------------- */
#CybotCookiebotDialog {
  background-color: #FFFDE8 !important;
  color: #000 !important;
}

#CybotCookiebotDialog .CybotCookiebotDialogContentWrapper {
  font-size: 1rem !important;
  font-family: "termina_regular", sans-serif !important;
}

#CybotCookiebotDialog h1,
#CybotCookiebotDialog h2,
#CybotCookiebotDialog h3,
#CybotCookiebotDialog h4,
#CybotCookiebotDialog h5,
#CybotCookiebotDialog h6 {
  font-family: "termina_bold", serif !important;
  font-size: 2rem !important;
}

#CybotCookiebotDialog p {
  font-size: 1rem !important;
}

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  font-family: "termina_bold", serif !important;
  display: flex !important;
  align-items: center !important;
  color: #fff !important;
  justify-content: center !important;
  border: 1px solid #517352 !important;
  background-color: #517352 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 100% !important;
  text-transform: uppercase !important;
  width: fit-content !important;
  padding: 9px 24px 10px !important;
  height: 44px !important;
  vertical-align: middle !important;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer !important;
  text-align: center !important;
  border-radius: 0 !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:after, #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:before,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:after,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:before,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:after,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:before,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:after,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:before {
  display: none !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:hover,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:hover,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:hover {
  background-color: #721121 !important;
  border-color: #721121 !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:active,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:active,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:active,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:active {
  color: #721121 !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:disabled,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:disabled,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:disabled,
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:disabled {
  cursor: not-allowed !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogHide {
  display: none !important;
}

#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a {
  color: #031422 !important;
}

#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a:after {
  color: #031422 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  border-bottom: 1px solid #517352 !important;
  color: #000 !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink {
  font-family: "termina_regular", sans-serif !important;
  font-size: 1rem !important;
}

#CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
  color: #031422 !important;
}

#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton,
#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab {
  color: #031422 !important;
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogDetailBulkConsentCount {
  background-color: #031422 !important;
}

#CybotCookiebotDialog #CybotCookiebotDialogBodyContentText a,
#CybotCookiebotDialog #CybotCookiebotDialogBodyLevelButtonIABHeaderViewPartnersLink,
#CybotCookiebotDialog #CybotCookiebotDialogDetailBulkConsentList dt a,
#CybotCookiebotDialog #CybotCookiebotDialogDetailFooter a,
#CybotCookiebotDialog .CybotCookiebotDialogBodyLevelButtonIABDescription a,
#CybotCookiebotDialog .CybotCookiebotDialogDetailBodyContentCookieLink,
#CybotCookiebotDialogDetailBodyContentTextAbout a {
  color: #031422 !important;
}

#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount) {
  color: #517352 !important;
}

#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentCookieContainerButton:hover,
#CybotCookiebotDialog .CookieCard .CybotCookiebotDialogDetailBodyContentIABv2Tab:hover,
#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount):hover {
  color: #031422 !important;
}

#CookiebotWidget .CookiebotWidget-logo svg circle {
  fill: #031422 !important;
}

#CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #031422 !important;
}

#CybotCookiebotDialogTabContent input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #031422 !important;
}

#CybotCookiebotDialog.CybotEdge #CybotCookiebotDialogBodyEdgeMoreDetails a:hover,
#CybotCookiebotDialogBodyLevelButtonsSelectPane label:not([for=CybotCookiebotDialogBodyLevelButtonNecessary]) .CybotCookiebotDialogBodyLevelButtonDescription:hover {
  color: rgba(69, 85, 96, 0.8196078431) !important;
}

.CybotCookiebotFader, .CybotCookiebotFader.CybotCookiebotDialogActive {
  background-image: linear-gradient(to top, rgb(255, 253, 232), rgba(255, 253, 232, 0.8), rgba(255, 253, 232, 0)) !important;
}
/*# sourceMappingURL=main.css.map */
