*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer,
header,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

ul.bullets {
  list-style: disc;
  margin-left: 1em;
}

ol.bullets {
  list-style: decimal;
  margin-left: 1em;
}
ol.bullets li::marker {
  font-weight: bold;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

/*
VARIABLES
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
  padding: 6px 6px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.8;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #B0943A;
}

.hamburger-box {
  width: 36px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 36px;
  height: 4px;
  background-color: #88888F;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 72px;
}
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
SOURCE:
https://css-tricks.com/in-praise-of-the-unambiguous-click-menu/
https://codepen.io/mrwweb/pen/pXqKZO
https://github.com/mrwweb/clicky-menus
*/
/**
 * Initial state, hidden off screen
 */
.clicky-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden; /*[1]*/
}

/**
 * No JS fallback
 *
 * Triggers menus on hover rather than click. Supports keyboard navigation in modern browsers.
 */
.clicky-menu.no-js li:hover > ul {
  visibility: visible;
}

.clicky-menu.no-js li:focus-within > ul { /*[2]*/
  visibility: visible;
}

/**
 * Open/Close Menu Behavior with JS
 */
.clicky-menu ul[aria-hidden=false] {
  visibility: visible;
}

/* Prevent offscreen-submenus */
.clicky-menu .sub-menu--right {
  left: auto !important;
  right: 0 !important;
}

/**
 * Footnotes
 *
 * [1] Using `visibility` instead of `display` allows for easier transitions and animation of submenus
 * [2] Must be a separate ruleset so that hover works in non-modern browsers
 */
/* Hidden SVG used for down arrows */
.clicky-menu {
  justify-content: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* General Link & Button Styles */
/* Top Level Items */
.clicky-menu > li {
  position: relative;
}

.clicky-menu > li > a,
.clicky-menu > li > button {
  border: 0;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  padding: 0;
}

/* Icon */
.clicky-menu svg {
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
}

.clicky-menu [aria-expanded=true] svg {
  transform: scaleY(-1);
}

/* Responsive Submenu Behavior */
.clicky-menu ul[aria-hidden=false] {
  position: static;
}

@media (min-width: 1024px) {
  .clicky-menu ul[aria-hidden=false] {
    position: absolute;
  }
}
/* Submenu Links */
.clicky-menu ul a {
  display: inline-block;
  padding-top: 0.375em;
  padding-bottom: 0.375em;
}

.overflow-scroll {
  overflow-y: scroll;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}
.flex.-rc {
  flex-direction: row;
}
@media (min-width: 768px) {
  .flex.-rc {
    flex-direction: column;
  }
}
.flex.-cr {
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex.-cr {
    flex-direction: row;
  }
}
.flex.-rc-lg {
  flex-direction: row;
}
@media (min-width: 960px) {
  .flex.-rc-lg {
    flex-direction: column;
  }
}
.flex.-cr-sm2 {
  flex-direction: column;
}
@media (min-width: 620px) {
  .flex.-cr-sm2 {
    flex-direction: row;
  }
}
.flex.-cr-lg {
  flex-direction: column;
}
@media (min-width: 960px) {
  .flex.-cr-lg {
    flex-direction: row;
  }
}
.flex.-cc {
  flex-direction: column;
}
.flex.-rr {
  flex-direction: row;
}
.flex.-wrap {
  flex-wrap: wrap;
}
.flex.-align-start {
  align-items: flex-start;
}
.flex.-align-end {
  align-items: flex-end;
}
.flex.-justify-spread {
  justify-content: space-between;
}
.flex.-justify-center-start {
  justify-content: center;
}
@media (min-width: 768px) {
  .flex.-justify-center-start {
    justify-content: flex-start;
  }
}
.flex.-gap1 {
  gap: 1em;
}
.flex.-gap1-2 {
  gap: 1em 2em;
}
.flex.-gap2 {
  gap: 2em;
}
.flex.-gap3 {
  gap: 3em;
}
.flex.-gap4 {
  gap: 4em;
}
.flex.-gap5 {
  gap: 5em;
}
.flex.-gap6 {
  gap: 6em;
}

.bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.bg.-cover {
  background-size: cover;
}
.bg.-contain {
  background-size: contain;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.uc {
  text-transform: uppercase;
}

.nomargin {
  margin: 0 !important;
}

.respimg {
  width: 100%;
}

.rel {
  position: relative;
}

.bold, b, strong {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.bg_white {
  background-color: #fff;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.small {
  font-size: 90% !important;
}

.smaller {
  font-size: 80% !important;
}

.xsmaller {
  font-size: 70% !important;
}

.stretch {
  letter-spacing: 2px;
}

.pointer {
  cursor: pointer;
}

.sm-down {
  display: none;
}
@media (max-width: 619px) {
  .sm-down {
    display: block;
  }
}

.sm2-down {
  display: none;
}
@media (max-width: 767px) {
  .sm2-down {
    display: block;
  }
}

.md-up {
  display: none;
}
@media (min-width: 768px) {
  .md-up {
    display: block;
  }
}

.lg-up {
  display: none;
}
@media (min-width: 960px) {
  .lg-up {
    display: block;
  }
}

/*
.xs-up, .sm-up,	.md-up, .lg-up, .xl-up,
.xs-down, .sm-down,	.md-down, .lg-down, .xl-down {
	display:none;
}

.xs-up {
	@include media-breakpoint-up(xxs) {
		display:block;
	}
}
.sm-up {
	@include media-breakpoint-up(sm) {
		display:block;
	}
}
.md-up {
	@include media-breakpoint-up(md) {
		display:block;
	}
}
.lg-up {
	@include media-breakpoint-up(lg) {
		display:block;
	}
}
.xl-up {
	@include media-breakpoint-up(xl) {
		display:block;
	}
}

.xs-down {
	@include media-breakpoint-down(xs) {
		display:block;
	}
}
.md-down {
	@include media-breakpoint-down(md) {
		display:block;
	}
}
.lg-down {
	@include media-breakpoint-down(lg) {
		display:block;
	}
}
.xl-down {
	@include media-breakpoint-down(xl) {
		display:block;
	}
}
*/
/* spacing helpers
p,m = padding,margin
a,t,r,b,l,h,v = all,top,right,bottom,left,horizontal,vertical
s,m,l,x,xl,n = small(0.5em),medium(1em),large(2em),x-large(3em),xx-large(4em),none(0)
*/
.pbn, .pvn, .pan {
  padding-bottom: 0 !important;
}

.mtn, .mvn, .man {
  margin-top: 0 !important;
}

.mts, .mvs, .mas {
  margin-top: 0.5em !important;
}

.mtm, .mvm, .mam {
  margin-top: 1em !important;
}

.mtl, .mvl, .mal {
  margin-top: 1.5em !important;
}

.mtx, .mvx, .max {
  margin-top: 2em !important;
}

.mbn, .mvn, .man {
  margin-bottom: 0 !important;
}

.mbs, .mvs, .mas {
  margin-bottom: 0.5em !important;
}

.mbm, .mvm, .mam {
  margin-bottom: 1em !important;
}

.mbl, .mvl, .mal {
  margin-bottom: 1.5em !important;
}

.mbx, .mvx, .max {
  margin-bottom: 2em !important;
}

.mbxl, .mvxl, .maxl {
  margin-bottom: 3em !important;
}

.mbxxl, .mvxxl, .maxxl {
  margin-bottom: 4em !important;
}

.mtxl, .mvxl, .maxl {
  margin-top: 3em !important;
}

.mtxxl, .mvxxl, .maxxl {
  margin-top: 4em !important;
}

/* ==========================================================================
   OVERLAY
   ========================================================================== */
.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay.-opacity-10:after {
  background-color: rgba(0, 0, 0, 0.1);
}
.overlay.-opacity-20:after {
  background-color: rgba(0, 0, 0, 0.2);
}
.overlay.-opacity-40:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.-opacity-50:after {
  background-color: rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.visuallyhidden, .screen-reader-text {
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus,
.screen-reader-text.focusable:active,
.screen-reader-text.focusable:focus {
  clip: auto;
  -webkit-clip-path: none;
  clip-path: none;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

.font-main {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.font-main-bold {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.font-alt {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.font-alt-bold {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-style: normal;
}

.font-button {
  font-family: "Oswald", sans-serif, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#site_env {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 1em;
  background: red;
  color: white;
  width: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #545d59;
  max-width: 100%;
  color: #4D4D4D;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  line-height: 1.25;
}

h1, h2, h3, h4, h5 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.2;
  margin: 0 0 0.7em 0;
  font-variant-numeric: lining-nums;
}

h1, h2.h1 {
  font-size: clamp(2.125rem, -0.25rem + 6.333vw, 4.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.875rem, 1rem + 2.333vw, 2.75rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.5rem, 1.125rem + 1vw, 1.875rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.25rem, 0.875rem + 1vw, 1.625rem);
  font-weight: 500;
  margin-bottom: 1em;
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1em;
}

p {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(0.938rem, 0.875rem + 0.167vw, 1rem);
  line-height: 1.55;
  margin: 0 0 1em 0;
  font-weight: 400;
}
p a {
  display: inline-block;
}

ol, ul {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(0.938rem, 0.875rem + 0.167vw, 1rem);
}

a, .link-transition {
  color: #00723F;
  transition: color 0.15s ease-in-out;
}
a:hover, .link-transition:hover {
  color: #B0943A;
}

.site-wrapper {
  width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  overflow: hidden;
}

.max-width {
  max-width: 1920px;
}

#page-container {
  transition: greyscale 0.25s ease-in-out, blur 0.25s ease-in-out;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 89px;
}
#page-container.blurred {
  -webkit-filter: grayscale(65%) blur(2px);
  filter: grayscale(65%) blur(2px);
}
@media (min-width: 1024px) {
  #page-container {
    position: relative;
    margin-top: 101px;
  }
  #page-container.blurred {
    -webkit-filter: unset;
    filter: unset;
  }
}
@media (max-width: 767px) {
  .error404 .hero_banner {
    margin-bottom: 0;
  }
  .error404 .hero_banner .text .copy2 {
    display: block;
  }
}
@media (min-width: 768px) {
  .error404 .hero_banner {
    margin-bottom: 3em;
  }
}

@media screen and (max-width: 599px) {
  .admin-bar {
    margin-top: -46px;
  }
  .admin-bar #wpadminbar {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .admin-bar header {
    top: 46px;
  }
}
@media screen and (min-width: 782px) {
  .admin-bar header {
    top: 32px;
  }
}

header {
  height: auto;
  padding: 1.5em 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  position: fixed;
  top: 0;
  z-index: 5;
  left: 0;
  right: 0;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
}
@media (min-width: 1024px) {
  header {
    padding: 2em;
  }
}
header .logo {
  z-index: 3;
}
@media (min-width: 1024px) {
  header .logo {
    margin-top: -6px;
  }
}
header .logo svg {
  display: block;
  width: 173px;
  height: 35px;
}
@media (min-width: 512px) {
  header .logo svg {
    width: 203px;
    height: 41px;
  }
}
header .mobile_menu_bar.hamburger {
  display: flex;
  z-index: 3;
  margin-top: 5px;
}
@media (min-width: 1024px) {
  header .mobile_menu_bar.hamburger {
    display: none;
  }
}
header.nav-is-active {
  z-index: 10;
}

footer {
  background-color: #00341D;
  width: 100%;
  padding: 0;
  color: #ffffff;
  position: relative;
}
footer .rolex-clock {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #036039;
  text-align: center;
}
footer .wrapper {
  padding: 3em 2em;
  gap: 4em;
  justify-content: space-between;
  align-items: center;
}
footer .wrapper .logo svg {
  width: 230px;
  height: 47px;
  filter: grayscale(1) brightness(5);
  -webkit-filter: grayscale(1) brightness(5);
}
footer .wrapper > div.legal-social {
  order: 1;
  gap: 2em;
}
footer .wrapper > div.legal-social ul:first-child {
  order: 1;
}
footer .wrapper h4 {
  display: block;
}
footer .wrapper ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}
footer .wrapper ul.contact {
  gap: 0.4em;
}
footer .wrapper ul.menu {
  gap: 0.5em;
  line-height: 1.5;
}
@media (min-width: 768px) {
  footer .wrapper {
    gap: 1em;
    align-items: flex-start;
    font-size: 0.9rem;
  }
  footer .wrapper h4 {
    padding-left: 0;
    padding-right: 2em;
  }
  footer .wrapper ul {
    align-items: flex-start;
    text-align: left;
  }
  footer .wrapper ul:not(.social) {
    margin-top: 0.7em;
  }
  footer .wrapper ul.menu {
    columns: 2;
    column-gap: 0;
    display: block;
    line-height: 1.7;
  }
  footer .wrapper .logo svg {
    width: 210px;
    height: 43px;
  }
  footer .wrapper > div {
    align-items: flex-start;
  }
  footer .wrapper > div.legal-social {
    order: unset;
    padding-top: 6em;
    align-items: flex-end;
  }
  footer .wrapper > div.legal-social ul:first-child {
    order: unset;
  }
}
@media (min-width: 960px) {
  footer .wrapper .logo svg {
    width: 230px;
    height: 47px;
  }
}
@media (min-width: 1200px) {
  footer .wrapper {
    max-width: 1400px;
    margin: 0 auto;
  }
  footer .wrapper > div {
    flex: unset;
  }
}
footer a {
  color: #fff;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
}
footer a:hover {
  color: #B0943A;
}
footer ul.social {
  display: flex;
  flex-direction: row;
  gap: 1.5em;
  align-items: center;
}
footer ul.social li {
  margin-bottom: 0;
}
footer ul.social a svg {
  width: 1.6em;
  height: 1.6em;
  fill: #ffffff;
  transition: fill 0.25s ease-in-out;
}
@media (min-width: 960px) {
  footer ul.social a svg {
    width: 1.9em;
    height: 1.9em;
  }
}
footer ul.social a svg:hover {
  fill: #B0943A;
}

#nav-main {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  padding: 1em 2em 2em;
  text-align: center;
  box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 1px 4px 5px 0px rgba(0, 0, 0, 0.4);
  z-index: 2;
  opacity: 0;
}
#nav-main .logo-nav-open {
  margin-bottom: 1.5em;
}
#nav-main ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0;
  font-size: 1.5rem;
  align-items: flex-start;
}
#nav-main ul.menu a, #nav-main ul.menu button {
  text-decoration: none;
  padding-bottom: 0;
  color: #00723F;
  transition: all 0.15s ease-in-out;
  background-color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
