/*
  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;
  font-weight: 400;
}

html {
  font-size: 1rem;
}

body {
  font-family: "DM-Sans", sans-serif;
  color: #313131;
  background-color: #F5F4EA;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

h1,
.large {
  font-family: "Safira-March", serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.532px;
}
@media only screen and (max-width: 575px) {
  h1,
  .large {
    font-size: 2.5rem;
    letter-spacing: unset;
  }
}

h2 {
  font-family: "Safira-March", serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-family: "Safira-March", serif;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-family: "Safira-March", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-family: "Safira-March", serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 140%;
  letter-spacing: 2px;
}
@media only screen and (max-width: 575px) {
  h5 {
    font-size: 1.125rem;
  }
}
h5.subheading {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-transform: capitalize;
  letter-spacing: unset;
  margin-bottom: 16px;
}

h6 {
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  font-weight: 600;
  line-height: 120%;
}
@media only screen and (max-width: 575px) {
  h6 {
    font-size: 1rem;
  }
}

p {
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}

p.medium {
  font-family: "DM-Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  p.medium {
    font-size: 1rem;
  }
}

p.small {
  font-family: "DM-Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}

a {
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}

a.small {
  font-family: "DM-Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
}

/****************************************************/
/*** BUTTONS ****************************************/
/****************************************************/
.btn,
button,
button[type=submit],
input[type=submit] {
  display: flex;
  align-items: center;
  color: #806852;
  justify-content: center;
  border: 1px solid #806852;
  border-radius: 12px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 4px;
  text-transform: uppercase;
  width: fit-content;
  padding: 13px 24px 12px;
  max-height: 48px;
  vertical-align: middle;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.btn:hover,
button:hover,
button[type=submit]:hover,
input[type=submit]:hover {
  background-color: #6B7A5E;
  color: #FFFFFF;
}
.btn.white,
button.white,
button[type=submit].white,
input[type=submit].white {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.btn.white:hover,
button.white:hover,
button[type=submit].white:hover,
input[type=submit].white:hover {
  background-color: #6B7A5E;
  border-color: #6B7A5E;
}
.btn.cream,
button.cream,
button[type=submit].cream,
input[type=submit].cream {
  background-image: linear-gradient(#9C8256, #9C8256), linear-gradient(transparent, transparent);
  border-color: #F5F4EA;
  color: #F5F4EA;
}
.btn.cream:hover,
button.cream:hover,
button[type=submit].cream:hover,
input[type=submit].cream:hover {
  color: #F5F4EA;
  border-color: #9C8256;
}
.btn.solid,
button.solid,
button[type=submit].solid,
input[type=submit].solid {
  color: #FFFFFF;
  background-color: #9C8256;
  background-color: #806852;
}
.btn.solid:hover,
button.solid:hover,
button[type=submit].solid:hover,
input[type=submit].solid:hover {
  background-color: #6B7A5E;
}
.btn.solid.white,
button.solid.white,
button[type=submit].solid.white,
input[type=submit].solid.white {
  background-color: #FFFFFF;
  color: #313131;
}
.btn.solid.white:hover,
button.solid.white:hover,
button[type=submit].solid.white:hover,
input[type=submit].solid.white:hover {
  background-color: #6B7A5E;
}
.btn.link,
button.link,
button[type=submit].link,
input[type=submit].link {
  color: #FFFFFF;
  position: relative;
  border: none;
  padding: 0;
  background-color: transparent;
}
.btn.link:hover::after,
button.link:hover::after,
button[type=submit].link:hover::after,
input[type=submit].link:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 4px);
  height: 1px;
  background-color: #FFFFFF;
}
.btn.link.dark,
button.link.dark,
button[type=submit].link.dark,
input[type=submit].link.dark {
  color: #313131;
}
.btn.link.dark:hover::after,
button.link.dark:hover::after,
button[type=submit].link.dark:hover::after,
input[type=submit].link.dark:hover::after {
  background-color: #313131;
}

/* Corner Images */
.image.corner {
  position: relative;
}
.image.corner:before {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  position: absolute;
  top: -1px;
  left: -1px;
}
.image.corner.brown:before {
  background-image: url("../../images/corner-brown.svg");
}
.image.corner.cream:before {
  background-image: url("../../images/corner-cream.svg");
}
.image.corner.green:before {
  background-image: url("../../images/corner-green.svg");
}

blockquote p {
  color: #313131;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  padding: 0 20px;
  border-left: 1px solid #CBBFB4;
}

/* ------------------------------------------------------------------------- *
/*  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;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 575px) {
  .btn-holder {
    gap: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #806852;
  margin-bottom: 24px;
}

p {
  margin-bottom: 24px;
}

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: #313131;
  -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: 7rem;
  padding-bottom: 7rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .p-default {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/*************************************** */
/*** SECTION TITLE ********************* */
/*************************************** */
.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px;
  width: 100%;
  text-align: center;
}

/*************************************** */
/* Plugin / Library overrides / addons */
/*************************************** */
.flickity-page-dots .dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background-color: rgba(239, 237, 218, 0.2);
}
.flickity-page-dots .dot.is-selected {
  background: #F5F4EA;
}

.flickity-button {
  width: 48px;
  height: 48px;
  transform: unset;
  padding: 0;
  background: #F5F4EA;
  background-image: url("../../images/arrow_back.svg");
  background-size: contain;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #CBBFB4;
}
.flickity-button:focus {
  outline: none;
}
.flickity-button:hover {
  background: inherit;
  background-color: #B6A696;
  background-image: url("../../images/arrow_back_dark.svg");
  background-size: contain;
  background-size: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.flickity-button svg {
  display: none;
}
.flickity-button.next {
  background-image: url("../../images/arrow_forward.svg");
}
.flickity-button.next:hover {
  background-image: url("../../images/arrow_forward_dark.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: 999;
  opacity: 1;
  transition: all 0.5s;
}

/*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: #806852 #806852 #806852 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;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  margin: auto;
  z-index: 3;
  height: 72px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  header {
    height: 64px;
  }
}
header .navbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
  background-color: #F5F4EA;
  height: 100%;
  padding: 0 64px;
}
@media (max-width: 768px) {
  header .navbar {
    padding: 0 20px;
  }
}
header .navbar .left {
  left: 64px;
  position: absolute;
}
@media (max-width: 768px) {
  header .navbar .left {
    left: 20px;
  }
}
header .navbar .left a {
  line-height: 1;
}
header .navbar .left a .desktop-logo {
  height: 60px;
}
@media (max-width: 768px) {
  header .navbar .left a .desktop-logo {
    height: 48px;
  }
  header .navbar .left a .desktop-logo .logo {
    height: 48px;
  }
}
header .navbar .menu #menu-header-menu {
  display: flex;
  gap: 32px;
}
header .navbar .menu #menu-header-menu .menu-item:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
header .navbar .menu #menu-header-menu {
  flex-direction: row;
}
header .navbar .menu #menu-header-menu a {
  color: #313131;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}
header .navbar .menu #menu-header-menu .menu-item-has-children {
  padding-right: 14px;
}
header .navbar .menu #menu-header-menu .menu-item-has-children a {
  display: flex;
  gap: 4px;
  position: relative;
}
header .navbar .menu #menu-header-menu .menu-item-has-children a i {
  padding-top: 2px;
  position: absolute;
  right: -14px;
}
header .navbar .menu #menu-header-menu .sub-menu {
  display: none;
  position: absolute;
  padding: 24px;
  margin-left: -24px;
  background-color: #F5F4EA;
  gap: 16px;
  flex-direction: column;
}
header .navbar .menu #menu-header-menu .open-sub-menu .sub-menu {
  display: flex;
}
@media (max-width: 998px) {
  header .navbar .menu #menu-header-menu {
    display: none;
  }
}
header .navbar .menu .hamburger {
  display: none;
  width: 18px;
  height: 24px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
header .navbar .menu .hamburger > a {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
header .navbar .menu .hamburger:before {
  content: "";
  background-image: url("../../images/hamburger/bars.svg");
  background-repeat: no-repeat;
  width: 18px;
  height: 32px;
  display: inline-block;
  position: relative;
  top: calc(50% - 12px);
  transform: translateX(-7.5%);
  transition: all 1.2s ease;
}
@media (max-width: 998px) {
  header .navbar .menu .hamburger {
    display: block;
  }
}
@media (max-width: 998px) {
  header .navbar .right {
    display: none;
  }
}
@media (max-width: 768px) {
  header .navbar .right .btn {
    padding: 9px 20px 8px;
    max-height: 29px;
  }
}
header.scrolling .navbar {
  border-bottom: 2px solid #806852;
}

#mainMenu {
  position: fixed;
  top: -120%;
  z-index: 16;
  width: 100%;
  height: 100%;
  background-color: #F5F4EA;
  display: flex;
  flex-direction: column;
  transition: all 0.6s ease-in-out;
  box-shadow: -10px 3px 12px rgba(0, 0, 0, 0.25);
}
#mainMenu .close {
  position: absolute;
  right: 64px;
  top: 20px;
  border: none;
  background-color: transparent;
  background-image: url(../../images/close.svg);
  background-repeat: no-repeat;
  display: block;
  height: 18px;
  width: 18px;
  padding: 0;
  background-size: contain;
  z-index: 2;
}
@media (max-width: 992px) {
  #mainMenu .close {
    right: 20px;
  }
}
#mainMenu .slide-in-menu {
  display: flex;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  flex-direction: column;
  gap: 24px;
}
#mainMenu .slide-in-menu .left {
  padding: 12px 40px 67px 64px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .left {
    padding: 0;
  }
}
#mainMenu .slide-in-menu .left .slide-logo {
  position: sticky;
  top: 12px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .left .slide-logo {
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1;
  }
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .left .slide-logo > a {
    margin: 12px 20px;
    display: inline-block;
  }
}
@media (max-width: 575px) {
  #mainMenu .slide-in-menu .left .slide-logo > a {
    width: 120px;
  }
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu {
  padding-top: 67px;
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .left .menu-contain .hamburger-menu {
    padding: 132px 20px 48px;
  }
}
@media (max-width: 575px) {
  #mainMenu .slide-in-menu .left .menu-contain .hamburger-menu {
    padding: 84px 20px 48px;
  }
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu li {
  padding: 12px 0;
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu li a {
  font-size: 1.25rem;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 120%;
  color: #313131;
  text-transform: uppercase;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 575px) {
  #mainMenu .slide-in-menu .left .menu-contain .hamburger-menu li a {
    font-size: 1.125rem;
  }
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu .menu-item-has-children .sub-menu {
  padding: 12px 0 0 20px;
  display: none;
}
#mainMenu .slide-in-menu .left .menu-contain .hamburger-menu .menu-item-has-children.open-sub-menu .sub-menu {
  display: block;
}
#mainMenu .slide-in-menu .right {
  padding: 0 64px;
}
@media (max-width: 992px) {
  #mainMenu .slide-in-menu .right {
    padding: 0 20px;
  }
  #mainMenu .slide-in-menu .right a {
    width: 100% !important;
  }
}
#mainMenu.slide-in {
  top: 0 !important;
}

/* ------------------------------------------------------------------------- *
/* FOOTER */
/* ------------------------------------------------------------------------- */
footer > div {
  background-color: #F5F4EA;
  padding: 80px 64px 64px;
}
@media (max-width: 1200px) {
  footer > div {
    padding: 80px 80px 64px;
  }
}
@media (max-width: 575px) {
  footer > div {
    padding: 48px 20px;
  }
}
footer > div .top {
  width: 100%;
  display: flex;
  gap: 128px;
  justify-content: space-between;
}
@media (max-width: 992px) {
  footer > div .top {
    flex-wrap: wrap;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #CBBFB4;
  }
}
footer > div .top .left {
  width: 45%;
}
@media (max-width: 992px) {
  footer > div .top .left {
    width: 100%;
  }
}
footer > div .top .left .gform_title {
  display: none;
}
footer > div .top .left form {
  display: flex;
  gap: 16px;
}
footer > div .top .left form .gform-body {
  width: 100%;
}
footer > div .top .left form .gform-footer {
  margin: 0;
}
@media (max-width: 992px) {
  footer > div .top .left form {
    flex-direction: column;
  }
  footer > div .top .left form button {
    width: 100% !important;
    margin-bottom: 16px !important;
  }
}
footer > div .top .right {
  width: 55%;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-direction: row;
}
footer > div .top .right .menu-title {
  font-weight: 600;
}
footer > div .top .right .contact-details .socials {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
footer > div .top .right .contact-details .socials a {
  width: 100%;
  height: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position-y: center;
}
footer > div .top .right .contact-details .socials a span {
  padding-left: 32px;
  color: #806852;
}
@media (max-width: 992px) {
  footer > div .top .right .contact-details .socials {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (max-width: 992px) {
  footer > div .top .right {
    width: 100%;
    grid-template-columns: auto auto;
    display: grid;
    justify-content: normal;
  }
  footer > div .top .right .contact-details {
    grid-column: span 2;
  }
}
footer > div .bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 64px;
}
@media (max-width: 992px) {
  footer > div .bottom {
    flex-direction: column-reverse;
    margin-top: 24px;
  }
}
@media (max-width: 992px) {
  footer > div .bottom .copyright {
    padding: 24px 0 16px;
  }
}
footer > div .bottom .footer-breadcrumbs {
  display: flex;
  gap: 32px;
}
@media (max-width: 575px) {
  footer > div .bottom .footer-breadcrumbs {
    flex-direction: column;
    gap: 16px;
  }
}
footer > div .bottom .footer-breadcrumbs li a {
  position: relative;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ------------------------------------------------------------------------- *
/* 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: #806852;
}
@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;
}

/* ------------------------------------------------------------------------- *
/* 4. PARTIALS */
/* ------------------------------------------------------------------------- */
/* ------------------------ */
/* HERO */
/* ------------------------ */
#hero {
  margin-top: 70px;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 64px;
  }
}
#hero .holder {
  position: relative;
}
#hero .holder .hero-slider {
  width: 100%;
}
#hero .holder .hero-slider .flickity-viewport {
  height: calc(100vh - 70px);
}
@media (max-width: 992px) {
  #hero .holder .hero-slider .flickity-viewport {
    max-height: 314px;
  }
}
#hero .holder .hero-slider .slider-cell {
  height: 100%;
  width: 100%;
  position: relative;
}
#hero .holder .hero-slider .slider-cell img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#hero .holder .hero-slider .slider-cell .overlay-add {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(224, 218, 212, 0.8);
}
#hero .holder .hero-slider .slider-cell .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#hero .holder .hero-slider .slider-cell .icon img {
  max-height: 120px;
  object-fit: contain;
}
#hero .holder .hero-slider .flickity-page-dots {
  bottom: 70px;
}
#hero .holder .hero-slider .flickity-page-dots .dot {
  background: rgba(128, 104, 82, 0.4);
}
#hero .holder .hero-slider .flickity-page-dots .dot.is-selected {
  background: #806852;
}
#hero .holder .video {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 992px) {
  #hero .holder .video {
    max-height: 314px;
  }
}
#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;
}
@media (max-width: 992px) {
  #hero .holder .video .vimeo-wrapper iframe {
    min-height: 314px;
  }
}
#hero .holder .video .vimeo-wrapper .overlay-add {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(224, 218, 212, 0.8);
}
#hero .holder .video .vimeo-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#hero .holder .video .vimeo-wrapper .icon img {
  max-height: 120px;
  object-fit: contain;
}
#hero .holder.home .hero-content {
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
#hero .holder.home .hero-content > div {
  display: flex;
  gap: 80px;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 64px;
}
@media (max-width: 992px) {
  #hero .holder.home .hero-content > div {
    flex-direction: column;
    gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  #hero .holder.home .hero-content > div {
    padding: 40px 20px;
  }
}
#hero .holder.home .hero-content > div h1 {
  max-width: 768px;
  margin: 0 auto;
}
#hero .holder.home .hero-content > div p {
  font-family: "DM-Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  max-width: 768px;
  margin: 0 0 32px;
}
@media only screen and (max-width: 575px) {
  #hero .holder.home .hero-content > div p {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 575px) {
  #hero .holder.home .hero-content > div .btn-holder {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
}
@media only screen and (max-width: 575px) {
  #hero .holder.home .hero-content > div .btn-holder > a {
    width: 100%;
  }
}
#hero .holder .split-hero.maroon {
  background-color: #4E0018;
}
#hero .holder .split-hero.maroon > div h1, #hero .holder .split-hero.maroon > div p {
  color: #F5F4EA;
}
#hero .holder .split-hero > div {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 80px 64px;
  gap: 64px;
}
@media (max-width: 1200px) {
  #hero .holder .split-hero > div {
    gap: 48px;
    padding: 80px 32px;
  }
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div {
    flex-direction: column;
    height: auto;
    padding: 64px 20px;
  }
}
#hero .holder .split-hero > div .left {
  flex: 50%;
}
#hero .holder .split-hero > div .left .hero-content {
  height: 100%;
}
#hero .holder .split-hero > div .left .hero-content > div {
  display: flex;
  gap: 64px;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .left .hero-content > div {
    flex-direction: column;
    gap: 20px;
  }
}
#hero .holder .split-hero > div .left .hero-content > div .icon {
  height: 80px;
  width: 80px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .left .hero-content > div .icon {
    height: 70px;
    width: 70px;
    margin-bottom: 20px;
  }
}
#hero .holder .split-hero > div .left .hero-content > div .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
#hero .holder .split-hero > div .left .hero-content > div h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 120%;
  flex: 1;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .left .hero-content > div h1 {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 575px) {
  #hero .holder .split-hero > div .left .hero-content > div h1 {
    font-size: 2.25rem;
  }
}
#hero .holder .split-hero > div .left .hero-content > div .caption {
  flex: 1;
}
#hero .holder .split-hero > div .left .hero-content > div p {
  margin-bottom: 24px;
}
#hero .holder .split-hero > div .left .hero-content > div .btn-holder {
  gap: 24px;
}
#hero .holder .split-hero > div .right .image {
  height: 720px;
}
#hero .holder .split-hero > div .right .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  #hero .holder .split-hero > div .right .image {
    height: 335px;
  }
}
#hero .holder .short-hero {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 80px 64px;
  justify-content: center;
  align-items: center;
  background-color: #806852;
}
@media (max-width: 992px) {
  #hero .holder .short-hero {
    padding: 40px 20px;
  }
}
#hero .holder .short-hero > div {
  text-align: center;
  max-width: 768px;
  margin: auto;
}
#hero .holder .short-hero > div h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 120%;
  color: #F5F4EA;
}
@media only screen and (max-width: 575px) {
  #hero .holder .short-hero > div h1 {
    font-size: 2.25rem;
  }
}
#hero .holder .short-hero > div p {
  font-family: "DM-Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  color: #F5F4EA;
}
@media only screen and (max-width: 575px) {
  #hero .holder .short-hero > div p {
    font-size: 1rem;
  }
}
#hero .holder .short-hero > div > .btn-holder {
  display: none;
}
#hero .holder .shortbg-hero > div > .hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 112px 64px;
  justify-content: center;
  align-items: center;
  max-width: 768px;
}
@media (max-width: 992px) {
  #hero .holder .shortbg-hero > div > .hero-content {
    padding: 64px 20px;
  }
}
#hero .holder .shortbg-hero > div > .hero-content .subtitle {
  display: none;
}
#hero .holder .shortbg-hero > div > .hero-content h1 {
  font-size: 3rem;
  font-weight: 500;
  line-height: 120%;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  #hero .holder .shortbg-hero > div > .hero-content h1 {
    font-size: 2.25rem;
  }
}
#hero .holder .shortbg-hero > div > .hero-content p {
  margin-bottom: 24px;
  font-family: "DM-Sans", sans-serif;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  color: #FFFFFF;
}
@media only screen and (max-width: 575px) {
  #hero .holder .shortbg-hero > div > .hero-content p {
    font-size: 1rem;
  }
}
#hero .holder .shortbg-hero > div > .hero-content > .btn-holder {
  display: none;
}