#nav-main ul.menu a:hover, #nav-main ul.menu button:hover {
  color: #00723F;
}
#nav-main ul li {
  width: 100%;
  line-height: 3;
  border-bottom: 1px solid #B0943A;
  text-align: left;
  padding-left: 2rem;
}
#nav-main ul li.has-search-icon {
  padding: 1rem 0 0 0;
  order: 2;
}
#nav-main ul li.has-button {
  line-height: 1;
  text-align: center;
  margin-right: 4rem;
  order: 1;
}
#nav-main ul li.current-menu-item a, #nav-main ul li.current-menu-item button, #nav-main ul li.current-page-ancestor a, #nav-main ul li.current-page-ancestor button {
  color: #00723F;
}
#nav-main ul li.menu-item-has-children button {
  position: relative;
}
#nav-main ul li.menu-item-has-children button[aria-expanded=true], #nav-main ul li.menu-item-has-children button:hover {
  color: #00723F;
}
#nav-main ul li.menu-item-has-children button::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 11 7"><path stroke="%23B0943A" stroke-linecap="round" stroke-linejoin="round" d="m1 1 5 5.5L10.5 1"/></svg>');
  position: absolute;
  top: 0px;
  left: -2rem;
  z-index: 1;
  width: 0.8em;
}
#nav-main ul li.menu-item-has-children button[aria-expanded=true]::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 11 7"><path stroke="%2300723F" stroke-linecap="round" stroke-linejoin="round" d="m1 1 5 5.5L10.5 1"/></svg>');
  top: 0px;
  left: -2.1rem;
  transform: rotate(270deg);
}
#nav-main ul li.menu-item-has-children button:hover::after {
  opacity: 0.85;
}
#nav-main ul ul.sub-menu {
  flex-direction: column;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 3px;
  align-items: center;
  width: 100%;
  margin: -0.5rem 0 2rem 0;
  font-size: 1.2rem;
}
#nav-main ul ul.sub-menu li {
  line-height: 1.25;
  border: none;
  padding-left: 0;
}
#nav-main ul ul.sub-menu li a {
  color: #4D4D4D;
  font-weight: 400;
  padding-bottom: 0;
  transition: none;
}
#nav-main ul ul.sub-menu li.current-menu-item a {
  color: #00723F;
}
@media (max-width: 1023px) {
  #nav-main > ul.menu > li:nth-last-child(-n+2) {
    border-bottom: none;
    width: auto;
    align-self: center;
    padding: 1.5rem 0 1rem 0;
  }
}
@media (min-width: 1024px) {
  #nav-main {
    display: block !important;
    position: relative;
    border: none;
    box-shadow: none;
    background: none;
    padding: 0;
    width: auto;
    top: unset !important;
    opacity: 1 !important;
    z-index: 1;
  }
  #nav-main .logo-nav-open {
    display: none;
  }
  #nav-main ul.menu {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 1em;
    font-weight: 400;
    font-size: 1.15rem;
  }
  #nav-main ul.menu > li {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    line-height: 1;
    border: none;
    padding-left: 0;
    width: auto;
  }
  #nav-main ul.menu > li:not(.has-button) {
    padding-top: 9px;
  }
  #nav-main ul.menu > li.has-search-icon {
    order: 1;
    cursor: pointer;
  }
  #nav-main ul.menu > li.has-search-icon .searchform {
    display: none;
  }
  #nav-main ul.menu > li.has-search-icon a {
    content-visibility: hidden;
  }
  #nav-main ul.menu > li.has-search-icon:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="%2300723F" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2.5-5.5a7.5 7.5 0 11-15 0 7.5 7.5 0 0115 0z"/></svg>');
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
  }
  #nav-main ul.menu > li.has-search-icon.active:after, #nav-main ul.menu > li.has-search-icon:hover:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"><path stroke="%23B0943A" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 21l-6-6m2.5-5.5a7.5 7.5 0 11-15 0 7.5 7.5 0 0115 0z"/></svg>');
  }
  #nav-main ul.menu > li.has-button {
    padding: 0;
    margin-right: 0;
    order: 2;
  }
  #nav-main ul.menu > li.has-button a {
    font-size: 1.05rem;
  }
  #nav-main ul.menu > li.menu-item-has-children button::before {
    top: 0px;
    right: -24px;
    left: unset;
    width: 0.85em;
  }
  #nav-main ul.menu > li.menu-item-has-children button[aria-expanded=true]::before {
    top: -1px;
    right: -23px;
    transform: rotate(90deg);
  }
  #nav-main ul.menu > li.menu-item-has-children button:hover::before {
    opacity: 0.85;
  }
  #nav-main ul.menu a, #nav-main ul.menu button {
    padding-bottom: 0px;
    background-color: transparent;
    color: #4D4D4D;
  }
  #nav-main ul.menu li.current-menu-item a, #nav-main ul.menu li.current-menu-item button, #nav-main ul.menu li.current-page-ancestor a, #nav-main ul.menu li.current-page-ancestor button {
    font-weight: 700;
  }
  #nav-main ul.menu ul.sub-menu {
    position: absolute;
    left: auto;
    right: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.2em;
    align-items: flex-end;
    flex-direction: column;
    width: max-content;
    z-index: 2;
    display: none;
    margin: 0.5em 0 0 0;
  }
  #nav-main ul.menu ul.sub-menu[aria-hidden=false] {
    display: flex;
  }
  #nav-main ul.menu ul.sub-menu li {
    text-align: right;
  }
  #nav-main ul.menu ul.sub-menu li a {
    font-weight: 400;
    padding-bottom: 0;
    line-height: 1;
    border-bottom: 1px solid transparent;
    transition: all 0.15s ease-in-out;
  }
  #nav-main ul.menu ul.sub-menu li a:hover {
    border-bottom: 1px solid #B0943A;
  }
  #nav-main ul.menu ul.sub-menu li.current-menu-item a {
    font-weight: 700;
  }
  #nav-main li.menu-item-has-children {
    margin-right: 22px;
  }
}
@media (min-width: 1200px) {
  #nav-main ul.menu {
    gap: 1.6em;
    font-size: 1.2rem;
  }
}

#nav-404-ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
  align-items: center;
  border-top: 1px solid #B0943A;
  border-bottom: 1px solid #B0943A;
  padding: 2em 4em;
  width: fit-content;
  margin: 2em auto;
}
@media (min-width: 768px) {
  #nav-404-ul {
    flex-direction: row;
    gap: 0.8em;
    font-size: 0.9rem;
  }
}
@media (min-width: 960px) {
  #nav-404-ul {
    flex-direction: row;
    gap: 1.5em;
    font-size: 1rem;
  }
}
#nav-404-ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
VIDEO HERO
*/
section.video_hero {
  position: relative;
  overflow: hidden;
}
section.video_hero.f-carousel.has-dots {
  margin-bottom: 0 !important;
}
section.video_hero .f-carousel__dots {
  bottom: 0.25em;
  z-index: 3;
}
section.video_hero .f-carousel__dots button[aria-selected=true] .f-carousel__dot {
  background-color: #00723F !important;
}
section.video_hero .f-carousel__dots :focus-visible {
  outline: none;
  box-shadow: none;
}
section.video_hero .f-carousel__viewport {
  position: absolute;
  overflow: hidden;
  z-index: 3;
}
section.video_hero .f-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.video_hero .content {
  position: absolute;
  padding: 1em;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-bottom: 2em;
}
section.video_hero .content h1, section.video_hero .content h2 {
  margin: 0 auto 0.5em;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
  text-wrap: balance;
  max-width: 1300px;
}
section.video_hero .content h1 span, section.video_hero .content h2 span {
  display: block;
  font-weight: 500;
  padding-bottom: 0.35em;
  text-transform: none;
  font-size: clamp(1.5rem, 0.375rem + 3vw, 2.625rem);
}
section.video_hero .content h1.reverse span, section.video_hero .content h2.reverse span {
  padding-top: 0.5em;
  padding-bottom: 0;
}
section.video_hero .hero-bg {
  width: 100%;
  position: relative;
  min-height: 20em;
  max-height: 40em;
  object-fit: cover;
  z-index: 1;
}
@media (min-width: 512px) {
  section.video_hero .f-carousel__dots {
    bottom: 0.75em;
  }
}
@media (min-width: 620px) {
  section.video_hero .f-carousel__dots {
    bottom: 1.5em;
  }
}
@media (min-width: 768px) {
  section.video_hero .f-carousel__dots {
    bottom: 2em;
  }
  section.video_hero .content {
    margin-bottom: 3em;
  }
}

body.page section.video_hero .content {
  margin-bottom: 0;
}
body.page section.video_hero .hero-bg {
  height: 16em;
  object-fit: cover;
}
@media (min-width: 768px) {
  body.page section.video_hero .hero-bg {
    height: 26em;
  }
}
@media (min-width: 1024px) {
  body.page section.video_hero .hero-bg {
    height: 29em;
  }
}
@media (min-width: 1200px) {
  body.page section.video_hero .hero-bg {
    height: 33em;
  }
}
body.page section.video_hero.video-full .hero-bg {
  height: auto;
  min-height: 16em;
  max-height: unset;
  object-fit: cover;
}
@media (min-width: 768px) {
  body.page section.video_hero.video-full .hero-bg {
    min-height: unset;
    object-fit: contain;
  }
}

@media (min-width: 1200px) {
  body.home section.video_hero.video-full .hero-bg {
    object-fit: cover;
    height: calc(100vh - 190px);
  }
}

/*
PAGE HERO
*/
section.page_hero {
  padding: 0 2em;
  align-items: center;
  justify-content: center;
  text-wrap: balance;
  text-align: center;
  height: 16em;
  background-color: #B0943A;
  border-bottom: 3px solid #B0943A;
  position: relative;
  margin-bottom: 18px;
}
section.page_hero .erinhills_seal {
  position: absolute;
  bottom: -0.85em;
  right: auto;
  left: auto;
  width: 1.5em;
  height: auto;
  z-index: 4;
}
section.page_hero .bg-green.gradient {
  position: absolute;
  bottom: -21px;
  height: 18px;
  width: 100%;
}
section.page_hero.overlay > div {
  position: relative;
  z-index: 1;
}
section.page_hero h1 {
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 0;
  line-height: 1.1;
}
@media (min-width: 768px) {
  section.page_hero.size-sm {
    height: 18em;
  }
  section.page_hero.size-md {
    height: 21em;
  }
  section.page_hero.size-lg {
    height: 26em;
  }
}
@media (min-width: 1024px) {
  section.page_hero {
    margin-bottom: 0;
  }
  section.page_hero.size-sm {
    height: 20em;
  }
  section.page_hero.size-md {
    height: 23em;
  }
  section.page_hero.size-lg {
    height: 29em;
  }
  section.page_hero .bg-green.gradient {
    display: none;
  }
}
@media (min-width: 1200px) {
  section.page_hero.size-md {
    height: 25em;
  }
  section.page_hero.size-lg {
    height: 33em;
  }
}

/*
CARDS
*/
section.cards {
  text-align: center;
}
section.cards .flex {
  align-items: flex-start;
  justify-content: space-evenly;
}
section.cards .item {
  width: 100%;
  max-width: 30em;
}
@media (min-width: 960px) {
  section.cards .item {
    flex: 1;
  }
}
section.cards.cards-3 .flex, section.cards.cards-5 .flex {
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  section.cards.cards-3 .flex, section.cards.cards-5 .flex {
    flex-wrap: nowrap;
  }
}
@media (min-width: 620px) {
  section.cards.cards-3 .item, section.cards.cards-5 .item {
    width: 45%;
  }
}
@media (min-width: 768px) {
  section.cards.cards-3 .item, section.cards.cards-5 .item {
    height: 21em;
  }
}
@media (min-width: 1024px) {
  section.cards.cards-3 .item, section.cards.cards-5 .item {
    height: 25em;
  }
}
section.cards.cards-4 .flex {
  flex-wrap: wrap;
}
@media (min-width: 620px) {
  section.cards.cards-4 .item {
    width: 45%;
  }
}
section.cards.style-default .item {
  position: relative;
  height: 20em;
  border-radius: 7px;
}
section.cards.style-default .item .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
  border-top: 2px solid #B0943A;
  z-index: 1;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  min-height: 5em;
  padding: 0.5em;
  align-items: center;
  /* 
  https://keithjgrant.com/posts/2017/07/transitioning-gradients/
  */
}
section.cards.style-default .item .content h3 {
  color: #fff !important;
  margin-bottom: 0;
  line-height: 1.3;
}
section.cards.style-default .item .content::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #00723F;
  z-index: -1;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