.featured_cards {
  background-color: #6B7A5E;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 992px) {
  .featured_cards {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.featured_cards > div .intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .featured_cards > div .intro {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.featured_cards > div .intro .section-title {
  flex-direction: row;
  gap: 80px;
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .featured_cards > div .intro .section-title {
    flex-direction: column;
    gap: 20px;
  }
}
.featured_cards > div .intro .section-title h2 {
  text-align: left;
  color: #FFFFFF;
  flex: 50%;
  margin-bottom: 0;
}
.featured_cards > div .intro .section-title .caption {
  text-align: left;
  color: #FFFFFF;
  flex: 50%;
}
.featured_cards > div .intro .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .featured_cards > div .intro .section-title .caption p {
    font-size: 1rem;
  }
}
.featured_cards > div .intro .btn-hold {
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .featured_cards > div .intro .btn-hold {
    min-width: unset;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .featured_cards > div .intro .btn-hold .btn {
    width: 100%;
  }
}
.featured_cards > div .cards_slider_rpt {
  margin-left: calc(4rem - 24px);
  margin-right: calc(4rem - 24px);
}
@media (max-width: 768px) {
  .featured_cards > div .cards_slider_rpt {
    margin-left: calc(1.25rem - 24px);
    margin-right: calc(1.25rem - 24px);
  }
}
.featured_cards > div .cards_slider_rpt .card_content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 33.3333333333%;
}
@media (max-width: 992px) {
  .featured_cards > div .cards_slider_rpt .card_content {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .featured_cards > div .cards_slider_rpt .card_content {
    width: 100%;
  }
}
.featured_cards > div .cards_slider_rpt .card_content a {
  display: inline-block;
  padding: 0 24px;
  height: 100%;
  width: 100%;
  min-height: 400px;
}
@media (max-width: 575px) {
  .featured_cards > div .cards_slider_rpt .card_content a {
    min-height: unset;
  }
}
.featured_cards > div .cards_slider_rpt .card_content a .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}
.featured_cards > div .cards_slider_rpt .card_content a .image:before {
  background-image: url("../../images/corner-green.svg");
}
.featured_cards > div .cards_slider_rpt .card_content a .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.featured_cards > div .cards_slider_rpt .card_content a .title {
  margin-bottom: 16px;
  color: #FFFFFF;
}
.featured_cards > div .cards_slider_rpt .card_content a .caption {
  color: #FFFFFF;
  margin-bottom: 24px;
}
.featured_cards > div .cards_slider_rpt .flickity-viewport {
  margin-bottom: 75px;
}
.featured_cards > div .cards_slider_rpt .flickity-button {
  bottom: -96px;
  top: unset;
}
@media (max-width: 768px) {
  .featured_cards > div .cards_slider_rpt .flickity-button {
    bottom: -80px;
  }
}
.featured_cards > div .cards_slider_rpt .flickity-button.previous {
  left: calc(50% - 120px);
}
.featured_cards > div .cards_slider_rpt .flickity-button.next {
  right: calc(50% - 120px);
}
.featured_cards > div .cards_slider_rpt .flickity-page-dots {
  top: unset;
  bottom: -80px;
  width: unset;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .featured_cards > div .cards_slider_rpt .flickity-page-dots {
    bottom: -64px;
  }
}
.featured_cards.custom .cards_slider_rpt:not(.flickity-enabled) {
  display: flex;
}
.featured_cards.view_more .view-more {
  display: none;
  margin: 0 auto;
}
.featured_cards.view_more .view-more.hide {
  display: none !important;
}
.featured_cards.view_more.has-more-cards .view-more {
  display: flex;
}
@media (max-width: 992px) {
  .featured_cards.view_more.has-more-cards .view-more {
    display: none;
  }
}
@media (max-width: 992px) {
  .featured_cards.view_more.has-more-cards-mobile .view-more {
    display: flex;
  }
}
.featured_cards.view_more .cards_slider_rpt {
  display: grid;
  gap: 48px 0;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .featured_cards.view_more .cards_slider_rpt {
    gap: 32px 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .featured_cards.view_more .cards_slider_rpt {
    grid-template-columns: repeat(1, 1fr);
  }
}
.featured_cards.view_more .cards_slider_rpt .card_content {
  width: 100%;
}
.featured_cards.view_more .cards_slider_rpt.limit-6:not(.show-all) .card_content:nth-child(n+7) {
  display: none;
}
@media (max-width: 992px) {
  .featured_cards.view_more .cards_slider_rpt.limit-4:not(.show-all) .card_content:nth-child(n+5) {
    display: none;
  }
}
.featured_cards.brown {
  background-color: #806852;
}
.featured_cards.brown > div .cards_slider_rpt .card_content .image.corner:before {
  background-image: url("../../images/corner-brown.svg");
}

.featured_cards_2_col > div {
  padding: 80px 64px;
  background-color: #806852;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .featured_cards_2_col > div {
    padding: 48px 24px;
  }
}
.featured_cards_2_col > div .top .section-title {
  max-width: 768px;
  margin: auto;
}
.featured_cards_2_col > div .top .section-title .subheading,
.featured_cards_2_col > div .top .section-title .title,
.featured_cards_2_col > div .top .section-title .caption {
  color: #F5F4EA;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt {
  height: 320px;
  width: calc(100% - 112px);
  margin: 0 auto;
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt {
    height: 500px;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-viewport {
  height: 320px !important;
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-viewport {
    height: 500px !important;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content {
  height: 100%;
  width: 50%;
  position: relative;
  display: flex;
  padding: 0 16px;
}
@media (max-width: 992px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt .card_content {
    width: 100%;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .image {
  width: 50%;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content {
  width: 50%;
  min-width: 270px;
  background-color: #E0DAD4;
  border-radius: 0 8px 8px 0;
  padding: 24px;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content .subheading,
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content .title,
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content .caption {
  color: #313131;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content .title {
  margin-bottom: 8px;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content .btn {
  margin-top: 24px;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt {
  /* Mobile */
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt {
    width: 100%;
  }
  .featured_cards_2_col > div .bottom .cards_slider_rpt .card_content {
    flex-direction: column;
    padding: 0;
  }
  .featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .image {
    width: 100%;
    max-height: 250px;
  }
  .featured_cards_2_col > div .bottom .cards_slider_rpt .card_content .content {
    width: 100%;
    border-radius: 0 0 8px 8px;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-button {
  top: 50%;
  transform: translateY(-50%);
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-button.previous {
  left: -56px;
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-button.next {
  right: -56px;
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-button {
    display: none;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-page-dots {
  position: static;
  margin-top: 48px;
  width: unset;
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt .flickity-page-dots {
    margin-top: 20px;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt.flickity-enabled {
  margin-bottom: 64px;
}
@media (max-width: 575px) {
  .featured_cards_2_col > div .bottom .cards_slider_rpt.flickity-enabled {
    margin-bottom: 32px;
  }
}
.featured_cards_2_col > div .bottom .cards_slider_rpt:not(.flickity-enabled) {
  display: flex;
  width: 100%;
}

/* ------------------------------------------------------------------------- */
/* FEATURE CONTENT */
/* ------------------------------------------------------------------------- */
.long-text {
  background-image: url("../../images/flower.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  background-position-x: 64px;
}
@media (max-width: 992px) {
  .long-text {
    background-size: 80%;
    background-position-x: -100px;
  }
}
@media (max-width: 575px) {
  .long-text {
    background-size: 120%;
  }
}
.long-text.flower-right {
  background-position-x: 60%;
}
.long-text > div {
  display: flex;
  gap: 80px;
  justify-content: center;
}
@media (max-width: 1200px) {
  .long-text > div {
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .long-text > div {
    flex-direction: column;
  }
}
.long-text > div .col-one, .long-text > div .col-two {
  width: 50%;
}
@media (max-width: 992px) {
  .long-text > div .col-one, .long-text > div .col-two {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .long-text > div .col-one {
    height: 235px;
  }
}
.long-text > div .col-one.corner:before {
  background-image: url("../../images/corner-cream.svg");
}
.long-text > div .col-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.long-text > div .col-two .section-title {
  align-items: flex-start;
}
.long-text > div .col-two .section-title .subheading {
  text-align: left;
  width: 100%;
  font-family: "Safira-March", serif;
}
.long-text > div .col-two .section-title h2 {
  text-align: left;
}
@media (max-width: 575px) {
  .long-text > div .col-two .section-title h2 {
    margin-bottom: 20px;
  }
}
.long-text > div .col-two .section-title .caption {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .long-text > div .col-two .section-title .caption {
    margin-bottom: 24px;
  }
}
.long-text > div .col-two .section-title .caption p {
  text-align: left;
}
.long-text > div .col-two .section-title .caption ul {
  list-style-type: unset;
}
.long-text > div .col-two .section-title .caption ul li {
  text-align: left;
  margin-left: 20px;
}
.long-text > div .col-two .btn-holder {
  justify-content: flex-start;
}
.long-text.green {
  position: relative;
  background-color: #6B7A5E;
  background-image: none;
}
.long-text.green::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/flower.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  background-position-x: 64px;
  opacity: 0.05;
  pointer-events: none;
}
@media (max-width: 992px) {
  .long-text.green::before {
    background-size: 80%;
    background-position-x: -100px;
  }
}
@media (max-width: 575px) {
  .long-text.green::before {
    background-size: 120%;
  }
}
.long-text.green > div {
  position: relative;
  z-index: 1;
}
.long-text.green > div .col-one.corner:before {
  background-image: url("../../images/corner-green.svg");
}
.long-text.green > div .col-two .section-title .subheading,
.long-text.green > div .col-two .section-title h2,
.long-text.green > div .col-two .section-title .caption p {
  color: #F5F4EA;
}
.long-text.green > div .col-two .btn.solid.white:hover {
  background-color: transparent;
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.long-text.green > div .col-two .btn.white:hover {
  background-color: #FFFFFF;
  color: #313131;
  border-color: #FFFFFF;
}
.long-text.green.flower-right::before {
  background-position-x: 60%;
}
.long-text.right > div {
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .long-text.right > div {
    flex-direction: column-reverse;
  }
}

.featured_content_variation > div {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 992px) {
  .featured_content_variation > div {
    gap: 48px;
  }
}
@media (max-width: 575px) {
  .featured_content_variation > div {
    gap: 32px;
  }
}
.featured_content_variation > div .title-section .section-title {
  align-items: flex-start;
}
.featured_content_variation > div .content-section .repeater {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 992px) {
  .featured_content_variation > div .content-section .repeater {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575px) {
  .featured_content_variation > div .content-section .repeater {
    grid-template-columns: 1fr;
  }
}
.featured_content_variation > div .content-section .repeater .item {
  padding: 16px 24px;
}
.featured_content_variation > div .content-section .repeater .item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 24px;
}
.featured_content_variation > div .content-section .repeater .item .title {
  margin-bottom: 16px;
}
.featured_content_variation {
  /* Icons & Image Type */
}
.featured_content_variation.icons_image .title-section .section-title {
  align-items: center;
}
.featured_content_variation.icons_image .title-section .btn-holder {
  justify-content: center;
}
.featured_content_variation.icons_image .content-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 992px) {
  .featured_content_variation.icons_image .content-section {
    gap: 48px;
  }
}
@media (max-width: 575px) {
  .featured_content_variation.icons_image .content-section {
    gap: 32px;
  }
}
.featured_content_variation.icons_image .content-section .item {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.featured_content_variation.icons_image .content-section .item .caption {
  text-align: center;
}
.featured_content_variation.icons_image .content-section .image {
  height: 768px;
  width: 100%;
}
@media (max-width: 992px) {
  .featured_content_variation.icons_image .content-section .image {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .featured_content_variation.icons_image .content-section .image {
    height: 188px;
  }
}
.featured_content_variation.icons_image .content-section .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.featured_content_variation {
  /* Icons Right Type */
}
.featured_content_variation.icons_right > div {
  flex-direction: row;
  gap: 80px;
}
@media (max-width: 992px) {
  .featured_content_variation.icons_right > div {
    flex-direction: column;
    gap: 48px;
  }
}
.featured_content_variation.icons_right > div .title-section {
  flex: 30%;
  position: sticky;
  height: fit-content;
  top: 150px;
}
@media (max-width: 992px) {
  .featured_content_variation.icons_right > div .title-section {
    position: relative;
    top: 0;
  }
}
.featured_content_variation.icons_right > div .title-section .caption {
  text-align: left;
}
.featured_content_variation.icons_right > div .content-section {
  flex: 70%;
}
.featured_content_variation.icons_right > div .content-section .repeater {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 575px) {
  .featured_content_variation.icons_right > div .content-section .repeater {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.featured_content_variation.icons_right > div .content-section .repeater .item {
  padding: 0;
}
.featured_content_variation.green {
  background-color: #6B7A5E;
}
.featured_content_variation.green .subheading,
.featured_content_variation.green .title,
.featured_content_variation.green .caption {
  color: #FFFFFF;
}

/* ------------------------------------------------------------------------- */
/* SIMPLE CONTENT */
/* ------------------------------------------------------------------------- */
.simple-content {
  overflow: hidden;
  background-color: #A25B45;
}
.simple-content > div {
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.simple-content > div .section-title {
  max-width: 768px;
  margin: 0 auto;
}
.simple-content > div .section-title .subheading {
  color: #FFFFFF;
}
.simple-content > div .section-title .title {
  color: #E3DFBC;
}
.simple-content > div .section-title .caption {
  color: #FFFFFF;
}
.simple-content > div .btn-holder {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .simple-content > div .btn-holder {
    margin-bottom: 32px;
  }
}
.simple-content > div .btn-holder .btn {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.simple-content > div:before {
  content: "";
  position: absolute;
  left: 0;
  top: -7rem;
  width: 50%;
  height: calc(100% + 14rem);
  background-image: url(../../images/blossom30.svg);
  background-repeat: repeat-y;
}
@media (max-width: 992px) {
  .simple-content > div:before {
    display: none;
  }
}
.simple-content > div:after {
  content: "";
  position: absolute;
  top: -14rem;
  right: -20vw;
  width: 50%;
  height: calc(100% + 21rem);
  background-image: url(../../images/blossom30.svg);
  background-repeat: repeat-y;
}
@media (max-width: 768px) {
  .simple-content > div:after {
    left: 50%;
    width: 100%;
  }
}
.simple-content > div p {
  color: #FFFFFF;
}
.simple-content > div .gform_wrapper {
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}
.simple-content > div .gform_wrapper .gform_title,
.simple-content > div .gform_wrapper .gform_description {
  display: none;
}
.simple-content > div .gform_wrapper form {
  width: 80%;
  display: flex;
  gap: 16px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .simple-content > div .gform_wrapper form {
    width: 100%;
    flex-direction: column;
  }
}
.simple-content > div .gform_wrapper form .gform_body {
  width: 100%;
}
.simple-content > div .gform_wrapper form .gform_body .gfield input {
  background: rgba(255, 255, 255, 0.5);
  border-color: #A25B45;
}
.simple-content > div .gform_wrapper form .gform_footer {
  margin-block-start: 0;
}
.simple-content > div .gform_wrapper form .gform_footer button {
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.simple-content > div .gform_wrapper form .gform_footer button:hover {
  border-color: #6B7A5E !important;
}
@media (max-width: 768px) {
  .simple-content > div .gform_wrapper form .gform_footer button {
    width: 100% !important;
  }
}
.simple-content.green {
  background-color: #6B7A5E;
}
.simple-content.green > div .title, .simple-content.green > div p {
  color: #FFFFFF;
}
.simple-content.green > div .gform_wrapper form .gform_body .gfield input {
  border-color: #334A20;
}
.simple-content.green > div .gform_wrapper form .gform_footer button:hover {
  background-color: #FFFFFF !important;
  color: #334A20 !important;
  border-color: #FFFFFF !important;
}

.map > .top {
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .map > .top {
    flex-direction: column;
    gap: 48px;
  }
}
.map > .top .left {
  width: 60%;
}
@media (max-width: 992px) {
  .map > .top .left {
    width: 100%;
  }
}
.map > .top .left .section-title {
  align-items: flex-start;
}
.map > .top .left .section-title .title {
  margin-bottom: 16px;
}
.map > .top .left .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .map > .top .left .section-title .caption p {
    font-size: 1rem;
  }
}
.map > .top .right {
  width: 40%;
}
@media (max-width: 992px) {
  .map > .top .right {
    width: 100%;
  }
}
.map > .top .right .contact_details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map > .top .right .contact_details > div {
  display: flex;
  flex-direction: column;
}
.map > .top .right .contact_details > div .icon {
  height: 24px;
  width: 24px;
  margin-right: 16px;
  padding-left: 40px;
  display: inline-block;
  background-repeat: no-repeat;
}
.map > .top .right .contact_details > div .icon.mail {
  background-image: url("../../images/envelope.svg");
}
.map > .top .right .contact_details > div .icon.phone {
  background-image: url("../../images/phone.svg");
}
.map > .top .right .contact_details > div .icon.location {
  background-image: url("../../images/map.svg");
}
.map > .top .right .contact_details > div .icon h5 {
  font-weight: 400;
}
.map > .top .right .contact_details > div a {
  display: inline-block;
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  padding-left: 40px;
}
.map .bottom {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .map .bottom {
    margin-top: 32px;
  }
}
.map .bottom #map {
  height: 650px;
}
@media (max-width: 575px) {
  .map .bottom #map {
    height: 400px;
  }
}
.map .bottom #map .gmnoprint {
  display: none;
}

/* ------------------------------------------------------------------------- */
/* SIMPLE CONTENT */
/* ------------------------------------------------------------------------- */
.form-module {
  overflow: hidden;
}
.form-module > div {
  position: relative;
  display: flex;
  gap: 80px;
}
@media (max-width: 992px) {
  .form-module > div {
    flex-direction: column;
    gap: 48px;
  }
}
.form-module > div:after {
  content: "";
  position: absolute;
  left: calc(-50vw + 50%);
  top: 20%;
  width: 100%;
  height: 600px;
  background-image: url(../../images/flower.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 992px) {
  .form-module > div:after {
    top: unset;
    bottom: -40%;
  }
}
.form-module > div .intro {
  flex: 50%;
  z-index: 1;
}
.form-module > div .intro .section-title {
  align-items: flex-start;
}
.form-module > div .intro .section-title .caption {
  text-align: left;
}
.form-module > div .intro .contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-module > div .intro .contact-details .email, .form-module > div .intro .contact-details .telephone, .form-module > div .intro .contact-details .address {
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 32px;
}
.form-module > div .intro .contact-details .email {
  background-image: url("../../images/envelope.svg");
}
.form-module > div .intro .contact-details .telephone {
  background-image: url("../../images/phone.svg");
}
.form-module > div .intro .contact-details .address {
  background-image: url("../../images/map.svg");
}
.form-module > div .content {
  flex: 50%;
  z-index: 1;
}
.form-module > div .content .gform_wrapper .gform_heading {
  display: none;
}
.form-module > div .content .gform_wrapper .gform_footer button {
  background-color: #806852 !important;
  color: #FFFFFF !important;
  border-color: #806852 !important;
}
.form-module > div .content .gform_wrapper .gform_footer button:hover {
  background-color: #6B7A5E !important;
  color: #FFFFFF !important;
  border-color: #6B7A5E !important;
}

.cta_cards > div .card_hold {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .cta_cards > div .card_hold {
    margin-top: 48px;
  }
}
@media (max-width: 575px) {
  .cta_cards > div .card_hold {
    gap: 24px;
  }
}
.cta_cards > div .card_hold .single_card {
  flex: 1;
  height: 630px;
  max-width: 450px;
  display: block;
  min-width: 335px;
}
@media (max-width: 575px) {
  .cta_cards > div .card_hold .single_card {
    height: 400px;
  }
}
.cta_cards > div .card_hold .single_card .image-hold {
  height: 100%;
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  display: block;
}
.cta_cards > div .card_hold .single_card .image-hold img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
  display: block;
  transform: scale(1);
}
.cta_cards > div .card_hold .single_card .image-hold:hover img {
  transform: scale(1.1);
}
.cta_cards > div .card_hold .single_card .image-hold .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.cta_cards > div .card_hold .single_card .image-hold .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding: 32px;
}
@media (max-width: 575px) {
  .cta_cards > div .card_hold .single_card .image-hold .content {
    padding: 24px;
  }
}
.cta_cards > div .card_hold .single_card .image-hold .content .subheading {
  margin-bottom: 8px;
  color: #FFFFFF;
}
.cta_cards > div .card_hold .single_card .image-hold .content .title, .cta_cards > div .card_hold .single_card .image-hold .content .caption {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .cta_cards > div .card_hold .single_card .image-hold .content .title {
    margin-bottom: 20px;
  }
}
.cta_cards > div .card_hold .single_card .image-hold .content .btn {
  margin-top: 32px;
}
@media (max-width: 575px) {
  .cta_cards > div .card_hold .single_card .image-hold .content .btn {
    margin-top: 24px;
  }
}

.cta_border {
  padding: 40px;
  background-color: #F9C4A7;
}
@media (max-width: 575px) {
  .cta_border {
    padding: 24px;
  }
}
.cta_border > div {
  border: 1px solid #9C8256;
}
.cta_border > div .content {
  max-width: 768px;
  margin: auto;
  text-align: center;
  padding: 80px 24px;
}
@media (max-width: 575px) {
  .cta_border > div .content {
    padding: 64px 24px;
  }
}
.cta_border > div .content .icon {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .cta_border > div .content .section-title h2 {
    margin-bottom: 20px;
  }
}
.cta_border > div .content .section-title .caption {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .cta_border > div .content .section-title .caption {
    margin-bottom: 8px;
  }
}
.cta_border > div .content .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .cta_border > div .content .section-title .caption p {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .cta_border > div .content .btn-holder .btn {
    width: 100%;
  }
}
.cta_border.violet {
  background-color: #251F54;
}
.cta_border.violet > div {
  border: 1px solid #F5F4EA;
}
.cta_border.violet > div .content .section-title h2 {
  color: #F5F4EA;
}
.cta_border.violet > div .content .section-title .caption {
  color: #F5F4EA;
}
.cta_border.lblue {
  background-color: #C1D4D8;
}
.cta_border.lblue > div {
  border: 1px solid #9C8256;
}
.cta_border.lblue > div .content .section-title h2 {
  color: #9C8256;
}
.cta_border.lblue > div .content .section-title .caption {
  color: #9C8256;
}
.cta_border.ash {
  background-color: #C9D7C8;
}
.cta_border.ash > div {
  border: 1px solid #9C8256;
}
.cta_border.ash > div .content .section-title h2 {
  color: #9C8256;
}
.cta_border.ash > div .content .section-title .caption {
  color: #9C8256;
}

.cta_double {
  padding: 40px;
  background-color: #F9C4A7;
}
@media (max-width: 575px) {
  .cta_double {
    padding: 24px;
  }
}
.cta_double > div {
  border: 1px solid #9C8256;
  display: flex;
}
@media (max-width: 768px) {
  .cta_double > div {
    flex-direction: column;
  }
}
.cta_double > div .single_cta {
  width: 50%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .cta_double > div .single_cta {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .cta_double > div .single_cta {
    padding: 64px 20px;
  }
}
.cta_double > div .single_cta:last-child {
  border-left: 1px solid #9C8256;
}
@media (max-width: 768px) {
  .cta_double > div .single_cta:last-child {
    border-left: none;
    border-top: 1px solid #9C8256;
  }
}
@media (max-width: 575px) {
  .cta_double > div .single_cta .section-title h2 {
    margin-bottom: 20px;
  }
}
.cta_double > div .single_cta .section-title .caption {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .cta_double > div .single_cta .section-title .caption {
    margin-bottom: 8px;
  }
}
.cta_double > div .single_cta .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .cta_double > div .single_cta .section-title .caption p {
    font-size: 1rem;
  }
}
.cta_double.lblue {
  background-color: #C1D4D8;
}
.cta_double.ash {
  background-color: #C9D7C8;
}

.cta_background > div .content {
  max-width: 788px;
  margin: auto;
  text-align: center;
  padding: 112px 20px;
}
@media (max-width: 575px) {
  .cta_background > div .content {
    padding: 64px 20px;
  }
}
.cta_background > div .content h2, .cta_background > div .content p {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .cta_background > div .content .section-title h2 {
    margin-bottom: 20px;
  }
}
.cta_background > div .content .section-title .caption {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .cta_background > div .content .section-title .caption {
    margin-bottom: 8px;
  }
}
.cta_background > div .content .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .cta_background > div .content .section-title .caption p {
    font-size: 1rem;
  }
}
.cta_background.split > div .content {
  display: flex;
  padding: 112px 64px;
  max-width: unset;
  gap: 80px;
}
@media (max-width: 992px) {
  .cta_background.split > div .content {
    gap: 20px;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .cta_background.split > div .content {
    padding: 64px 20px;
  }
}
.cta_background.split > div .content .left {
  width: 50%;
}
@media (max-width: 992px) {
  .cta_background.split > div .content .left {
    width: 100%;
  }
}
.cta_background.split > div .content .left .title {
  text-align: left;
}
.cta_background.split > div .content .right {
  width: 50%;
}
@media (max-width: 992px) {
  .cta_background.split > div .content .right {
    width: 100%;
  }
}
.cta_background.split > div .content .right .caption {
  text-align: left;
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .cta_background.split > div .content .right .caption {
    margin-bottom: 8px;
  }
}
.cta_background.split > div .content .right .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .cta_background.split > div .content .right .caption p {
    font-size: 1rem;
  }
}
.cta_background.split > div .content .right .btn-holder {
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .cta_background.split > div .content .right .btn-holder .btn {
    padding: 13px 12px 12px;
  }
}

.sliding_content > div {
  position: relative;
}
.sliding_content > div > div {
  display: flex;
  gap: 80px;
}
@media (max-width: 1200px) {
  .sliding_content > div > div {
    gap: 24px;
  }
}
.sliding_content > div > div .left {
  width: 50%;
}
@media (max-width: 992px) {
  .sliding_content > div > div .left {
    width: 100%;
  }
}
.sliding_content > div > div .left .image-mob {
  display: none;
  width: 100%;
  height: 500px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .sliding_content > div > div .left .image-mob {
    display: inline-block;
  }
}
@media (max-width: 575px) {
  .sliding_content > div > div .left .image-mob {
    height: 348px;
    margin-bottom: 32px;
  }
}
.sliding_content > div > div .left .image-mob:last-child {
  margin-bottom: 0;
}
.sliding_content > div > div .left .image-mob img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sliding_content > div > div .left .content-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 640px;
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  .sliding_content > div > div .left .content-row {
    min-height: 480px;
  }
}
@media (max-width: 992px) {
  .sliding_content > div > div .left .content-row {
    min-height: unset;
    margin-bottom: 40px;
  }
}
.sliding_content > div > div .left .content-row:last-child {
  margin-bottom: 0px;
}
.sliding_content > div > div .left .content-row .section-title .subheading {
  text-align: left;
  width: 100%;
  font-family: "Safira-March", serif;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .sliding_content > div > div .left .content-row .section-title .subheading {
    margin-bottom: 12px;
  }
}
.sliding_content > div > div .left .content-row .section-title h2 {
  text-align: left;
  width: 100%;
}
@media (max-width: 575px) {
  .sliding_content > div > div .left .content-row .section-title h2 {
    margin-bottom: 20px;
  }
}
.sliding_content > div > div .left .content-row .section-title .caption {
  width: 100%;
}
.sliding_content > div > div .left .content-row .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .sliding_content > div > div .left .content-row .section-title .caption p {
    font-size: 1rem;
  }
}
.sliding_content > div > div .right {
  width: 50%;
}
@media (max-width: 992px) {
  .sliding_content > div > div .right {
    display: none;
  }
}
.sliding_content > div > div .right .image {
  height: 640px;
  position: sticky;
  top: 120px;
}
@media (max-width: 1200px) {
  .sliding_content > div > div .right .image {
    height: 480px;
  }
}
.sliding_content > div > div .right .image .container {
  height: 100%;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.sliding_content > div > div .right .image .container img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.sliding_content > div > div .right .image .container img.active {
  opacity: 1;
}

.awards > div {
  display: flex;
  gap: 80px;
}
@media (max-width: 1200px) {
  .awards > div {
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .awards > div {
    flex-direction: column;
  }
}
.awards > div .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .awards > div .left {
    width: 100%;
  }
}
.awards > div .left .section-title {
  align-items: flex-start;
}
.awards > div .left .section-title h2 {
  text-align: left;
}
@media (max-width: 575px) {
  .awards > div .left .section-title h2 {
    margin-bottom: 20px;
  }
}
.awards > div .left .section-title .caption {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .awards > div .left .section-title .caption {
    margin-bottom: 20px;
  }
}
.awards > div .left .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .awards > div .left .section-title .caption p {
    font-size: 1rem;
  }
}
.awards > div .left .btn-holder {
  justify-content: flex-start;
}
.awards > div .right {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .awards > div .right {
    width: 100%;
  }
}
.awards > div .right > div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.awards > div .right > div .logo-holder {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 84px;
  border-bottom: 1px solid #806852;
}
.awards > div .right > div .logo-holder:nth-child(odd) {
  border-right: 1px solid #806852;
}
.awards > div .right > div .logo-holder img {
  height: 56px;
  width: auto;
  max-width: 132px;
}
.awards > div .right > div.even .logo-holder:last-child, .awards > div .right > div.even .logo-holder:nth-last-child(2) {
  border-bottom: none;
}
.awards > div .right > div.odd .logo-holder:last-child {
  border-bottom: none;
}

.awards_alt {
  padding: 80px 64px;
}
@media (max-width: 768px) {
  .awards_alt {
    padding: 48px 20px;
  }
}
.awards_alt > div .section-title {
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .awards_alt > div .section-title {
    margin-bottom: 32px;
  }
}
.awards_alt > div .section-title .title {
  font-style: normal;
  font-weight: bold;
  line-height: 140%; /* 28px */
  letter-spacing: 2px;
  text-transform: uppercase;
}
.awards_alt > div .awards_holder > div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.awards_alt > div .awards_holder > div .logo-holder {
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 84px;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div .logo-holder {
    width: 50%;
  }
}
.awards_alt > div .awards_holder > div .logo-holder img {
  height: 56px;
  width: auto;
  max-width: 132px;
}
.awards_alt > div .awards_holder > div.logo-2 .logo-holder:first-child {
  border-right: 1px solid #806852;
}
.awards_alt > div .awards_holder > div.logo-3 .logo-holder {
  border-right: 1px solid #806852;
}
.awards_alt > div .awards_holder > div.logo-3 .logo-holder:last-child {
  border-right: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-3 .logo-holder:nth-child(2) {
    border-right: none;
  }
}
.awards_alt > div .awards_holder > div.logo-4 .logo-holder {
  border-right: 1px solid #806852;
  border-bottom: 1px solid #806852;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-4 .logo-holder:nth-child(2) {
    border-right: none;
  }
}
.awards_alt > div .awards_holder > div.logo-4 .logo-holder:nth-child(3) {
  border-right: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-4 .logo-holder:nth-child(3) {
    border-right: 1px solid #806852;
    border-bottom: none;
  }
}
.awards_alt > div .awards_holder > div.logo-4 .logo-holder:last-child {
  border-right: none;
  border-bottom: none;
}
.awards_alt > div .awards_holder > div.logo-5 .logo-holder {
  border-right: 1px solid #806852;
  border-bottom: 1px solid #806852;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-5 .logo-holder:nth-child(2) {
    border-right: none;
  }
}
.awards_alt > div .awards_holder > div.logo-5 .logo-holder:nth-child(3) {
  border-right: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-5 .logo-holder:nth-child(3) {
    border-right: 1px solid #806852;
  }
}
.awards_alt > div .awards_holder > div.logo-5 .logo-holder:nth-child(4) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-5 .logo-holder:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid #806852;
  }
}
.awards_alt > div .awards_holder > div.logo-5 .logo-holder:last-child {
  border-right: none;
  border-bottom: none;
}
.awards_alt > div .awards_holder > div.logo-6 .logo-holder {
  border-right: 1px solid #806852;
  border-bottom: 1px solid #806852;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(2) {
    border-right: none;
  }
}
.awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(3) {
  border-right: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(3) {
    border-right: 1px solid #806852;
  }
}
.awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(4) {
  border-bottom: none;
}
@media (max-width: 768px) {
  .awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(4) {
    border-right: none;
    border-bottom: 1px solid #806852;
  }
}
.awards_alt > div .awards_holder > div.logo-6 .logo-holder:nth-child(5) {
  border-bottom: none;
}
.awards_alt > div .awards_holder > div.logo-6 .logo-holder:last-child {
  border-right: none;
  border-bottom: none;
}

.content_image_below > div .top {
  display: flex;
  gap: 80px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .content_image_below > div .top {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .content_image_below > div .top {
    margin-bottom: 48px;
  }
}
.content_image_below > div .top .title-hold {
  width: 50%;
}
@media (max-width: 992px) {
  .content_image_below > div .top .title-hold {
    width: 100%;
    margin: 0;
  }
}
.content_image_below > div .top .title-hold h2 {
  text-align: left;
}
.content_image_below > div .top .content {
  width: 50%;
}
@media (max-width: 992px) {
  .content_image_below > div .top .content {
    width: 100%;
  }
}
.content_image_below > div .top .content .caption {
  margin-bottom: 32px;
}
@media (max-width: 575px) {
  .content_image_below > div .top .content .caption {
    margin-bottom: 24px;
  }
}
.content_image_below > div .top .content .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .content_image_below > div .top .content .caption p {
    font-size: 1rem;
  }
}
.content_image_below > div .top .content .features_list {
  display: flex;
  gap: 24px;
}
@media (max-width: 575px) {
  .content_image_below > div .top .content .features_list {
    flex-direction: column;
  }
}
.content_image_below > div .top .content .features_list .feature {
  width: 50%;
}
@media (max-width: 575px) {
  .content_image_below > div .top .content .features_list .feature {
    width: 100%;
  }
}
.content_image_below > div .top .content .features_list .feature .icon {
  width: 24px;
  height: 24px;
}
.content_image_below > div .top .content .features_list .feature .icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.content_image_below > div .top .content .features_list .feature h4 {
  margin: 16px 0;
}
@media (max-width: 575px) {
  .content_image_below > div .top .content .features_list .feature h4 {
    margin: 12px 0;
  }
}
.content_image_below > div .bottom .content_image_below_slider {
  height: 738px;
  width: 100%;
}
@media (max-width: 992px) {
  .content_image_below > div .bottom .content_image_below_slider {
    height: 500px;
  }
}
@media (max-width: 575px) {
  .content_image_below > div .bottom .content_image_below_slider {
    height: 188px;
  }
}
.content_image_below > div .bottom .content_image_below_slider .flickity-viewport {
  height: 738px !important;
}
@media (max-width: 992px) {
  .content_image_below > div .bottom .content_image_below_slider .flickity-viewport {
    height: 500px !important;
  }
}
@media (max-width: 575px) {
  .content_image_below > div .bottom .content_image_below_slider .flickity-viewport {
    height: 188px !important;
  }
}
.content_image_below > div .bottom .content_image_below_slider .slider-cell {
  height: 100%;
  width: 100%;
  position: relative;
}
.content_image_below > div .bottom .content_image_below_slider .slider-cell img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.tabbed_media > div {
  position: relative;
}
.tabbed_media > div > div {
  display: flex;
  gap: 80px;
}
@media (max-width: 1200px) {
  .tabbed_media > div > div {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .tabbed_media > div > div {
    flex-direction: column-reverse;
    gap: 48px;
  }
}
.tabbed_media > div > div .left {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .tabbed_media > div > div .left {
    width: 100%;
  }
}
.tabbed_media > div > div .left .image {
  width: 100%;
  height: 640px;
}
@media (max-width: 1200px) {
  .tabbed_media > div > div .left .image {
    height: 480px;
  }
}
@media (max-width: 575px) {
  .tabbed_media > div > div .left .image {
    height: 348px;
  }
}
.tabbed_media > div > div .left .image .container {
  height: 100%;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.tabbed_media > div > div .left .image .container img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.tabbed_media > div > div .left .image .container img.active {
  opacity: 1;
}
.tabbed_media > div > div .right {
  width: 50%;
  display: flex;
  gap: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .tabbed_media > div > div .right {
    width: 100%;
  }
}
.tabbed_media > div > div .right .content-block {
  cursor: pointer;
  padding-left: 32px;
  border-left: 1px solid transparent;
}
.tabbed_media > div > div .right .content-block .section-title {
  text-align: left;
}
.tabbed_media > div > div .right .content-block .section-title h4 {
  text-align: left;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .tabbed_media > div > div .right .content-block .section-title h4 {
    margin-bottom: 12px;
  }
}
.tabbed_media > div > div .right .content-block .section-title .caption {
  width: 100%;
}
.tabbed_media > div > div .right .content-block.active {
  border-left: 1px solid #806852;
}

.image_gallery {
  overflow: hidden;
}
.image_gallery > div {
  position: relative;
}
.image_gallery > div:before {
  content: "";
  position: absolute;
  top: -7rem;
  width: 50%;
  height: calc(100% + 14rem);
  background-image: url(../../images/blossom10.svg);
  background-repeat: repeat-y;
}
@media (max-width: 992px) {
  .image_gallery > div:before {
    display: none;
  }
}
.image_gallery > div:after {
  content: "";
  position: absolute;
  top: -14rem;
  right: -20vw;
  width: 50%;
  height: calc(100% + 21rem);
  background-image: url(../../images/blossom10.svg);
  background-repeat: repeat-y;
}
@media (max-width: 768px) {
  .image_gallery > div:after {
    left: 50%;
    width: 100%;
  }
}
.image_gallery > div > .section-title {
  max-width: 768px;
  margin: 0 auto 80px;
}
@media (max-width: 992px) {
  .image_gallery > div > .section-title {
    margin-bottom: 0 auto 48px;
  }
}
@media (max-width: 575px) {
  .image_gallery > div > .section-title h2 {
    margin-bottom: 20px;
  }
}
.image_gallery > div > .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .image_gallery > div > .section-title .caption p {
    font-size: 1rem;
  }
}
.image_gallery > div .tabbed_alt .top {
  display: flex;
  margin-bottom: 64px;
  justify-content: center;
  z-index: 1;
  position: relative;
}
.image_gallery > div .tabbed_alt .top .content-block {
  padding: 16px 24px;
  cursor: pointer;
}
@media (max-width: 992px) {
  .image_gallery > div .tabbed_alt .top .content-block {
    padding: 32px 24px;
  }
}
.image_gallery > div .tabbed_alt .top .content-block h4 {
  margin-bottom: 4px;
}
.image_gallery > div .tabbed_alt .top .content-block.active {
  border-bottom: 2px solid #9C8256;
}
.image_gallery > div .tabbed_alt .bottom .container {
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  top: 0;
  left: 0;
}
.image_gallery > div .tabbed_alt .bottom .container .image-content {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  height: 100%;
  width: 100%;
  display: none;
  transition: opacity 0.5s ease;
}
.image_gallery > div .tabbed_alt .bottom .container .image-content.active {
  display: grid;
}
@media (max-width: 992px) {
  .image_gallery > div .tabbed_alt .bottom .container .image-content {
    grid-template-columns: 1fr 1fr;
  }
}
.image_gallery > div .tabbed_alt .bottom .container .image-content .image-item {
  height: 296px;
}
@media (max-width: 992px) {
  .image_gallery > div .tabbed_alt .bottom .container .image-content .image-item {
    height: 159px;
  }
}
.image_gallery > div .tabbed_alt .bottom .container .image-content .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image_gallery > div .tabbed_alt .bottom .container .image-content .image-item.hidden-item {
  display: none;
}
.image_gallery > div .singular-gallery {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .image_gallery > div .singular-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.image_gallery > div .singular-gallery .image-item {
  height: 296px;
}
@media (max-width: 992px) {
  .image_gallery > div .singular-gallery .image-item {
    height: 159px;
  }
}
.image_gallery > div .singular-gallery .image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image_gallery > div .singular-gallery .image-item:hover {
  cursor: pointer;
}
.image_gallery > div .singular-gallery .image-item.hidden-item {
  display: none;
}
.image_gallery > div .see-more-holder {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.image_gallery > div .see-more-holder button {
  background-color: transparent;
}
.image_gallery > div .see-more-holder button:hover {
  background-color: #6B7A5E;
}
.image_gallery.green {
  background-color: #6B7A5E;
}
.image_gallery.green > div .section-title h2,
.image_gallery.green > div .section-title h6,
.image_gallery.green > div .section-title p {
  color: #F5F4EA;
}
.image_gallery.green > div .tabbed_alt .top .content-block {
  color: #F5F4EA;
}
.image_gallery.green > div .tabbed_alt .top .content-block.active {
  border-bottom: 2px solid #9C8256;
}
.image_gallery.green > div button {
  border-color: #F5F4EA;
  color: #F5F4EA;
}

.content_block > div .intro .section-title {
  max-width: 768px;
  margin: auto;
}
.content_block > div .intro .section-title .subheading {
  font-family: "Safira-March", serif;
}
.content_block > div .intro.separator .section-title h2 {
  position: relative;
  margin-bottom: 88px;
}
@media (max-width: 575px) {
  .content_block > div .intro.separator .section-title h2 {
    margin-bottom: 66px;
  }
}
.content_block > div .intro.separator .section-title h2:after {
  position: absolute;
  content: "";
  bottom: -60px;
  height: 40px;
  width: 333px;
  left: 50%;
  transform: translate(-50%);
  background-image: url("../../images/separator-primary.svg");
}
@media (max-width: 575px) {
  .content_block > div .intro.separator .section-title h2:after {
    height: 26px;
    width: calc(100vw - 40px);
    bottom: -43px;
    background-image: url("../../images/separator-primary-mob.svg");
    background-size: 100% 100%;
  }
}
.content_block > div .blocks {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .content_block > div .blocks {
    flex-direction: column;
  }
}
.content_block > div .blocks .block {
  width: 33.3333333333%;
  padding: 0 32px;
  text-align: center;
  border-left: 1px solid #9C8256;
}
@media (max-width: 992px) {
  .content_block > div .blocks .block {
    width: 100%;
    padding: 48px 0;
    border-left: none;
    border-top: 1px solid #9C8256;
  }
}
.content_block > div .blocks .block:first-child {
  padding-left: 0;
  border-left: none;
}
@media (max-width: 992px) {
  .content_block > div .blocks .block:first-child {
    padding-top: 0;
    border-top: none;
  }
}
.content_block > div .blocks .block:last-child {
  padding-right: 0;
}
@media (max-width: 992px) {
  .content_block > div .blocks .block:last-child {
    padding-bottom: 0;
  }
}
.content_block.add_block {
  padding-left: 120px;
  padding-right: 120px;
}
@media (max-width: 992px) {
  .content_block.add_block {
    padding-top: 7rem;
    padding-bottom: 7rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
@media (max-width: 768px) {
  .content_block.add_block {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.content_block.add_block > div .intro {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .content_block.add_block > div .intro {
    margin-bottom: 48px;
  }
}
.content_block.add_block > div .intro .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .content_block.add_block > div .intro .section-title .caption p {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  .content_block.add_images > div .blocks {
    padding-bottom: 96px;
  }
}
.content_block.add_images > div .blocks:after {
  content: "flickity";
  display: none;
}
@media screen and (min-width: 575px) {
  .content_block.add_images > div .blocks:after {
    content: "";
  }
}
.content_block.add_images > div .blocks .block {
  text-align: left;
}
@media (max-width: 575px) {
  .content_block.add_images > div .blocks .block {
    border: none;
    padding: 0;
  }
}
.content_block.add_images > div .blocks .block .image-hold {
  height: 400px;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .content_block.add_images > div .blocks .block .image-hold {
    height: 300px;
  }
}
@media (max-width: 575px) {
  .content_block.add_images > div .blocks .block .image-hold {
    height: 348px;
  }
}
.content_block.add_images > div .blocks .block .image-hold img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.content_block.add_images > div .blocks .flickity-button {
  bottom: 3px;
  top: unset;
}
.content_block.add_images > div .blocks .flickity-button.previous {
  left: unset;
  right: 63px;
}
.content_block.add_images > div .blocks .flickity-button.next {
  right: 0;
}
.content_block.add_images > div .blocks .flickity-page-dots {
  top: unset;
  bottom: 20px;
  width: unset;
}

.cards > div .section-title {
  max-width: 768px;
  margin: auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .cards > div .section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 575px) {
  .cards > div .section-title h2 {
    margin-bottom: 20px;
  }
}
.cards > div .section-title .caption {
  text-align: center;
}
.cards > div .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .cards > div .section-title .caption p {
    font-size: 1rem;
  }
}
.cards > div .card_rpt {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cards > div .card_rpt {
    gap: 24px;
  }
}
.cards > div .card_rpt .card_content {
  flex: 0 0 calc(33.3333333333% - 22px);
  border: 1px solid #9C8256;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .cards > div .card_rpt .card_content {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .cards > div .card_rpt .card_content {
    flex: 100%;
  }
}
.cards > div .card_rpt .card_content a {
  display: inline-block;
  padding: 32px;
  height: 100%;
  width: 100%;
}
.cards > div .card_rpt .card_content a .fish {
  height: 55px;
  width: 48px;
  margin-bottom: 24px;
  position: relative;
}
.cards > div .card_rpt .card_content a .fish img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cards > div .card_rpt .card_content a .fish img.fishtwo {
  opacity: 0;
}
.cards > div .card_rpt .card_content a .title {
  margin-bottom: 16px;
}
.cards > div .card_rpt .card_content a .caption {
  margin-bottom: 24px;
}
.cards > div .card_rpt .card_content a:hover img.fishone {
  animation: flicker 0.6s infinite;
}
.cards > div .card_rpt .card_content a:hover img.fishtwo {
  animation: flicker 0.6s infinite 0.3s;
}
.cards > div .card_rpt.card-4 .card_content:last-child, .cards > div .card_rpt.card-7 .card_content:last-child {
  flex: 0 0 calc(50% - 16px);
}
@media (max-width: 992px) {
  .cards > div .card_rpt.card-4 .card_content:last-child, .cards > div .card_rpt.card-7 .card_content:last-child {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .cards > div .card_rpt.card-4 .card_content:last-child, .cards > div .card_rpt.card-7 .card_content:last-child {
    flex: 100%;
  }
}
.cards > div .card_rpt.card-5 .card_content:last-child, .cards > div .card_rpt.card-5 .card_content:nth-last-child(2), .cards > div .card_rpt.card-8 .card_content:last-child, .cards > div .card_rpt.card-8 .card_content:nth-last-child(2) {
  flex: 0 0 calc(50% - 16px);
}
@media (max-width: 992px) {
  .cards > div .card_rpt.card-5 .card_content:last-child, .cards > div .card_rpt.card-5 .card_content:nth-last-child(2), .cards > div .card_rpt.card-8 .card_content:last-child, .cards > div .card_rpt.card-8 .card_content:nth-last-child(2) {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .cards > div .card_rpt.card-5 .card_content:last-child, .cards > div .card_rpt.card-5 .card_content:nth-last-child(2), .cards > div .card_rpt.card-8 .card_content:last-child, .cards > div .card_rpt.card-8 .card_content:nth-last-child(2) {
    flex: 100%;
  }
}
.cards > div > .view-more {
  width: 100%;
  display: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .cards > div > .view-more {
    display: flex;
  }
}
.cards > div > .view-more.hide {
  display: none;
}
@media (max-width: 575px) {
  .cards.non-slider > div .card_rpt .card_content {
    opacity: 0;
    height: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
  }
  .cards.non-slider > div .card_rpt .card_content:nth-child(-n+3) {
    opacity: 1;
    height: auto;
    pointer-events: all;
  }
}
@media (max-width: 575px) {
  .cards.non-slider > div .card_rpt.show-all .card_content {
    opacity: 1;
    height: auto;
    pointer-events: all;
  }
}
.cards.slider > div .card_rpt .flickity-viewport {
  width: 100%;
}
.cards.slider > div .card_rpt .flickity-viewport .card_content {
  width: 100%;
  margin-left: 2px;
}
@media (max-width: 575px) {
  .cards.slider > div .card_rpt .flickity-viewport {
    margin-bottom: 75px;
  }
}
.cards.slider > div .card_rpt .flickity-button {
  bottom: 3px;
  top: unset;
  background-color: transparent;
}
.cards.slider > div .card_rpt .flickity-button.previous {
  left: unset;
  right: 63px;
}
.cards.slider > div .card_rpt .flickity-button.next {
  right: 0;
}
.cards.slider > div .card_rpt .flickity-page-dots {
  top: unset;
  bottom: 20px;
  width: unset;
}
.cards.slider > div .card_rpt:after {
  content: "flickity";
  display: none;
}
@media screen and (min-width: 575px) {
  .cards.slider > div .card_rpt:after {
    content: "";
  }
}
.cards.olive {
  background-color: #252C1B;
}
.cards.olive > div .section-title .subheading, .cards.olive > div .section-title h2, .cards.olive > div .section-title p {
  color: #F5F4EA;
}
.cards.olive > div .card_rpt .card_content {
  border: 1px solid #F5F4EA;
}
.cards.olive > div .card_rpt .card_content .title, .cards.olive > div .card_rpt .card_content p {
  color: #F5F4EA;
}
.cards.olive > div .card_rpt .card_content .btn {
  color: #F5F4EA;
}
.cards.olive > div .card_rpt .card_content .btn::before, .cards.olive > div .card_rpt .card_content .btn::after {
  background: #F5F4EA;
}
.cards.olive > div .view-more {
  background-image: linear-gradient(#9C8256, #9C8256), linear-gradient(transparent, transparent);
  border-color: #F5F4EA;
  color: #F5F4EA;
}
.cards.olive > div .view-more:hover {
  color: #F5F4EA;
  border-color: #9C8256;
}

.image_cards {
  padding-left: 24px;
  padding-right: 24px;
}
.image_cards > div .intro {
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .image_cards > div .intro {
    margin-bottom: 48px;
  }
}
.image_cards > div .intro .section-title .caption {
  margin-bottom: 24px;
}
@media (max-width: 575px) {
  .image_cards > div .intro .section-title .caption {
    margin-bottom: 8px;
  }
}
.image_cards > div .intro .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .image_cards > div .intro .section-title .caption p {
    font-size: 1rem;
  }
}
.image_cards > div .image_card_rpt .flickity-viewport {
  margin-bottom: 80px;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-viewport {
    margin-bottom: 48px;
  }
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content {
  width: 33.3333333333%;
  padding: 0 40px;
  border-left: 1px solid #806852;
}
@media (max-width: 992px) {
  .image_cards > div .image_card_rpt .flickity-viewport .card_content {
    width: 50%;
  }
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-viewport .card_content {
    width: 100%;
    padding: 0px;
    border: none;
  }
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content.is-selected {
  border-left: none;
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .image {
  height: 400px;
}
@media (max-width: 1200px) {
  .image_cards > div .image_card_rpt .flickity-viewport .card_content > a .image {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-viewport .card_content > a .image {
    height: 335px;
  }
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .content {
  padding-top: 32px;
  min-height: 215px;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-viewport .card_content > a .content {
    min-height: unset;
    border: 1px solid #806852;
    padding: 24px;
  }
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .content .subheading {
  font-family: "Safira-March", serif;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-bottom: 8px;
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .content .title {
  margin-bottom: 24px;
}
.image_cards > div .image_card_rpt .flickity-viewport .card_content > a .content .caption {
  margin-bottom: 24px;
}
.image_cards > div .image_card_rpt .flickity-button {
  bottom: -41px;
  top: unset;
  background-color: transparent;
  z-index: 1;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-button {
    height: 36px;
    width: 36px;
    bottom: -35px;
  }
}
.image_cards > div .image_card_rpt .flickity-button.previous {
  left: unset;
  right: 104px;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-button.previous {
    right: 51px;
  }
}
.image_cards > div .image_card_rpt .flickity-button.next {
  right: 41px;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-button.next {
    right: 0px;
  }
}
.image_cards > div .image_card_rpt .flickity-page-dots {
  position: relative;
  width: unset;
  text-align: left;
  margin-left: 40px;
}
@media (max-width: 575px) {
  .image_cards > div .image_card_rpt .flickity-page-dots {
    margin: 0;
  }
}
.image_cards > div .image_card_rpt .flickity-page-dots .dot {
  background: #806852;
}
.image_cards > div .image_card_rpt .flickity-page-dots .dot.is-selected {
  background: #9C8256;
}

.gallery {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 768px) {
  .gallery {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.gallery > div .section-title {
  max-width: 768px;
  align-items: flex-start;
  margin-bottom: 80px;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 768px) {
  .gallery > div .section-title {
    margin-bottom: 48px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.gallery > div .section-title h2 {
  text-align: left;
}
@media (max-width: 575px) {
  .gallery > div .section-title h2 {
    margin-bottom: 20px;
  }
}
.gallery > div .section-title .caption {
  text-align: left;
}
.gallery > div .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .gallery > div .section-title .caption p {
    font-size: 1rem;
  }
}
.gallery > div .gallery-slider {
  margin-left: 4rem;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .gallery > div .gallery-slider {
    margin-left: 1.25rem;
  }
}
@media (max-width: 575px) {
  .gallery > div .gallery-slider {
    padding-bottom: 40px;
  }
}
.gallery > div .gallery-slider .flickity-viewport {
  height: 627px !important;
}
@media (max-width: 992px) {
  .gallery > div .gallery-slider .flickity-viewport {
    height: 450px !important;
  }
}
@media (max-width: 768px) {
  .gallery > div .gallery-slider .flickity-viewport {
    height: 350px !important;
  }
}
@media (max-width: 575px) {
  .gallery > div .gallery-slider .flickity-viewport {
    height: 176px !important;
  }
}
.gallery > div .gallery-slider .flickity-viewport .gallery-img {
  height: 100%;
  width: 95%;
  margin-right: 32px;
}
.gallery > div .gallery-slider .flickity-viewport .gallery-img a {
  display: inline-block;
  height: calc(100% - 30px);
  width: 100%;
}
.gallery > div .gallery-slider .flickity-viewport .gallery-img a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.gallery > div .gallery-slider .flickity-viewport .gallery-img span {
  color: #9C8256;
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 575px) {
  .gallery > div .gallery-slider .flickity-viewport .gallery-img span {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .gallery > div .gallery-slider .flickity-viewport .gallery-img span {
    font-size: 1rem;
  }
}
.gallery > div .gallery-slider .flickity-button {
  bottom: 0px;
  top: unset;
  background-color: transparent;
}
.gallery > div .gallery-slider .flickity-button.previous {
  left: unset;
  right: 126px;
}
@media (max-width: 575px) {
  .gallery > div .gallery-slider .flickity-button.previous {
    right: 84px;
  }
}
.gallery > div .gallery-slider .flickity-button.next {
  right: 64px;
}
@media (max-width: 575px) {
  .gallery > div .gallery-slider .flickity-button.next {
    right: 20px;
  }
}
.gallery > div .gallery-slider .flickity-page-dots {
  top: unset;
  bottom: 15px;
  width: unset;
}
.gallery > div .gallery-slider .flickity-page-dots .dot {
  background: #806852;
}
.gallery > div .gallery-slider .flickity-page-dots .dot.is-selected {
  background: #9C8256;
}
.gallery.maroon {
  background-color: #4E0018;
}
.gallery.maroon > div .section-title h2 {
  color: #F5F4EA;
}
.gallery.maroon > div .section-title .caption p {
  color: #F5F4EA;
}
.gallery.maroon > div .gallery-slider .flickity-viewport .gallery-img span {
  color: #F5F4EA;
}
.gallery.maroon > div .gallery-slider .flickity-button {
  border: 1px solid #F5F4EA;
  background-image: url("../../images/arrow_left_lgold.svg");
}
.gallery.maroon > div .gallery-slider .flickity-button:hover {
  background-image: url("../../images/arrow_left_lgold.svg");
}
.gallery.maroon > div .gallery-slider .flickity-button.next {
  background-image: url("../../images/arrow_right_lgold.svg");
}
.gallery.maroon > div .gallery-slider .flickity-page-dots .dot {
  background: #806852;
}
.gallery.maroon > div .gallery-slider .flickity-page-dots .dot.is-selected {
  background: #F5F4EA;
}

.faq-anchor-bar {
  background-color: #F5F4EA;
  padding: 20px 0;
}
.faq-anchor-bar > div {
  display: flex;
  gap: 32px;
  justify-content: center;
}
@media (max-width: 575px) {
  .faq-anchor-bar > div {
    justify-content: flex-start;
    gap: 16px;
    overflow: scroll;
  }
}
.faq-anchor-bar > div a {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background-color 0.2s ease;
  min-width: fit-content;
}
.faq-anchor-bar > div a:hover {
  background-color: rgba(255, 255, 255, 0.5);
  border: 1px solid #CBBFB4;
}

.faqs > div {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 1200px) {
  .faqs > div {
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .faqs > div {
    gap: 48px;
  }
}
.faqs > div .content .section-title {
  max-width: 768px;
  margin: 0 auto;
}
@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;
}
@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%;
  }
}
@media (max-width: 575px) {
  .faqs > div .content .btn-holder .btn {
    width: 100%;
  }
}
.faqs > div .faq_list .faq {
  border-bottom: 1px solid #806852;
}
@media (max-width: 768px) {
  .faqs > div .faq_list .faq {
    margin-bottom: 16px;
  }
}
.faqs > div .faq_list .faq:first-child {
  border-top: 1px solid #806852;
}
.faqs > div .faq_list .question {
  cursor: pointer;
  padding: 20px 24px;
  position: relative;
}
@media (max-width: 768px) {
  .faqs > div .faq_list .question {
    border: none;
  }
}
@media (max-width: 575px) {
  .faqs > div .faq_list .question {
    padding: 16px 20px;
  }
}
.faqs > div .faq_list .question h6 {
  margin-bottom: 0;
  line-height: 150%;
}
.faqs > div .faq_list .question .plus {
  position: absolute;
  height: 24px;
  width: 24px;
  right: 36px;
  top: calc(50% - 12px);
}
@media (max-width: 575px) {
  .faqs > div .faq_list .question .plus {
    height: 20px;
    width: 20px;
    right: 20px;
    top: calc(50% - 10px);
  }
}
.faqs > div .faq_list .question .plus span:first-child {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #9C8256;
  /*- half the height*/
  top: calc(50% - 1px);
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.faqs > div .faq_list .question .plus span:last-child {
  display: block;
  position: absolute;
  width: 2px;
  height: 100%;
  border-radius: 1px;
  background: #9C8256;
  /*- half the width*/
  left: calc(50% - 1px);
  -moz-transition: all 0.25s ease;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.faqs > div .faq_list .question.ui-state-active .plus span:last-child {
  -moz-transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.faqs > div .faq_list .answer {
  padding: 20px 24px;
}
.faqs > div .faq-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faqs > div .faq-contact button {
  background-color: transparent;
}
.faqs > div .faq-contact button:hover {
  background-color: #6B7A5E;
}
.faqs.two_col > div .faq_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
}
@media (max-width: 992px) {
  .faqs.two_col > div .faq_list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.faqs.two_col > div .faq_list .faq:nth-child(2) {
  border-top: 1px solid #806852;
}
@media (max-width: 992px) {
  .faqs.two_col > div .faq_list .faq:nth-child(2) {
    border-top: none;
  }
}
.faqs.brown {
  background-color: #806852;
}
.faqs.brown > div .section-title h2 {
  color: #F5F4EA;
}
.faqs.brown > div .section-title p {
  color: #F5F4EA;
}
.faqs.brown > div .faq_list .faq {
  border-bottom: 1px solid #F5F4EA;
}
.faqs.brown > div .faq_list .faq:first-child {
  border-top: 1px solid #F5F4EA;
}
@media (max-width: 768px) {
  .faqs.brown > div .faq_list .question {
    border: none;
  }
}
.faqs.brown > div .faq_list .question h6 {
  color: #F5F4EA;
}
.faqs.brown > div .faq_list .question .plus span:first-child {
  background: #F5F4EA;
}
.faqs.brown > div .faq_list .question .plus span:last-child {
  background: #F5F4EA;
}
.faqs.brown > div .faq_list .answer {
  color: #F5F4EA;
}
.faqs.brown > div .faq-contact h4, .faqs.brown > div .faq-contact p {
  color: #F5F4EA;
}
.faqs.brown > div .faq-contact button {
  background-color: #F5F4EA;
}
.faqs.brown > div .faq-contact button:hover {
  background-color: #6B7A5E;
}
.faqs.brown.two_col > div .faq_list .faq:nth-child(2) {
  border-top: 1px solid #F5F4EA;
}
@media (max-width: 992px) {
  .faqs.brown.two_col > div .faq_list .faq:nth-child(2) {
    border-top: none;
  }
}

/* ------------------------------------------------------------------------- *
/* 5. POSTS */
/* ------------------------------------------------------------------------- */
.cpt-single {
  padding: 120px;
}
@media only screen and (max-width: 1300px) {
  .cpt-single {
    padding: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .cpt-single {
    padding: 40px 24px;
  }
}
.cpt-single .feature-row {
  display: flex;
}
@media only screen and (max-width: 992px) {
  .cpt-single .feature-row {
    flex-direction: column;
    align-items: center;
  }
}
.cpt-single .feature-row .ft-content {
  margin-right: 136px;
  max-width: 480px;
}
@media only screen and (max-width: 1300px) {
  .cpt-single .feature-row .ft-content {
    margin-right: 56px;
  }
}
@media only screen and (max-width: 992px) {
  .cpt-single .feature-row .ft-content {
    text-align: center;
    align-items: center;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
.cpt-single .feature-row .ft-content .subheading,
.cpt-single .feature-row .ft-content .title,
.cpt-single .feature-row .ft-content .caption {
  margin-bottom: 40px;
}
.cpt-single .feature-row .ft-content .btn-holder {
  width: 480px;
  justify-content: flex-start;
}
@media only screen and (max-width: 992px) {
  .cpt-single .feature-row .ft-content .btn-holder {
    justify-content: center;
    margin-left: 0;
    width: auto;
  }
}
@media only screen and (max-width: 575px) {
  .cpt-single .feature-row .ft-content .btn-holder {
    align-content: center;
  }
}
.cpt-single .feature-row .ft-content .btn-holder .btn {
  padding-right: 48px;
}
.cpt-single .feature-row .ft-content .btn-holder .btn:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("../../images/email_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  right: 16px;
  top: calc(50% - 6px);
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.cpt-single .feature-row .ft-content .btn-holder .btn.download:after {
  background-image: url("../../images/download_white.svg");
  top: calc(50% - 10px);
}
.cpt-single .feature-row .ft-content .btn-holder .btn.no-icon {
  padding-right: 20px;
}
.cpt-single .feature-row .ft-content .btn-holder .btn.no-icon:after {
  background-image: none;
}
.cpt-single .feature-row .social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 40px;
}
.cpt-single .feature-row .social-wrapper .social-title {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 160%;
  /* identical to box height, or 21px */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 16px;
}
.cpt-single .feature-row .social-wrapper .socials {
  justify-content: flex-start;
  gap: 8px;
  width: unset;
}
.cpt-single .feature-row .social-wrapper .socials li a {
  background-color: #FFFFFF;
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease-in-out;
}
.cpt-single .feature-row .social-wrapper .socials li a:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
}
.cpt-single .feature-row .social-wrapper.mobile {
  display: none;
}
@media only screen and (max-width: 992px) {
  .cpt-single .feature-row .social-wrapper.desktop {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .cpt-single .feature-row .social-wrapper.desktop {
    display: none;
  }
  .cpt-single .feature-row .social-wrapper.mobile {
    display: flex;
  }
}
.cpt-single .feature-row .ft-image {
  min-width: 582px;
  width: 582px;
  height: 100%;
  max-width: 100vw;
  object-fit: contain;
}
@media only screen and (max-width: 1300px) {
  .cpt-single .feature-row .ft-image {
    min-width: 502px;
  }
}
@media only screen and (max-width: 575px) {
  .cpt-single .feature-row .ft-image {
    min-width: auto;
    height: auto;
  }
}
.cpt-single .feature-row .ft-image .slick-list.draggable {
  padding: 0 !important;
}
.cpt-single .feature-row .ft-image .slick-list .slick-track {
  display: flex;
}
@media only screen and (max-width: 575px) {
  .cpt-single .feature-row .ft-image .slick-list .slick-track {
    justify-content: center;
    width: auto !important;
  }
}
.cpt-single .feature-row .ft-image .slick-list .slick-track .slick-slide {
  height: auto;
  width: 100vw !important;
  max-width: 100%;
  margin: 0 12px 12px;
}
@media only screen and (max-width: 992px) {
  .cpt-single .feature-row .ft-image .slick-list .slick-track .slick-slide {
    margin: 0;
  }
}

.cpt-graphs {
  padding: 120px;
}
@media only screen and (max-width: 1300px) {
  .cpt-graphs {
    padding: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .cpt-graphs {
    padding: 40px 24px;
  }
}
.cpt-graphs .graph-image {
  margin-bottom: 80px;
}
@media only screen and (max-width: 575px) {
  .cpt-graphs .graph-image {
    padding: 40px;
  }
}
.cpt-graphs .graph-image:last-child {
  margin-bottom: 0;
}
.cpt-graphs .graph-image img {
  object-fit: contain;
}

.single-post .social-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 1200px;
  padding: 0 120px;
  margin: 3rem auto 0;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .single-post .social-wrapper {
    padding: 0 65px;
  }
}
@media only screen and (max-width: 768px) {
  .single-post .social-wrapper {
    padding: 0 24px;
  }
}
.single-post .social-wrapper .social-title {
  font-family: "Gill Sans";
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-right: 16px;
}
.single-post .social-wrapper .socials {
  gap: 8px;
  width: unset;
}
.single-post .social-wrapper .socials li a {
  background-color: #FFFFFF;
  height: 40px;
  width: 40px;
  background-position: center;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  border-radius: 20px;
  border: 1px solid #E0E0E0;
  transition: all 0.3s ease-in-out;
}
.single-post .social-wrapper .socials li a:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
}

/* ------------------------------------------------------------------------- *
/* 6. CPT */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- *
/* TESTIMONIALS */
/* ------------------------------------------------------------------------- */
.testimonials > div {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 992px) {
  .testimonials > div {
    gap: 32px;
  }
}
.testimonials > div .section-title {
  align-items: flex-start;
}
.testimonials > div .caption {
  text-align: left;
}
.testimonials > div .flickity-viewport {
  margin-bottom: 48px;
}
.testimonials > div .testimonial_slider {
  margin: 0 -32px;
}
@media (max-width: 992px) {
  .testimonials > div .testimonial_slider {
    margin: 0;
  }
}
.testimonials > div .testimonial_slider:not(.flickity-enabled) {
  display: flex;
}
@media (max-width: 992px) {
  .testimonials > div .testimonial_slider:not(.flickity-enabled) {
    flex-direction: column;
  }
}
.testimonials > div .testimonial_slider .testimonial {
  width: 50%;
  padding: 0 32px;
}
@media (max-width: 992px) {
  .testimonials > div .testimonial_slider .testimonial {
    width: 100%;
    padding: 0;
  }
}
.testimonials > div .testimonial_slider .testimonial > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonials > div .testimonial_slider .testimonial > div .review {
  margin: 32px 0;
}
@media (max-width: 575px) {
  .testimonials > div .testimonial_slider .testimonial > div .review {
    margin: 24px 0;
  }
}
.testimonials > div .testimonial_slider .testimonial > div .review p {
  font-family: "Safira-March", serif;
  font-size: 1.25rem;
  color: #806852;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer {
  display: flex;
  gap: 20px;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .icon {
  height: 56px;
  width: 56px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer p {
  margin-bottom: 0;
  line-height: 170%;
}
.testimonials > div .testimonial_slider .testimonial > div .reviewer .name {
  font-weight: 600;
}
.testimonials > div .testimonial_slider .flickity-button {
  bottom: -48px;
  top: unset;
}
.testimonials > div .testimonial_slider .flickity-button.previous {
  left: calc(50% - 120px);
}
.testimonials > div .testimonial_slider .flickity-button.next {
  right: calc(50% - 120px);
}
.testimonials > div .testimonial_slider .flickity-page-dots {
  bottom: -30px;
}
.testimonials > div .testimonial_slider .flickity-page-dots .dot {
  background: #806852;
}
.testimonials > div .testimonial_slider .flickity-page-dots .dot.is-selected {
  background: #9C8256;
}

.cpt_slider {
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media (max-width: 768px) {
  .cpt_slider {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.cpt_slider > div .section-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 80px;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 992px) {
  .cpt_slider > div .section-intro {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .cpt_slider > div .section-intro {
    margin-bottom: 48px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
.cpt_slider > div .section-intro .section-title {
  max-width: 768px;
  align-items: flex-start;
}
.cpt_slider > div .section-intro .section-title h2 {
  text-align: left;
}
@media (max-width: 575px) {
  .cpt_slider > div .section-intro .section-title h2 {
    margin-bottom: 20px;
  }
}
.cpt_slider > div .section-intro .section-title .caption {
  text-align: left;
}
.cpt_slider > div .section-intro .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .cpt_slider > div .section-intro .section-title .caption p {
    font-size: 1rem;
  }
}
.cpt_slider > div .section-intro .btn-holder {
  min-width: 200px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cpt_slider > div .section-intro .btn-holder {
    min-width: unset;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cpt_slider > div .section-intro .btn-holder .btn {
    width: 100%;
  }
}
.cpt_slider > div .cpt_loop {
  margin-left: 4rem;
}
@media (max-width: 768px) {
  .cpt_slider > div .cpt_loop {
    margin-left: 1.25rem;
  }
}
.cpt_slider > div .cpt_loop .card_content {
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 28%;
  margin-right: 48px;
}
@media (max-width: 1200px) {
  .cpt_slider > div .cpt_loop .card_content {
    width: 36%;
  }
}
@media (max-width: 992px) {
  .cpt_slider > div .cpt_loop .card_content {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .cpt_slider > div .cpt_loop .card_content {
    width: 60%;
  }
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .card_content {
    width: calc(85% - 20px);
  }
}
.cpt_slider > div .cpt_loop .card_content .image {
  height: 400px;
  width: 100%;
}
.cpt_slider > div .cpt_loop .card_content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cpt_slider > div .cpt_loop .card_content.person .image {
  height: 395px;
}
@media (max-width: 768px) {
  .cpt_slider > div .cpt_loop .card_content.person .image {
    height: 198px;
  }
}
.cpt_slider > div .cpt_loop .card_content .content {
  margin-top: 24px;
  min-height: 250px;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .card_content .content {
    margin-top: 20px;
  }
}
.cpt_slider > div .cpt_loop .card_content .content .small {
  font-weight: 600;
}
.cpt_slider > div .cpt_loop .card_content .content h4 {
  margin: 0;
}
.cpt_slider > div .cpt_loop .card_content .content p.medium {
  padding-bottom: 16px;
  margin: 0;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .card_content .content p.medium {
    padding-bottom: 12px;
  }
}
.cpt_slider > div .cpt_loop .card_content .content .bio {
  padding: 16px 0;
  border-top: 1px solid #9C8256;
  border-bottom: 1px solid #9C8256;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .card_content .content .bio {
    padding: 0;
    border: none;
  }
}
.cpt_slider > div .cpt_loop .card_content .content .socials {
  margin-top: 24px;
  justify-content: flex-start;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .card_content .content .socials {
    margin-top: 20px;
  }
}
.cpt_slider > div .cpt_loop .card_content .content p.small {
  margin-bottom: 8px;
}
.cpt_slider > div .cpt_loop .card_content .content h4 {
  margin-bottom: 8px;
}
.cpt_slider > div .cpt_loop .flickity-viewport {
  margin-bottom: 75px;
}
.cpt_slider > div .cpt_loop .flickity-button {
  bottom: -96px;
  top: unset;
  background-color: transparent;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .flickity-button {
    bottom: -74px;
    height: 36px;
    width: 36px;
  }
}
.cpt_slider > div .cpt_loop .flickity-button.previous {
  left: unset;
  right: 133px;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .flickity-button.previous {
    right: 71px;
  }
}
.cpt_slider > div .cpt_loop .flickity-button.next {
  right: 70px;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .flickity-button.next {
    right: 20px;
  }
}
.cpt_slider > div .cpt_loop .flickity-page-dots {
  top: unset;
  bottom: -80px;
  width: unset;
}
@media (max-width: 575px) {
  .cpt_slider > div .cpt_loop .flickity-page-dots {
    bottom: -64px;
  }
}
.cpt_slider > div .cpt_loop .flickity-page-dots .dot {
  background: #806852;
}
.cpt_slider > div .cpt_loop .flickity-page-dots .dot.is-selected {
  background: #9C8256;
}
.cpt_slider.team > div .section-intro {
  flex-direction: column;
  gap: 24px;
}
.cpt_slider.team > div .section-intro .btn-holder {
  justify-content: flex-start;
}
@media (max-width: 992px) {
  .cpt_slider.team > div .section-intro .btn-holder {
    min-width: unset;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .cpt_slider.team > div .section-intro .btn-holder .btn {
    width: initial;
  }
}

.blog_archive {
  background: #806852;
}
.blog_archive > div .section-title {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .blog_archive > div .section-title {
    margin-bottom: 48px;
  }
}
.blog_archive > div .section-title h6 {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .blog_archive > div .section-title h6 {
    margin-bottom: 12px;
  }
}
.blog_archive > div .section-title h2 {
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .blog_archive > div .section-title h2 {
    margin-bottom: 20px;
  }
}
.blog_archive > div .section-title .caption {
  color: #FFFFFF;
}
.blog_archive > div .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .blog_archive > div .section-title .caption p {
    font-size: 1rem;
  }
}
.blog_archive > div .filter-buttons {
  width: 100%;
  margin-bottom: 64px;
}
@media only screen and (max-width: 1050px) {
  .blog_archive > div .filter-buttons {
    margin-bottom: 32px;
  }
}
.blog_archive > div .filter-buttons > div {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1050px) {
  .blog_archive > div .filter-buttons > div {
    flex-direction: column;
    gap: 16px;
  }
}
.blog_archive > div .filter-buttons > div .posts-filter-tags-list {
  display: flex;
  max-width: calc(100% - 400px);
}
@media (max-width: 1050px) {
  .blog_archive > div .filter-buttons > div .posts-filter-tags-list {
    max-width: unset;
    overflow-x: scroll;
  }
}
.blog_archive > div .filter-buttons > div .posts-filter-tags-list::-webkit-scrollbar {
  display: none;
}
.blog_archive > div .filter-buttons > div .posts-filter-tags-list li > a {
  font-family: "DM-Sans", sans-serif;
  display: inline-block;
  min-width: max-content;
  padding: 9px 16px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
}
.blog_archive > div .filter-buttons > div .posts-filter-tags-list li > a.active {
  border: 1px solid #715236;
  background: rgba(182, 166, 150, 0.5);
  color: #614122;
}
.blog_archive > div .filter-buttons > div .posts-filter-search {
  position: relative;
}
.blog_archive > div .filter-buttons > div .posts-filter-search input {
  width: 400px;
  height: 48px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.5) url("../../images/search.svg") no-repeat 12px center;
  background-size: 24px;
  padding-left: 40px;
  font-size: 16px;
}
.blog_archive > div .filter-buttons > div .posts-filter-search input:focus {
  outline: none;
}
.blog_archive > div .filter-buttons > div .posts-filter-search input::placeholder {
  color: #614122;
}
@media (max-width: 1050px) {
  .blog_archive > div .filter-buttons > div .posts-filter-search input {
    width: 100%;
  }
}
.blog_archive > div .filter-buttons > div .posts-filter-search .search-results-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 400px;
  background: #FFFFFF;
  border: 1px solid #CBBFB4;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 10;
}
@media (max-width: 1050px) {
  .blog_archive > div .filter-buttons > div .posts-filter-search .search-results-dropdown {
    width: 100%;
  }
}
.blog_archive > div .filter-buttons > div .posts-filter-search .search-results-dropdown li a {
  display: block;
  padding: 12px 16px;
  color: #313131;
  text-decoration: none;
  font-size: 16px;
}
.blog_archive > div .filter-buttons > div .posts-filter-search .search-results-dropdown li a:hover {
  background-color: #F5F4EA;
}
.blog_archive > div .filter-buttons > div .posts-filter-search .search-results-dropdown li.no-results {
  padding: 12px 16px;
  color: #806852;
  font-size: 16px;
}
.blog_archive > div .post_loop {
  display: flex;
  gap: 48px 32px;
  flex-wrap: wrap;
}
.blog_archive > div .post_loop .single_post {
  width: calc(33.3333333333% - 22px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .blog_archive > div .post_loop .single_post {
    width: calc(50% - 16px);
  }
}
@media (max-width: 575px) {
  .blog_archive > div .post_loop .single_post {
    width: 100%;
  }
}
.blog_archive > div .post_loop .single_post a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_archive > div .post_loop .single_post .image {
  height: 300px;
}
.blog_archive > div .post_loop .single_post .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0 8px 0 0;
}
.blog_archive > div .post_loop .single_post .content {
  background: #E0DAD4;
  padding: 24px;
  border-radius: 0 0 8px 8px;
  flex: 1;
}
.blog_archive > div .post_loop .single_post .content p {
  margin-bottom: 0;
}
.blog_archive > div .post_loop .single_post .content p.small {
  margin-bottom: 16px;
  background: #806852;
  color: #FFFFFF;
  padding: 4px 8px;
  width: fit-content;
}
.blog_archive > div .post_loop .single_post .content h4 {
  color: #444;
  margin-bottom: 8px;
}
.blog_archive > div .post_loop .single_post .content .btn {
  color: #444;
  padding-top: 24px;
}

.team_archive > div .section-title {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .team_archive > div .section-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 575px) {
  .team_archive > div .section-title h5 {
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .team_archive > div .section-title h2 {
    margin-bottom: 20px;
  }
}
.team_archive > div .section-title .caption p {
  font-size: 1.125rem;
  line-height: 150%;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 575px) {
  .team_archive > div .section-title .caption p {
    font-size: 1rem;
  }
}
.team_archive > div .category-tabs {
  display: flex;
  gap: 0 32px;
  justify-content: center;
  margin-bottom: 64px;
}
@media only screen and (max-width: 992px) {
  .team_archive > div .category-tabs {
    margin-bottom: 48px;
  }
}
@media only screen and (max-width: 575px) {
  .team_archive > div .category-tabs {
    gap: 0 16px;
    margin-bottom: 32px;
    overflow-x: scroll;
    justify-content: flex-start;
  }
}
.team_archive > div .category-tabs .category-tab {
  border-radius: 0;
  font-family: "DM-Sans", sans-serif;
  min-width: fit-content;
  font-size: 16px;
  text-transform: initial;
  letter-spacing: normal;
  border: 1px solid transparent;
  background-color: transparent;
  color: #313131;
  font-weight: normal;
}
.team_archive > div .category-tabs .category-tab.active {
  border: 1px solid #CBBFB4;
  background-color: rgba(255, 255, 255, 0.5);
}
.team_archive > div .people_loop {
  display: flex;
  gap: 48px 32px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1200px) {
  .team_archive > div .people_loop {
    gap: 32px 0;
  }
}
.team_archive > div .people_loop .card_content {
  width: calc(25% - 24px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.team_archive > div .people_loop .card_content.hidden-item {
  display: none;
}
@media only screen and (max-width: 992px) {
  .team_archive > div .people_loop .card_content {
    width: 100%;
  }
}
.team_archive > div .people_loop .card_content .image {
  height: 288px;
}
@media (max-width: 575px) {
  .team_archive > div .people_loop .card_content .image {
    height: 221px;
  }
}
.team_archive > div .people_loop .card_content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team_archive > div .people_loop .card_content .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.team_archive > div .people_loop .card_content .content h5 {
  font-family: "DM-Sans", sans-serif;
  margin-bottom: 0;
}
.team_archive > div .people_loop .card_content .content p {
  margin-bottom: 24px;
}
.team_archive > div .people_loop .card_content .content p.medium {
  margin-bottom: 16px;
  color: #806852;
}
.team_archive > div .people_loop .flickity-viewport {
  width: 100%;
}
.team_archive > div .people_loop .flickity-viewport .card_content {
  width: 100%;
  margin-left: 2px;
  flex-direction: column;
}
.team_archive > div .people_loop .flickity-viewport .card_content .image {
  height: 221px;
  width: 100%;
}
.team_archive > div .people_loop .flickity-viewport .card_content .content {
  width: 100%;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .team_archive > div .people_loop .flickity-viewport {
    margin-bottom: 75px;
  }
}
.team_archive > div .see-more-holder {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.team_archive > div .see-more-holder .see-more-team {
  background-color: transparent;
}
.team_archive > div .see-more-holder .see-more-team:hover {
  background-color: #6B7A5E;
}

.single .blog-hero {
  background: #806852;
  justify-content: space-between;
  min-height: 600px;
  display: flex;
  gap: 80px;
}
@media (max-width: 1200px) {
  .single .blog-hero {
    gap: 48px;
    flex-direction: column;
  }
}
.single .blog-hero .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single .blog-hero .left h2 {
  color: #FFFFFF;
}
.single .blog-hero .left .blog-details h6 {
  color: #E0DAD4;
  margin-bottom: 8px;
  letter-spacing: normal;
}
.single .blog-hero .left .blog-details .author {
  margin-bottom: 32px;
}
.single .blog-hero .left .blog-details .author .date p {
  color: white;
}
.single .blog-hero .left .blog-details .share_section .share .social-img img {
  background: #A18D7C;
  padding: 4px;
  border-radius: 50px;
}
.single .blog-hero .left .blog-details .share_section .share #copy_link {
  cursor: pointer;
}
.single .blog-hero .right .image {
  width: 100%;
  height: 450px;
  max-width: 750px;
}
@media (max-width: 1200px) {
  .single .blog-hero .right .image {
    max-width: unset;
  }
}
@media (max-width: 575px) {
  .single .blog-hero .right .image {
    height: 220px;
  }
}
.single .blog-hero .right .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single .content {
  max-width: 768px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .single .content {
    flex-direction: column-reverse;
    gap: 48px;
  }
}
.single .content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ------------------------------------------------------------------------- *
/* 7. PLUGINS */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- *
/* GRAVITY FORM */
/* ------------------------------------------------------------------------- */
.gform_wrapper .gform_body .gform_fields {
  row-gap: 24px;
}
.gform_wrapper .gform_body .gform_fields .gfield label {
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #313131;
}
.gform_wrapper .gform_body .gform_fields .gfield input {
  height: 48px;
  padding: 12px;
  border: 1px solid #CBBFB4;
  background: #FFFFFF;
  border-radius: 0;
  font-size: 1rem;
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #CBBFB4;
}
.gform_wrapper .gform_body .gform_fields .gfield input::placeholder {
  color: #CBBFB4;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield select {
  height: 48px;
  padding: 12px;
  border: 1px solid #CBBFB4;
  background: #FFFFFF;
  border-radius: 0;
  font-size: 1rem;
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #CBBFB4;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea {
  height: 180px;
  min-height: unset;
  padding: 12px;
  border: 1px solid #CBBFB4;
  background: #FFFFFF;
  border-radius: 0;
  font-size: 1rem;
  font-family: "DM-Sans", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  color: #CBBFB4;
}
.gform_wrapper .gform_body .gform_fields .gfield textarea::placeholder {
  color: #CBBFB4;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent input {
  height: 18px;
  width: 18px;
  padding: 0;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label {
  font-family: "DM-Sans", sans-serif;
  font-size: 0.875rem;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 16px;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a {
  font-family: "DM-Sans", 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: #CBBFB4;
  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 {
  display: flex !important;
  align-items: center !important;
  color: #614122 !important;
  justify-content: center !important;
  border: 1px solid #614122 !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 100% !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  width: fit-content;
  padding: 10px 14px !important;
  max-height: 48px;
  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;
  background-size: 0 100%, auto;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px !important;
  background-color: transparent !important;
}
.gform_wrapper .gform_footer button:hover {
  color: #FFFFFF !important;
  border-color: #6B7A5E !important;
  background-color: #6B7A5E !important;
}

/* ------------------------------------------------------------------------- *
/* COOKIE BOT */
/* ------------------------------------------------------------------------- */
#CybotCookiebotDialog {
  background-color: rgba(0, 0, 0, 0) !important;
  color: rgba(0, 0, 0, 0) !important;
}

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

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

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

#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  color: rgba(0, 0, 0, 0) !important;
  background: #806852 !important;
  padding: 16px 32px !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:hover,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:hover,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover {
  color: #806852 !important;
  background-color: white !important;
  border-color: #455560 !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:active,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:active,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:active {
  color: #806852 !important;
}
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept:disabled,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept:disabled,
#CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:disabled {
  cursor: not-allowed !important;
}

#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border-radius: 2px !important;
  background: transparent !important;
  border-color: #455560 !important;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:hover {
  border: 1px solid #806852 !important;
  background: #806852 !important;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:active {
  color: #806852 !important;
  border: 1px solid #806852 !important;
}
#CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton:disabled {
  background: transparent !important;
}

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

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

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

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

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

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

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

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

#CybotCookiebotDialogDetailBodyContentCookieContainerTypes .CybotCookiebotDialogDetailBodyContentCookieProvider:not(.CybotCookiebotDialogDetailBodyContentCookieInfoCount) {
  color: rgba(0, 0, 0, 0) !important;
}

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

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

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

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

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