section.cards.style-default .item:hover .content::before {
  opacity: 1;
}
section.cards.style-default .button_group {
  margin-top: 2.5em;
}
section.cards.style-stacked .image_wrapper {
  height: 16em;
  border-radius: 7px;
  border-bottom: none;
  margin-bottom: 1.5em;
}
@media (min-width: 1024px) {
  section.cards.style-stacked .image_wrapper {
    height: 18em;
  }
}
section.cards.style-stacked .button_group {
  margin-top: 1.5em;
}
section.cards.style-grid .flex {
  flex-wrap: wrap;
}
section.cards.style-grid .item {
  height: auto;
  flex: auto;
  align-self: stretch;
  background-color: #00723F;
  border-radius: 7px;
}
@media (min-width: 960px) {
  section.cards.style-grid .item {
    width: calc(33.3333333333% - 2em);
  }
}
section.cards.style-grid .item .image_wrapper {
  height: 10em;
  border-bottom: 2px solid #B0943A;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
@media (min-width: 768px) {
  section.cards.style-grid .item .image_wrapper {
    height: 12em;
  }
}
@media (min-width: 1024px) {
  section.cards.style-grid .item .image_wrapper {
    height: 13em;
  }
}
@media (min-width: 1200px) {
  section.cards.style-grid .item .image_wrapper {
    height: 15em;
  }
}
@media (min-width: 1500px) {
  section.cards.style-grid .item .image_wrapper {
    height: 17em;
  }
}
section.cards.style-grid .item .content {
  background-color: #00723F;
  height: auto;
  color: #ffffff;
  padding: 1em;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
@media (min-width: 768px) {
  section.cards.style-grid .item .content {
    padding: 1em 1.5em;
  }
}
@media (min-width: 1500px) {
  section.cards.style-grid .item .content {
    padding: 1em 2em;
  }
}
section.cards.journal_grid .flex {
  gap: 5em 2em;
}
section.cards.journal_grid .item {
  background-color: transparent;
}
section.cards.journal_grid .item .image_wrapper {
  border-bottom: none;
  display: block;
}
section.cards.journal_grid .button_group {
  margin: 3em 0;
}
section.cards.media_highlight .item {
  height: auto;
}
section.cards.media_highlight .media_thumbnail {
  height: 15em;
}
section.cards.media_highlight h3 {
  margin: 0.7em 0;
}

/*
PROMO BAR
*/
section.promo_bar {
  padding: 2em;
}
section.promo_bar .content {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 7px;
  padding: 2em 4em;
  gap: 1.2em;
  color: #4D4D4D;
  max-width: 1024px;
}
section.promo_bar .content p {
  margin-bottom: 0;
}
section.promo_bar .content h2 {
  margin-bottom: 0;
}
section.promo_bar .content .button_group .button {
  background-color: #00723F !important;
}
section.promo_bar .content .button_group .button::before {
  background-image: linear-gradient(90deg, #00341D 0%, #00723F 100%);
}

/*
CTA BAR
*/
section.cta_bar {
  gap: 1.5em;
  text-align: center;
  text-wrap: balance;
}
section.cta_bar p {
  margin-bottom: 0;
}
section.cta_bar h2 {
  margin-bottom: 0;
}

/*
SHOP PRODUCTS
*/
section.shop_products .f-carousel {
  --f-carousel-spacing: 2em;
  --f-carousel-slide-width: calc(100% - 4em);
  padding: 0 2em;
}
section.shop_products .f-carousel .item {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background-color: #ffffff;
  text-align: left;
  text-decoration: none;
  color: #4D4D4D;
  padding: 0.5em 1em 1em;
  border-radius: 7px;
  transition: all 0.15s ease-in-out;
}
section.shop_products .f-carousel .item img {
  width: 100%;
  height: auto;
}
section.shop_products .f-carousel .item p {
  margin-bottom: 0;
}
section.shop_products .button_group {
  margin-top: 2em;
}
@media (min-width: 620px) {
  section.shop_products .f-carousel {
    padding: 0;
    --f-carousel-slide-width: calc((100% - 4em) / 2);
  }
}
@media (min-width: 768px) {
  section.shop_products .f-carousel {
    --f-carousel-slide-width: calc((100% - 5em) / 3);
  }
}
@media (min-width: 1024px) {
  section.shop_products .f-carousel {
    --f-carousel-slide-width: calc((100% - 6em) / 4);
  }
  section.shop_products .button_group {
    margin-top: 2.5em;
  }
}
@media (min-width: 1500px) {
  section.shop_products .f-carousel {
    --f-carousel-slide-width: calc((100% - 9em) / 5);
  }
}

/*
TEXT & IMAGE, ROOM PRICES, BLOG LISTING
*/
section.text_image,
section.room_prices,
section.blog_listing {
  padding-top: 3em;
  padding-bottom: 3em;
}
section.text_image .section_header + .wrapper,
section.room_prices .section_header + .wrapper,
section.blog_listing .section_header + .wrapper {
  margin-top: 4em;
}
section.text_image .wrapper,
section.room_prices .wrapper,
section.blog_listing .wrapper {
  width: 100%;
  gap: 1.5em;
}
section.text_image .content,
section.room_prices .content,
section.blog_listing .content {
  width: 100%;
  text-align: center;
}
section.text_image .content h3,
section.room_prices .content h3,
section.blog_listing .content h3 {
  margin-top: 0;
}
section.text_image .content .button_group,
section.room_prices .content .button_group,
section.blog_listing .content .button_group {
  margin-top: 1.5em;
}
section.text_image .content ul,
section.room_prices .content ul,
section.blog_listing .content ul {
  columns: 2;
  column-gap: 2em;
}
section.text_image .image_wrapper,
section.room_prices .image_wrapper,
section.blog_listing .image_wrapper {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  section.text_image .wrapper,
  section.room_prices .wrapper,
  section.blog_listing .wrapper {
    gap: 3em;
  }
  section.text_image .content,
  section.room_prices .content,
  section.blog_listing .content {
    width: 50%;
    text-align: left;
  }
  section.text_image .content .button_group,
  section.room_prices .content .button_group,
  section.blog_listing .content .button_group {
    justify-content: flex-start;
    margin-top: 2em;
  }
  section.text_image .image_wrapper,
  section.room_prices .image_wrapper,
  section.blog_listing .image_wrapper {
    width: 50%;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  section.text_image .wrapper,
  section.room_prices .wrapper,
  section.blog_listing .wrapper {
    gap: 4em;
  }
  section.text_image .content,
  section.room_prices .content,
  section.blog_listing .content {
    width: 45%;
  }
  section.text_image .image_wrapper,
  section.room_prices .image_wrapper,
  section.blog_listing .image_wrapper {
    width: 55%;
  }
}

/*
TESTIMONIAL, FEATURED ITEM
*/
section.testimonial,
section.featured_item {
  gap: 2em;
}
section.testimonial.testimonial .image_wrapper,
section.featured_item.testimonial .image_wrapper {
  width: 100%;
  max-width: 16em;
}
section.testimonial.featured_item .image_wrapper,
section.featured_item.featured_item .image_wrapper {
  width: 100%;
  max-width: 30em;
}
section.testimonial .content,
section.featured_item .content {
  width: 100%;
  text-align: center;
}
section.testimonial .content .button_group,
section.featured_item .content .button_group {
  margin-top: 2em;
}
@media (min-width: 768px) {
  section.testimonial,
  section.featured_item {
    gap: 3em;
  }
  section.testimonial.testimonial .image_wrapper,
  section.featured_item.testimonial .image_wrapper {
    width: 25%;
  }
  section.testimonial.featured_item .image_wrapper,
  section.featured_item.featured_item .image_wrapper {
    width: 40%;
  }
  section.testimonial .content,
  section.featured_item .content {
    flex: 1;
    text-align: left;
  }
  section.testimonial .content .button_group,
  section.featured_item .content .button_group {
    justify-content: flex-start;
  }
}
@media (min-width: 960px) {
  section.testimonial,
  section.featured_item {
    gap: 4em;
  }
}
@media (min-width: 1024px) {
  section.testimonial,
  section.featured_item {
    gap: 5em;
  }
}

/*
CAROUSEL
*/
section.carousel#featured_images {
  padding-top: 0;
}
section.carousel .f-carousel.gallery {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #F8F5ED;
  padding-bottom: 0;
}
section.carousel .f-carousel.gallery img {
  width: 100%;
  height: auto;
}
section.carousel .f-carousel.featured {
  --f-carousel-slide-width: 100%;
  --f-carousel-slide-height: clamp(12.5rem, calc(-35rem + 126.667vw), 60rem); /* min: 200px, max: 960px */
  --f-button-next-pos: -10px;
  --f-button-prev-pos: -10px;
}
@media (min-width: 620px) {
  section.carousel .f-carousel.featured {
    --f-button-next-pos: -20px;
    --f-button-prev-pos: -20px;
  }
}
section.carousel .f-carousel.featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*
NEWSLETTER SIGNUP
*/
@media (max-width: 767px) {
  section.newsletter_signup {
    background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
  }
}
section.newsletter_signup h2 {
  text-align: center;
  text-wrap: balance;
}

.signup-form form .fields {
  gap: 2em;
  justify-content: flex-start;
}
.signup-form form .fields .field {
  gap: 0.5em;
  align-items: flex-start;
}
.signup-form form label {
  font-weight: 400;
  text-align: left;
  font-size: 0.8rem;
}
.signup-form form input {
  padding: 0.7em 1em;
  border: 1px solid #4D4D4D;
  border-radius: 7px;
  font-size: 1rem;
  width: 20em;
}
.signup-form form input.error {
  border-color: red;
}
.signup-form form .error {
  color: red;
  font-size: 0.9rem;
}
.signup-form form .button_group {
  margin-top: 1.5em;
}
.signup-form form .button_group button {
  border: 0;
  font-size: 1em;
  line-height: 1.25;
}
.signup-form form .g-recaptcha {
  margin-top: 0.5em;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  #signup-module {
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 1.5em 2em;
    background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
    text-align: center;
    top: -4px;
  }
  #signup-module.initial p, #signup-module.initial .form, #signup-module.initial .btn-overlay, #signup-module.closed p, #signup-module.closed .form, #signup-module.closed .btn-overlay {
    display: none;
  }
  #signup-module.open p, #signup-module.open .form {
    display: block;
  }
  #signup-module.open p > br {
    content: " ";
  }
  #signup-module.open p > br::after {
    content: " ";
  }
  #signup-module.open .main h3 {
    margin-bottom: 0.5em;
  }
  #signup-module.open .main h3 a:after {
    transform: rotate(180deg);
    top: -3px;
  }
  #signup-module .main {
    display: block !important;
  }
  #signup-module .main h3 {
    margin-bottom: 0;
  }
  #signup-module .main h3 a {
    cursor: pointer;
    color: #ffffff;
    position: relative;
  }
  #signup-module .main h3 a:hover {
    color: #BDBDBD;
  }
  #signup-module .main h3 a:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 14"><path fill="%23B0943A" d="M10 14 0 0h20L10 14Z"/></svg>');
    width: 1em;
    position: absolute;
    right: -2em;
  }
  #signup-module .main .fields {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #signup-module .main .fields input {
    width: 20em;
  }
  #signup-module .btn-open, #signup-module a.close, #signup-module .closed {
    display: none !important;
  }
}
@media (min-width: 768px) {
  #signup-module {
    position: fixed;
    bottom: 0;
    right: 0;
    width: fit-content;
    z-index: 5;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    box-shadow: -2px -2px 6px 0px rgba(0, 0, 0, 0.3);
    background: linear-gradient(270deg, #00341D 0%, #00723F 100%);
    padding: 1.2em 2.4em 1.2em 1.5em;
    text-align: left;
  }
  #signup-module a.close {
    position: absolute;
    display: inline-block;
    top: 1em;
    right: 1em;
    width: 1em;
    height: 1em;
    color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
    opacity: 1;
  }
  #signup-module a.close:hover {
    opacity: 0.6;
  }
  #signup-module.initial .form, #signup-module.initial .closed {
    display: none;
  }
  #signup-module.initial .btn-open {
    display: inline-block;
  }
  #signup-module .main h3 {
    margin-bottom: 0.5em;
  }
  #signup-module .main h3 a {
    color: #ffffff !important;
    cursor: default;
  }
  #signup-module .main .fields {
    align-items: flex-end;
  }
  #signup-module .main .fields .field input {
    width: 15em;
  }
}
#signup-module .main h3 {
  font-size: 1.5rem;
}
#signup-module .main p {
  font-size: 0.9rem;
}
#signup-module.open .form {
  display: block;
}
#signup-module.open .btn-open, #signup-module.open .closed {
  display: none;
}
#signup-module.open .fields {
  gap: 0.75em;
}
#signup-module.open .fields .field {
  gap: 0.25em;
}
#signup-module.open .fields .field input {
  padding: 0.7em;
  font-size: 0.9rem;
}
#signup-module.open .fields .field .error {
  font-size: 0.8rem;
  color: #ff6161;
}
#signup-module.open .fields button {
  border: 0;
  font-size: 1em;
  line-height: 1.25;
}
#signup-module.closed .main, #signup-module.closed .form, #signup-module.closed .btn-open {
  display: none;
}
#signup-module.closed .closed {
  display: block;
}
#signup-module.closed .closed p {
  cursor: pointer;
  margin-bottom: 0;
}
#signup-module.closed .closed svg {
  display: inline;
  width: 32px;
  vertical-align: middle;
  margin-left: 1em;
}
#signup-module.closed .close {
  display: none;
}

/*
ACCORDION
*/
section.accordion .item-group .section_anchor {
  position: relative;
  top: -8em;
}
section.accordion .item-group .item {
  border-top: 1px solid #4D4D4D;
  padding: 1.5em 0;
}
section.accordion .item-group .item .toggle {
  position: relative;
  font-weight: 600;
  padding-left: 3em;
  cursor: pointer;
}
section.accordion .item-group .item .toggle::before {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 14 20"><path fill="%23B0943A" d="M14 10 0 20V0l14 10Z"/></svg>');
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: auto;
}
section.accordion .item-group .item .panel {
  padding: 1.5em 0 0.5em 3em;
  display: none;
}
section.accordion .item-group .item.is-open .toggle::before {
  transform: rotate(90deg);
  top: -3px;
}
section.accordion .item-group .item.is-open .panel {
  display: block;
}
section.accordion .item-group .item:last-child {
  border-bottom: 1px solid #4D4D4D;
}

/*
GALLERY
*/
section.gallery .items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
}
section.gallery .items .item {
  width: 80%;
  overflow: hidden;
}
section.gallery .items .item.img {
  border-radius: 7px;
}
section.gallery .items .item > .img {
  border-radius: 7px;
  width: 100%;
}
section.gallery .items .item.aspect-1-1, section.gallery .items .item .aspect-1-1 {
  aspect-ratio: 1/1;
}
section.gallery .items .item.aspect-4-3, section.gallery .items .item .aspect-4-3 {
  aspect-ratio: 4/3;
}
section.gallery .items .item.aspect-16-9, section.gallery .items .item .aspect-16-9 {
  aspect-ratio: 16/9;
}
@media (min-width: 512px) {
  section.gallery .items {
    gap: 1.25em;
    flex-direction: row;
    align-items: flex-start;
  }
  section.gallery .items .item {
    width: calc(50% - 1.25em);
  }
}
@media (min-width: 768px) {
  section.gallery .items {
    gap: 1.25em;
    justify-content: space-around;
  }
  section.gallery .items .item {
    width: calc(33.33% - 1.25em);
  }
}
@media (min-width: 960px) {
  section.gallery .items {
    gap: 1.5em;
  }
  section.gallery .items .item {
    width: calc(25% - 1.5em);
  }
}
@media (min-width: 1500px) {
  section.gallery .items .item {
    width: calc(20% - 1.5em);
  }
}
section.gallery .button_group {
  margin-top: 4em;
}

/*
ARTICLE BOXES
*/
section.articles .items .item {
  text-decoration: none;
  text-align: left;
  align-items: flex-start;
  justify-content: space-between;
  color: #4D4D4D;
  transition: all 0.2s ease-in-out;
  background-color: #ffffff;
  width: 100%;
}
section.articles .items .item:hover {
  background-color: #F8F5ED;
}
section.articles .items .item p {
  margin-bottom: 0;
}
@media (min-width: 512px) {
  section.articles .items {
    flex-direction: row;
    gap: 1.25em;
  }
  section.articles .items .item {
    align-self: stretch;
    width: calc(50% - 1.25em);
  }
}
@media (min-width: 768px) {
  section.articles .items {
    gap: 1.5em;
    justify-content: space-around;
  }
  section.articles .items .item {
    width: calc(33.33% - 1.5em);
    max-width: 20em;
  }
}
@media (min-width: 1024px) {
  section.articles .items {
    gap: 3em;
  }
  section.articles .items .item {
    width: calc(33.33% - 3em);
    max-width: 22em;
  }
}
section.articles .button_group {
  margin-top: 4em;
}

/*
BLOG POST
*/
.blog_post h2.gold-underline.sm2-down, .blog_post h3.gold-underline.sm2-down {
  display: inline-block;
}
.blog_post h2.gold-underline.md-up, .blog_post h3.gold-underline.md-up {
  display: none;
}
@media (min-width: 768px) {
  .blog_post h2.gold-underline.sm2-down, .blog_post h3.gold-underline.sm2-down {
    display: none;
  }
  .blog_post h2.gold-underline.md-up, .blog_post h3.gold-underline.md-up {
    display: flex;
  }
}

/*
BLOCK SPACING OVERRIDES
*/
section.text_image + section.text_editor,
section.text_editor + section.text_image.bg-white,
section.text_editor + section.text_editor {
  padding-top: 0;
}

#reservation-form + section.text_editor {
  background-color: #F8F5ED;
}

.site-font {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 400;
}

svg[hidden] {
  display: none;
  position: absolute;
}

.content-padding {
  padding: 2em 1em;
}
@media (min-width: 512px) {
  .content-padding {
    padding: 2.5em 2em;
  }
}
@media (min-width: 960px) {
  .content-padding {
    padding: 3em 3em;
  }
}
@media (min-width: 1024px) {
  .content-padding {
    padding: 3.3em 4em;
  }
}
@media (min-width: 1200px) {
  .content-padding {
    padding: 3.8em 5em;
  }
}
.content-padding.-h {
  padding-top: 0;
  padding-bottom: 0;
}
.content-padding.-v {
  padding-right: 0;
  padding-left: 0;
}

.box-shadow {
  box-shadow: 0px 9px 20px -9px #4D4D4D;
}

.general-copy {
  max-width: 1200px;
}

.rounded {
  border-radius: 20px;
}
.rounded-top {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.rounded-bottom {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.section_header {
  text-align: center;
  margin-bottom: 2em;
}
.section_header h2 {
  font-weight: 500;
  margin-bottom: 0.5em;
}

.button_group {
  display: flex;
  justify-content: center;
  gap: 1em 3em;
  flex-wrap: wrap;
  margin-top: 0.5em;
}

.media_thumbnail svg {
  position: absolute;
  fill: #fff;
  width: 3em;
  height: 3em;
  display: inline;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.general_copy {
  text-align: center;
}
@media (min-width: 768px) {
  .general_copy {
    text-align: left;
  }
}

@media (max-width: 767px) {
  [data-aos-disable=sm2-down] {
    -webkit-transform: none !important;
    -webkit-transition: none !important;
    -webkit-animation: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 959px) {
  [data-aos-disable=md-down] {
    -webkit-transform: none !important;
    -webkit-transition: none !important;
    -webkit-animation: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

.anchor_name {
  position: relative;
  visibility: hidden;
  scroll-margin-top: 75px;
}
@media (min-width: 768px) {
  .anchor_name {
    scroll-margin-top: 85px;
  }
}

.media_thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  position: relative;
}
.media_thumbnail::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}
.media_thumbnail:hover::before {
  background-color: rgba(0, 0, 0, 0);
}

.item.box {
  padding: 1em;
  border-radius: 7px;
  border: 1px solid #B0943A;
}
@media (min-width: 960px) {
  .item.box {
    padding: 1.5em;
  }
}

.hover-overlay {
  position: relative;
  overflow: hidden;
}
.hover-overlay .overlay {
  opacity: 0;
  color: #ffffff;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3em;
  text-transform: uppercase;
  font-weight: 700;
}
.hover-overlay:hover .overlay {
  opacity: 1;
}

.overlay {
  position: relative;
}
.overlay:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.overlay.-z1:after {
  z-index: 1;
}
.overlay.-op10:after {
  background-color: rgba(0, 0, 0, 0.1);
}
.overlay.-op20:after {
  background-color: rgba(0, 0, 0, 0.2);
}
.overlay.-op30:after {
  background-color: rgba(0, 0, 0, 0.3);
}
.overlay.-op40:after {
  background-color: rgba(0, 0, 0, 0.4);
}
.overlay.-op50:after {
  background-color: rgba(0, 0, 0, 0.5);
}
.overlay .content {
  z-index: 1;
}

.responsive-boxes {
  gap: 1em;
}
.responsive-boxes .item {
  width: 80%;
}
@media (min-width: 512px) {
  .responsive-boxes {
    gap: 1.25em;
  }
  .responsive-boxes .item {
    width: calc(50% - 1em);
  }
}
@media (min-width: 768px) {
  .responsive-boxes {
    gap: 1.25em;
    justify-content: space-around;
  }
  .responsive-boxes .item {
    width: calc(33.33% - 1.25em);
  }
}
@media (min-width: 960px) {
  .responsive-boxes {
    gap: 1.5em;
  }
  .responsive-boxes .item {
    width: calc(25% - 1.5em);
  }
}
@media (min-width: 1500px) {
  .responsive-boxes .item {
    width: calc(20% - 1.5em);
  }
}

.has-bold {
  font-weight: 400;
}
.has-bold b {
  font-weight: 700;
}

.inline-icon {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  gap: 0.3em;
  font-weight: 700;
  margin-bottom: 0;
}
.inline-icon svg {
  height: 28px;
  width: 28px;
  position: relative;
  top: 2px;
}

.button, #nav-main-ul .has-button a {
  position: relative;
  display: inline-block;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 5px;
  white-space: nowrap;
  background-color: #00723F !important;
  padding: 0.6em 1.4em !important;
  text-align: center;
  font-family: "Oswald", sans-serif !important;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 1;
  /* 
  https://keithjgrant.com/posts/2017/07/transitioning-gradients/
  */
}
.button::before, #nav-main-ul .has-button a::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #00341D 0%, #00723F 100%);
  border-radius: 5px;
  z-index: -1;
  transition: opacity 0.25s ease-in-out;
  opacity: 0;
}
.button:hover::before, #nav-main-ul .has-button a:hover::before {
  opacity: 1;
}
.button.gold, #nav-main-ul .has-button a.gold {
  background-color: #B0943A !important;
}
.button.gold::before, #nav-main-ul .has-button a.gold::before {
  background-image: linear-gradient(90deg, #876C16 0%, #B0943A 100%);
}
.button.loading, #nav-main-ul .has-button a.loading {
  pointer-events: none;
  cursor: wait;
}
.button.disabled, #nav-main-ul .has-button a.disabled {
  cursor: default;
  background-color: #88888F !important;
}
.button.disabled:hover::before, #nav-main-ul .has-button a.disabled:hover::before {
  background-image: none;
  opacity: 0;
  transition: none;
}

.hover-shadow {
  transition: box-shadow 0.2s ease-in-out;
}
.hover-shadow:hover {
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.55);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.55);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.55);
}

.cream-box {
  background-color: #F8F5ED;
  color: #4D4D4D;
  border-radius: 30px;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .wysiwyg.text_image .content, .text_image .content.text_image .content, .accordion .panel.text_image .content {
    text-align: center;
  }
}
.wysiwyg ul, .wysiwyg ol, .text_image .content ul, .text_image .content ol, .accordion .panel ul, .accordion .panel ol {
  margin: 1em 0 2em 1.5em;
  padding-left: 1em;
  text-align: left;
}
.wysiwyg ul li, .wysiwyg ol li, .text_image .content ul li, .text_image .content ol li, .accordion .panel ul li, .accordion .panel ol li {
  margin-bottom: 0.5em;
}
.wysiwyg ul, .text_image .content ul, .accordion .panel ul {
  list-style: disc;
}
.wysiwyg ol, .text_image .content ol, .accordion .panel ol {
  list-style: decimal;
}
.wysiwyg.has-image ul, .wysiwyg.has-image ol, .text_image .content.has-image ul, .text_image .content.has-image ol, .accordion .panel.has-image ul, .accordion .panel.has-image ol {
  padding-left: 2em;
}
.wysiwyg img, .text_image .content img, .accordion .panel img {
  width: 100%;
  height: auto;
  border-radius: 7px;
  margin: 1.5em 0;
}
.wysiwyg img + h2, .wysiwyg img + h3, .text_image .content img + h2, .text_image .content img + h3, .accordion .panel img + h2, .accordion .panel img + h3 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .wysiwyg img, .text_image .content img, .accordion .panel img {
    float: left;
    width: 48%;
    max-width: 1024px;
    margin: 1em 3.8em 1.5em 0;
  }
  .wysiwyg img.fullwidth, .text_image .content img.fullwidth, .accordion .panel img.fullwidth {
    float: none;
    width: 100%;
    margin: 1.5em 0;
    max-width: unset;
  }
}
.wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .text_image .content h2, .text_image .content h3, .text_image .content h4, .accordion .panel h2, .accordion .panel h3, .accordion .panel h4 {
  margin-top: 1em;
  color: #00723F;
}
.wysiwyg h2:first-child, .wysiwyg h3:first-child, .wysiwyg h4:first-child, .text_image .content h2:first-child, .text_image .content h3:first-child, .text_image .content h4:first-child, .accordion .panel h2:first-child, .accordion .panel h3:first-child, .accordion .panel h4:first-child {
  margin-top: 0;
}

body.privacy-policy .wysiwyg {
  max-width: 1024px;
  margin: 0 auto;
}
body.privacy-policy .wysiwyg h4 {
  color: #B0943A;
}

.image_wrapper img, .image_wrapper video {
  width: 100%;
  height: auto;
  border-radius: 7px;
}

.fancybox__content.modal {
  width: 100%;
  padding: 1.5em 2em;
  border-radius: 7px;
}
@media (min-width: 768px) {
  .fancybox__content.modal {
    max-width: 960px;
    padding: 2em 4em;
  }
}
.fancybox__content.modal .content {
  overflow-y: auto;
  max-height: 60vh;
}

.gold-underline {
  padding: 0 0.35em 0.5em;
  border-bottom: 1px solid #B0943A;
  display: inline-block;
}
@media (min-width: 768px) {
  .gold-underline {
    width: fit-content;
    padding: 0 0.35em 0.5em 0;
    display: flex;
  }
}

table.eh-table,
table.wpconsent-cookie-policy-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 0;
  margin-bottom: 1.5em;
  font-size: clamp(0.875rem, 0.75rem + 0.333vw, 1rem);
}
table.eh-table thead,
table.wpconsent-cookie-policy-table thead {
  background-color: #00723F;
}
table.eh-table thead th,
table.wpconsent-cookie-policy-table thead th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.625rem 0.625rem;
}
table.eh-table thead th:first-child,
table.wpconsent-cookie-policy-table thead th:first-child {
  border-top-left-radius: 7px;
}
table.eh-table thead th:last-child,
table.wpconsent-cookie-policy-table thead th:last-child {
  border-top-right-radius: 7px;
}
table.eh-table tbody,
table.wpconsent-cookie-policy-table tbody {
  border: 1px solid #f1f1f1;
  background-color: #ffffff;
}
table.eh-table tbody th, table.eh-table tbody td,
table.wpconsent-cookie-policy-table tbody th,
table.wpconsent-cookie-policy-table tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
  text-align: left;
}
table.eh-table tbody tr:nth-child(2n),
table.wpconsent-cookie-policy-table tbody tr:nth-child(2n) {
  border-bottom: 0;
  background-color: #F1F1F1;
}
table.eh-table .right,
table.wpconsent-cookie-policy-table .right {
  text-align: right;
}

ul.bullets {
  margin-left: 1em;
  margin-top: 1em;
}
ul.bullets li {
  list-style-type: disc;
  margin-bottom: 0.5em;
  padding-left: 0;
}
@media (min-width: 620px) {
  ul.bullets.cols-2 {
    column-count: 2;
    column-gap: 4em;
  }
}
@media (min-width: 620px) {
  ul.bullets.cols-3 {
    column-count: 2;
    column-gap: 4em;
  }
}
@media (min-width: 1024px) {
  ul.bullets.cols-3 {
    column-count: 3;
    column-gap: 5em;
  }
}

a.external, .external > a {
  position: relative;
}
a.external:after, .external > a:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M14.016 3h6.984v6.984h-2.016v-3.563l-9.797 9.797-1.406-1.406 9.797-9.797h-3.563v-2.016zM18.984 18.984v-6.984h2.016v6.984q0 0.797-0.609 1.406t-1.406 0.609h-13.969q-0.844 0-1.43-0.586t-0.586-1.43v-13.969q0-0.844 0.586-1.43t1.43-0.586h6.984v2.016h-6.984v13.969h13.969z"></path></svg>');
  position: absolute;
  display: inline;
  right: -1.1em;
  top: -2px;
  width: 12px;
  height: 12px;
}

.skip-link {
  position: absolute;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: #B0943A;
  color: white;
  z-index: 99;
}
.skip-link:not(:focus) {
  height: 1px;
  width: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

#erinhills_countdown {
  background-color: #00723F;
  color: #fff;
  padding: 1.75em 1em 1.5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1em;
  align-items: center;
  border-bottom: 1px solid #B0943A;
}
#erinhills_countdown img {
  width: 65px;
  height: auto;
}
#erinhills_countdown .timer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0.75em;
}
#erinhills_countdown .timer > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  overflow: visible;
  color: rgba(255, 255, 255, 0.6);
}
#erinhills_countdown .timer > div > span {
  border: 1px solid #B0943A;
  border-radius: 5px;
  padding: 0.2em 0.6em;
  font-size: 1.2rem;
  color: #00723F;
  line-height: 1.2;
  transition: color 0.5s ease-in-out;
}
#erinhills_countdown.active .timer > div > span {
  color: #fff;
}
#erinhills_countdown.inactive {
  display: none;
}
@media (min-width: 768px) {
  #erinhills_countdown {
    flex-direction: row;
    gap: 2em;
    padding: 0.6em;
  }
}

article {
  width: 100%;
}
article.listgrid {
  padding: 1em 0;
  border-bottom: 1px solid #B0943A;
  margin-bottom: 1em;
}
article.archive-post {
  display: flex;
  gap: 2em;
  justify-content: space-between;
  align-content: center;
}
article.archive-post .post-thumbnail {
  display: none;
  position: relative;
}
@media (min-width: 512px) {
  article.archive-post .post-thumbnail {
    display: block;
    width: 25%;
    min-width: 160px;
    max-width: 320px;
    height: auto;
    border: 1px solid #4D4D4D;
  }
}
article.archive-post .post-thumbnail.bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 180px;
  max-height: 300px;
}
article.archive-post .post-thumbnail .post_label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 2px 4px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  font-weight: 400;
  font-size: 80%;
}
article.archive-post .post-content {
  flex: 1;
  text-align: left;
}

.pagination_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 1em;
}
.pagination_wrapper.-top {
  margin-top: 1em;
  margin-bottom: 2em;
}
.pagination_wrapper.-bottom {
  margin-top: 3em;
  margin-bottom: 0;
}
.pagination_wrapper .nav-links {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.35em;
}
.pagination_wrapper .nav-links a.prev {
  margin-right: 1em;
}
.pagination_wrapper .nav-links a.next {
  margin-left: 1em;
}
.pagination_wrapper .nav-links span.current {
  font-weight: 600;
}

.sitesearch {
  display: none;
}
@media (min-width: 1024px) {
  .sitesearch.active {
    display: block;
    position: fixed;
    top: 101px;
    right: 0;
    width: auto;
    background-color: #F8F5ED;
    padding: 1em 1em 0.9em 1.2em;
    border-bottom-left-radius: 10px;
    box-shadow: 0 0 6px 0px #767676;
    z-index: 4;
  }
  .sitesearch.active input[type=text] {
    padding: 0.3em 0.6em;
    border-color: #00723F;
  }
  .sitesearch.active input[type=text]:focus-visible {
    outline-color: #00723F;
  }
  .sitesearch.active svg.close {
    position: absolute;
    top: 5px;
    right: 2px;
    width: 0.85em;
    height: 0.85em;
    cursor: pointer;
    stroke: #666;
  }
  .sitesearch.active svg.close:hover {
    stroke: #B0943A;
  }
}

.searchform {
  display: flex;
  flex-direction: row;
  gap: 0em;
  align-items: center;
  justify-content: center;
}
.searchform input[type=text] {
  width: auto;
  padding: 0.5em 1em;
  border-radius: 10px;
  border: 1px solid #BDBDBD;
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif;
  color: #4D4D4D;
}
.searchform button[type=submit] {
  padding: 0;
  background: none;
  border: 0;
  color: #00723F;
  cursor: pointer;
}
.searchform button[type=submit] svg {
  height: 36px;
  width: 36px;
  fill: #00723F;
  transition: fill 0.25s ease-in-out;
  transform: scaleX(-1);
}
.searchform button[type=submit]:hover svg {
  fill: #B0943A;
}
.searchform button[type=submit]#header-form-submit svg {
  height: 32px;
  width: 32px;
}

.main-gradient {
  background-color: #00723F;
  background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
}
.main-gradient.-reverse {
  background: linear-gradient(270deg, #00341D 0%, #00723F 100%);
}

.gold {
  color: #B0943A;
  fill: #B0943A;
}
.gold svg {
  fill: #B0943A;
}
.gold path, .gold circle {
  stroke: #B0943A;
}

.white {
  color: #ffffff;
  fill: #ffffff;
}
.white svg {
  fill: #ffffff;
}
.white path, .white circle {
  stroke: #ffffff;
}

.green {
  color: #00723F;
  fill: #00723F;
}
.green svg {
  fill: #00723F;
}
.green path, .green circle {
  stroke: #00723F;
}
.green.bg {
  background-color: #00723F;
}
.green.bg.gradient {
  background-color: #00723F;
  background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
}

.cream {
  color: #F8F5ED;
  fill: #F8F5ED;
}
.cream svg {
  fill: #F8F5ED;
}
.cream path, .cream circle {
  stroke: #F8F5ED;
}
.cream.bg {
  background-color: #F8F5ED;
}

.darkgreen {
  color: #00341D;
  fill: #00341D;
}
.darkgreen svg {
  fill: #00341D;
}
.darkgreen path, .darkgreen circle {
  stroke: #00341D;
}

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

.bg-cream {
  background-color: #F8F5ED;
}

.bg-green {
  background-color: #00723F;
  color: #ffffff;
}
.bg-green .green {
  color: #ffffff !important;
}
.bg-green .button_group .button {
  background-color: #B0943A !important;
}
.bg-green .button_group .button::before {
  background-image: linear-gradient(90deg, #876C16 0%, #B0943A 100%);
}
.bg-green.gradient {
  background-color: #00723F;
  background: linear-gradient(90deg, #00341D 0%, #00723F 100%);
}
.bg-green.gradient.reverse {
  background: linear-gradient(270deg, #00341D 0%, #00723F 100%);
}

.bg-darkgreen {
  background-color: #00341D;
}

/**
* Plugin code has been customized to add 'wpsbc-past' class to past dates in the calendar. 
* This class is used to disable click and hover effect on past dates.
* 
* \plugins\wp-simple-booking-calendar-premium\includes\base\calendar\class-calendar-outputter.php
* line 746 (v8.4)
*
* $output .= '<div class="wpsbc-date ' . (!empty($legend_item_id_icon) && is_numeric($legend_item_id_icon) ? 'wpsbc-legend-item-' . $legend_item->get('id') : '') . ' ' . ($is_today && $this->args['highlight_today']? 'wpsbc-date-today' : '') . ' ' . ($is_past ? 'wpsbc-past' : '') . ' ' . (empty($day) ? 'wpsbc-gap' : '') . ' ' . $ical_changeover . '" ' . (!empty($day) ? ('data-year="' . esc_attr($year) . '" data-month="' . esc_attr($month) . '" data-day="' . esc_attr($day) . '"') : '') . '>';
* 
*/
.wpsbc-date-number .calendar-day {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.wpsbc-date:hover .wpsbc-legend-item-icon > div:first-child {
  opacity: 0.7;
}

.wpsbc-date.wpsbc-past .wpsbc-date-number .calendar-day,
.wpsbc-calendar-1 .wpsbc-date.wpsbc-legend-item-3 .wpsbc-date-number .calendar-day,
.wpsbc-calendar-1 .wpsbc-date.wpsbc-legend-item-4 .wpsbc-date-number .calendar-day,
.wpsbc-calendar-3 .wpsbc-date.wpsbc-legend-item-9 .wpsbc-date-number .calendar-day,
.wpsbc-calendar-3 .wpsbc-date.wpsbc-legend-item-10 .wpsbc-date-number .calendar-day,
.wpsbc-calendar-4 .wpsbc-date.wpsbc-legend-item-16 .wpsbc-date-number .calendar-day,
.wpsbc-calendar-4 .wpsbc-date.wpsbc-legend-item-17 .wpsbc-date-number .calendar-day {
  cursor: default;
  pointer-events: none;
}

.wpsbc-date.wpsbc-past:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-1 .wpsbc-date.wpsbc-legend-item-3:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-1 .wpsbc-date.wpsbc-legend-item-4:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-3 .wpsbc-date.wpsbc-legend-item-9:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-3 .wpsbc-date.wpsbc-legend-item-10:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-4 .wpsbc-date.wpsbc-legend-item-16:hover .wpsbc-legend-item-icon > div:first-child,
.wpsbc-calendar-4 .wpsbc-date.wpsbc-legend-item-17:hover .wpsbc-legend-item-icon > div:first-child {
  opacity: 1;
}

.wpsbc-container {
  max-width: 1024px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .wpsbc-container .wpsbc-calendars {
    display: flex;
    justify-content: center;
  }
  .wpsbc-container .wpsbc-legend {
    width: fit-content;
    margin: 1em auto;
  }
}
.wpsbc-container .wpsbc-legend-item:has(.wpsbc-legend-item-icon-6),
.wpsbc-container .wpsbc-legend-item:has(.wpsbc-legend-item-icon-13),
.wpsbc-container .wpsbc-legend-item:has(.wpsbc-legend-item-icon-19) {
  display: none;
}
.wpsbc-container[data-current_year="2025"][data-current_month="3"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-6),
.wpsbc-container[data-current_year="2025"][data-current_month="3"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-13),
.wpsbc-container[data-current_year="2025"][data-current_month="3"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-19), .wpsbc-container[data-current_year="2025"][data-current_month="4"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-6),
.wpsbc-container[data-current_year="2025"][data-current_month="4"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-13),
.wpsbc-container[data-current_year="2025"][data-current_month="4"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-19), .wpsbc-container[data-current_year="2025"][data-current_month="5"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-6),
.wpsbc-container[data-current_year="2025"][data-current_month="5"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-13),
.wpsbc-container[data-current_year="2025"][data-current_month="5"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-19), .wpsbc-container[data-current_year="2025"][data-current_month="6"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-6),
.wpsbc-container[data-current_year="2025"][data-current_month="6"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-13),
.wpsbc-container[data-current_year="2025"][data-current_month="6"] .wpsbc-legend-item:has(.wpsbc-legend-item-icon-19) {
  display: inline-block;
}

.gform_wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.gform_wrapper #gform_submit_button_1 {
  text-transform: uppercase;
  font-size: 1em;
}

.fancybox__html5video, .fancybox__iframe {
  border-radius: 7px !important;
}

.f-carousel {
  --f-carousel-theme-color: #fff !important;
  --f-carousel-slide-padding: 0 !important;
  --f-carousel-dot-color: #fff !important;
  --f-carousel-dot-width: 12px;
  --f-carousel-dot-height: 12px;
  --f-progress-color: #B0943A !important;
  --f-button-width: 38px !important;
  --f-button-height: 38px !important;
  --f-button-svg-width: 16px !important;
  --f-button-svg-height: 16px !important;
  --f-button-svg-stroke-width: 2.5 !important;
  --f-button-color: rgb(71 85 105) !important;
  --f-button-border-radius: 50% !important;
  --f-button-shadow: 0 6px 12px -2px rgb(50 50 93 / 25%), 0 3px 7px -3px rgb(0 0
  		0 / 30%) !important;
  --f-button-bg: #fff !important;
  --f-button-hover-bg: $color-cream !important;
  --f-button-active-bg: $color-cream !important;
}
.f-carousel .f-button:hover:not([disabled]) {
  color: #ffffff;
  background-color: #00341D;
}

.onetap-container-toggle .onetap-toggle {
  z-index: 999999 !important;
}
.onetap-container-toggle .onetap-toggle img.design-size1 {
  padding: 6px !important;
  width: 46px !important;
  height: 46px !important;
}

#wpconsent-container::part(wpconsent-settings-button) {
  left: 80px;
  bottom: 22px;
}

body.mediasizes:before {
  position: fixed;
  top: 0;
  left: 0;
  padding: 4px 6px 4px 4px;
  border-radius: 0 0 5px 0;
  z-index: 100000;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0;
}
@media (min-width: 0px) and (max-width: 359px) {
  body.mediasizes:before {
    content: "xxs" !important;
    background: purple;
    color: white;
  }
}
@media (min-width: 360px) and (max-width: 511px) {
  body.mediasizes:before {
    content: "xs" !important;
    background: red;
    color: white;
  }
}
@media (min-width: 512px) and (max-width: 619px) {
  body.mediasizes:before {
    content: "sm" !important;
    background: orange;
    color: black;
  }
}
@media (min-width: 620px) and (max-width: 767px) {
  body.mediasizes:before {
    content: "sm2" !important;
    background: orange;
    color: black;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  body.mediasizes:before {
    content: "md" !important;
    background: yellow;
    color: black;
  }
}
@media (min-width: 960px) and (max-width: 1023px) {
  body.mediasizes:before {
    content: "lg" !important;
    background: blue;
    color: white;
  }
}
@media (min-width: 1024px) {
  body.mediasizes:before {
    content: "xl" !important;
    background: green;
    color: white;
  }
}
@media (min-width: 1200px) {
  body.mediasizes:before {
    content: "xxl" !important;
    background: pink;
    color: black;
  }
}
@media (min-width: 1500px) {
  body.mediasizes:before {
    content: "xxxl" !important;
    background: #fff;
    color: #000;
  }
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body.mediasizes:before {
    background: purple !important;
    color: white !important;
  }
}/*# sourceMappingURL=main.css.map */