@charset "UTF-8";
/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
@font-face {
  font-weight: 400;
  font-family: iconfont-propel;
  font-style: normal;
  src: url(../dist/fonts/iconfont-propel/iconfont-propel.eot?i7fdj);
  src: url(../dist/fonts/iconfont-propel/iconfont-propel.eot?i7fdj#iefix) format("eot"), url(../dist/fonts/iconfont-propel/iconfont-propel.woff2?i7fdj) format("woff2"), url(../dist/fonts/iconfont-propel/iconfont-propel.woff?i7fdj) format("woff"), url(../dist/fonts/iconfont-propel/iconfont-propel.ttf?i7fdj) format("truetype"), url(../dist/fonts/iconfont-propel/iconfont-propel.svg?i7fdj#iconfont-propel) format("svg");
}
[class^=icon-],
[class*=" icon-"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 0;
}
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-weight: 400;
  font-size: inherit;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  /* stylelint-disable-line order/properties-alphabetical-order */
  -webkit-font-smoothing: antialiased;
  /* stylelint-disable-line order/properties-alphabetical-order */
}

:root {
  --icon-Subtract: "";
  --icon-UI: "";
  --icon-account: "";
  --icon-age: "";
  --icon-arrow-downward: "";
  --icon-arrow-external: "";
  --icon-arrow-left: "";
  --icon-arrow-right: "";
  --icon-arrow-upward: "";
  --icon-bathroom: "";
  --icon-bed: "";
  --icon-calendar: "";
  --icon-cancel: "";
  --icon-cart: "";
  --icon-check-box-checked: "";
  --icon-check-box-unchecked: "";
  --icon-check-circle: "";
  --icon-check: "";
  --icon-chev-collapse: "";
  --icon-chev-expand: "";
  --icon-chev-left: "";
  --icon-chev-right: "";
  --icon-clear-search: "";
  --icon-close: "";
  --icon-cursor: "";
  --icon-dollar: "";
  --icon-drop-down: "";
  --icon-drop-up: "";
  --icon-email: "";
  --icon-error: "";
  --icon-facebook: "";
  --icon-fax: "";
  --icon-filter: "";
  --icon-grid-view: "";
  --icon-header-account: "";
  --icon-icon: "";
  --icon-illustration: "";
  --icon-image: "";
  --icon-infographic: "";
  --icon-instagram: "";
  --icon-lifestyle: "";
  --icon-link: "";
  --icon-linkedin: "";
  --icon-list-view: "";
  --icon-location: "";
  --icon-map-pin: "";
  --icon-maximize: "";
  --icon-menu-left: "";
  --icon-menu-right: "";
  --icon-menu: "";
  --icon-minimize: "";
  --icon-nav-down: "";
  --icon-nav-up: "";
  --icon-phone: "";
  --icon-play: "";
  --icon-price: "";
  --icon-quote-aligned: "";
  --icon-quote: "";
  --icon-radio-button-checked: "";
  --icon-radio-button-unchecked: "";
  --icon-recurring: "";
  --icon-remove: "";
  --icon-repeat: "";
  --icon-reset: "";
  --icon-room-service: "";
  --icon-search: "";
  --icon-sort: "";
  --icon-square-feet: "";
  --icon-star-full: "";
  --icon-tag: "";
  --icon-time: "";
  --icon-twitter: "";
  --icon-ui: "";
  --icon-upload: "";
  --icon-user: "";
  --icon-virtual: "";
  --icon-water-view: "";
  --icon-wheelchair-accessible: "";
  --icon-wifi: "";
  --icon-youtube: "";
}

.icon-Subtract::before {
  content: "\ea01";
}

.icon-UI::before {
  content: "\ea02";
}

.icon-account::before {
  content: "\ea03";
}

.icon-age::before {
  content: "\ea04";
}

.icon-arrow-downward::before {
  content: "\ea05";
}

.icon-arrow-external::before {
  content: "\ea06";
}

.icon-arrow-left::before {
  content: "\ea07";
}

.icon-arrow-right::before {
  content: "\ea08";
}

.icon-arrow-upward::before {
  content: "\ea09";
}

.icon-bathroom::before {
  content: "\ea0a";
}

.icon-bed::before {
  content: "\ea0b";
}

.icon-calendar::before {
  content: "\ea0c";
}

.icon-cancel::before {
  content: "\ea0d";
}

.icon-cart::before {
  content: "\ea0e";
}

.icon-check-box-checked::before {
  content: "\ea0f";
}

.icon-check-box-unchecked::before {
  content: "\ea10";
}

.icon-check-circle::before {
  content: "\ea11";
}

.icon-check::before {
  content: "\ea12";
}

.icon-chev-collapse::before {
  content: "\ea13";
}

.icon-chev-expand::before {
  content: "\ea14";
}

.icon-chev-left::before {
  content: "\ea15";
}

.icon-chev-right::before {
  content: "\ea16";
}

.icon-clear-search::before {
  content: "\ea17";
}

.icon-close::before {
  content: "\ea18";
}

.icon-cursor::before {
  content: "\ea19";
}

.icon-dollar::before {
  content: "\ea1a";
}

.icon-drop-down::before {
  content: "\ea1b";
}

.icon-drop-up::before {
  content: "\ea1c";
}

.icon-email::before {
  content: "\ea1d";
}

.icon-error::before {
  content: "\ea1e";
}

.icon-facebook::before {
  content: "\ea1f";
}

.icon-fax::before {
  content: "\ea20";
}

.icon-filter::before {
  content: "\ea21";
}

.icon-grid-view::before {
  content: "\ea22";
}

.icon-header-account::before {
  content: "\ea23";
}

.icon-icon::before {
  content: "\ea24";
}

.icon-illustration::before {
  content: "\ea25";
}

.icon-image::before {
  content: "\ea26";
}

.icon-infographic::before {
  content: "\ea27";
}

.icon-instagram::before {
  content: "\ea28";
}

.icon-lifestyle::before {
  content: "\ea29";
}

.icon-link::before {
  content: "\ea2a";
}

.icon-linkedin::before {
  content: "\ea2b";
}

.icon-list-view::before {
  content: "\ea2c";
}

.icon-location::before {
  content: "\ea2d";
}

.icon-map-pin::before {
  content: "\ea2e";
}

.icon-maximize::before {
  content: "\ea2f";
}

.icon-menu-left::before {
  content: "\ea30";
}

.icon-menu-right::before {
  content: "\ea31";
}

.icon-menu::before {
  content: "\ea32";
}

.icon-minimize::before {
  content: "\ea33";
}

.icon-nav-down::before {
  content: "\ea34";
}

.icon-nav-up::before {
  content: "\ea35";
}

.icon-phone::before {
  content: "\ea36";
}

.icon-play::before {
  content: "\ea37";
}

.icon-price::before {
  content: "\ea38";
}

.icon-quote-aligned::before {
  content: "\ea39";
}

.icon-quote::before {
  content: "\ea3a";
}

.icon-radio-button-checked::before {
  content: "\ea3b";
}

.icon-radio-button-unchecked::before {
  content: "\ea3c";
}

.icon-recurring::before {
  content: "\ea3d";
}

.icon-remove::before {
  content: "\ea3e";
}

.icon-repeat::before {
  content: "\ea3f";
}

.icon-reset::before {
  content: "\ea40";
}

.icon-room-service::before {
  content: "\ea41";
}

.icon-search::before {
  content: "\ea42";
}

.icon-sort::before {
  content: "\ea43";
}

.icon-square-feet::before {
  content: "\ea44";
}

.icon-star-full::before {
  content: "\ea45";
}

.icon-tag::before {
  content: "\ea46";
}

.icon-time::before {
  content: "\ea47";
}

.icon-twitter::before {
  content: "\ea48";
}

.icon-ui::before {
  content: "\ea49";
}

.icon-upload::before {
  content: "\ea4a";
}

.icon-user::before {
  content: "\ea4b";
}

.icon-virtual::before {
  content: "\ea4c";
}

.icon-water-view::before {
  content: "\ea4d";
}

.icon-wheelchair-accessible::before {
  content: "\ea4e";
}

.icon-wifi::before {
  content: "\ea4f";
}

.icon-youtube::before {
  content: "\ea50";
}

@font-face {
  font-weight: 300;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-Light"), url("../fonts/metropolis/metropolis-light-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-light-webfont.woff") format("woff");
}
@font-face {
  font-weight: 300;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-Light-Italic"), url("../fonts/metropolis/metropolis-lightitalic-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-lightitalic-webfont.woff") format("woff");
}
@font-face {
  font-weight: 400;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-RegularItalic"), url("../fonts/metropolis/metropolis-regularitalic-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-regularitalic-webfont.woff") format("woff");
}
@font-face {
  font-weight: 700;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-MediumItalic"), url("../fonts/metropolis/metropolis-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-mediumitalic-webfont.woff") format("woff");
}
@font-face {
  font-weight: 600;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-SemiBold"), url("../fonts/metropolis/metropolis-semibold-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-semibold-webfont.woff") format("woff");
}
@font-face {
  font-weight: 700;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-Bold"), url("../fonts/metropolis/metropolis-bold-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-bold-webfont.woff") format("woff");
}
@font-face {
  font-weight: 400;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-Regular"), url("../fonts/metropolis/metropolis-regular-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-regular-webfont.woff") format("woff");
}
@font-face {
  font-weight: 900;
  font-family: Metropolis;
  font-style: normal;
  src: local("Metropolis-Black"), url("../fonts/metropolis/metropolis-black-webfont.woff2") format("woff2"), url("../fonts/metropolis/metropolis-black-webfont.woff") format("woff");
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  text-align: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  height: 0;
  box-sizing: content-box;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.8em;
}

sub,
sup {
  position: relative;
  font-size: 0.7em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  vertical-align: middle;
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

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

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  padding: 0;
  box-sizing: border-box;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0;
  color: inherit;
  line-height: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/**
 * Base styles that aim to normalize fonts, and display of elements
 * across browsers, and make writing further styles easier.
 */
/* Set font and clear body padding */
html,
button,
input,
select,
textarea {
  font-family: 'Open Sans', sans-serif;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  min-width: 20rem;
  margin: 0;
  color: var(--blockColor, #093a3d);
  font-family: 'Open Sans', sans-serif;
  background-color: #fffbf5;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 47.98rem) {
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
}
body.lock-scroll {
  overflow: hidden;
}
@media (min-width: 75rem) {
  body.lock-scroll.accounts-open .main-header .header-bottom-bar {
    position: relative;
  }
  body.lock-scroll.accounts-open .main-header .header-bottom-bar::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: 105;
    background: #000e0f;
    opacity: 0.3;
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
  }
}
body.lock-scroll .mega-menu-background {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 95;
  background: #000e0f;
  opacity: 0.3;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
body.overlayed #page {
  position: relative;
}
body.overlayed #page::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 9;
  display: block;
  background: rgba(1, 19, 20, 0.75);
}
body.overlayed #page .main-header {
  background-color: #fffbf5;
}

/* Setting sizes is much more predictable with border-box */
*, *::before, *::after {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

/* Make all images responsive */
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

hr {
  margin: 3rem 0;
  border-top: 0.0625rem solid #b8a78f;
}
@media (min-width: 48rem) {
  hr {
    margin: 5rem 0;
  }
}

/* Normalize links across browsers */
a {
  color: #013d00;
  text-decoration: none;
  transition: color 0.2s linear;
}
a:hover {
  text-decoration: none;
}
a:not([class]) {
  color: #013d00;
  text-decoration: underline;
  word-wrap: break-word;
}
.bg-dark a:not([class]) {
  color: #9cd19b;
}
.bg-dark a:not([class]):hover, .bg-dark a:not([class]):focus {
  color: #b8e5b8;
}
a:not([class]):hover, a:not([class]):focus {
  color: #016400;
  text-decoration: underline;
}
a:not([class]) img {
  border: 0;
}

.single .content-wrapper > h1 a,
.single .content-wrapper > h2 a,
.single .content-wrapper > h3 a,
.single .content-wrapper > h4 a,
.single .content-wrapper > h5 a,
.single .content-wrapper > h6 a,
.single .content-wrapper > p a,
.single .content-wrapper > em a {
  text-decoration: underline;
}
.single .content-wrapper > a {
  text-decoration: underline;
}

a:focus,
a:hover {
  color: #013d00;
  text-decoration: none;
}

.tablet-checker {
  display: none;
}
@media (max-width: 61.98rem) {
  .tablet-checker {
    display: block;
  }
}

@media (max-width: 47.98rem) {
  .container-fluid {
    padding: 0 1.25rem;
  }
}

@media (max-width: 61.98rem) {
  .row {
    margin: 0 -0.625rem;
  }
}
@media (max-width: 35.98rem) {
  .row {
    margin: 0 -0.46875rem;
  }
}

@media (max-width: 61.98rem) {
  *[class*=" col-"],
*[class^=col-] {
    padding: 0 0.625rem;
  }
}
@media (max-width: 35.98rem) {
  *[class*=" col-"],
*[class^=col-] {
    padding: 0 0.46875rem;
  }
}

#page {
  position: relative;
}

/* Set custom outline styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
html.user-tab-nav a:focus,
html.user-tab-nav button:focus,
html.user-tab-nav input:focus,
html.user-tab-nav select:focus,
html.user-tab-nav textarea:focus {
  outline: 0.125rem solid #7aacfe;
  outline-offset: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
  padding-left: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
  max-width: 36rem;
}
@media (min-width: 36rem) {
  .container {
    max-width: 48rem;
  }
}
@media (min-width: 48rem) {
  .container {
    max-width: 62rem;
  }
}
@media (min-width: 62rem) {
  .container {
    max-width: 75rem;
  }
}
@media (min-width: 75rem) {
  .container {
    max-width: 90rem;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
  padding-left: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
  margin-left: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=" col-"],
.no-gutters > [class^=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* stylelint-disable-line order/order */
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

@media (min-width: 36rem) {
  /* stylelint-disable-line order/order */
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 48rem) {
  /* stylelint-disable-line order/order */
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 62rem) {
  /* stylelint-disable-line order/order */
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 75rem) {
  /* stylelint-disable-line order/order */
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 90rem) {
  /* stylelint-disable-line order/order */
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto {
  position: relative;
  width: 100%;
  padding-right: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
  padding-left: clamp(0.5rem, -0.0714285714rem + 1.1904761905vw, 1rem);
}

/**
 * WordPress specific base styles.
 */
.gm-style img {
  max-width: none;
}

.media img,
.media video,
.media object,
.media iframe {
  width: 100%;
  height: auto;
}

.navigation.pagination {
  clear: both;
}

/* WP navigation menus are lists, but they don't need default list styling */
nav a {
  color: var(--blockColor, #093a3d);
  text-decoration: none;
}
nav a:hover {
  color: var(--blockColor, #093a3d);
  text-decoration: none;
}
nav li {
  display: inline-block;
  margin: 0;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav ul ul li::before {
  content: none;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  padding: 0.3125rem 0;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

.acf-block:not(.bg-white):not(.bg-transparent) + h1, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-1-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h2, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-2-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h3, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-3-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h4, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-4-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h5, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-5-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h6, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-6-font-size {
  margin-top: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem);
}
h1 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-1-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h2 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-2-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h3 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-3-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h4 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-4-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h5 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-5-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h6 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-6-font-size + .acf-block:not(.bg-white):not(.bg-transparent) {
  margin-top: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}

.has-display-font-size {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  margin-bottom: var(--display-margin-bottom);
  color: #005f66;
}
.has-display-font-size:first-child {
  margin-top: 0;
}
.has-display-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark .has-display-font-size {
  color: #faf4eb;
}

h1,
.has-t-1-font-size {
  font-weight: var(--t1-font-weight);
  font-size: var(--t1-font-size);
  font-family: var(--t1-font-family);
  line-height: var(--t1-line-height);
  margin-top: calc(var(--t1-margin-bottom) * 2);
  margin-bottom: var(--t1-margin-bottom);
  color: #005f66;
}
h1:first-child,
.has-t-1-font-size:first-child {
  margin-top: 0;
}
h1:last-child,
.has-t-1-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h1,
.bg-dark .has-t-1-font-size {
  color: #faf4eb;
}

h2,
.has-t-2-font-size {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
  color: #005f66;
}
h2:first-child,
.has-t-2-font-size:first-child {
  margin-top: 0;
}
h2:last-child,
.has-t-2-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h2,
.bg-dark .has-t-2-font-size {
  color: #faf4eb;
}

h3,
.has-t-3-font-size {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  margin-top: calc(var(--t3-margin-bottom) * 2);
  margin-bottom: var(--t3-margin-bottom);
  color: var(--blockColor, #093a3d);
}
h3:first-child,
.has-t-3-font-size:first-child {
  margin-top: 0;
}
h3:last-child,
.has-t-3-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h3,
.bg-dark .has-t-3-font-size {
  color: #fffbf5;
}

h4,
.has-t-4-font-size {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
  margin-top: calc(var(--t4-margin-bottom) * 2);
  margin-bottom: var(--t4-margin-bottom);
  color: var(--blockColor, #093a3d);
}
h4:first-child,
.has-t-4-font-size:first-child {
  margin-top: 0;
}
h4:last-child,
.has-t-4-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h4,
.bg-dark .has-t-4-font-size {
  color: #fffbf5;
}

h5,
.has-t-5-font-size {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
  margin-top: calc(var(--t5-margin-bottom) * 2);
  margin-bottom: var(--t5-margin-bottom);
  color: var(--blockColor, #093a3d);
}
h5:first-child,
.has-t-5-font-size:first-child {
  margin-top: 0;
}
h5:last-child,
.has-t-5-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h5,
.bg-dark .has-t-5-font-size {
  color: #fffbf5;
}

h6,
.has-t-6-font-size {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  margin-top: calc(var(--t6-margin-bottom) * 2);
  margin-bottom: var(--t6-margin-bottom);
  color: var(--blockColor, #093a3d);
}
h6:first-child,
.has-t-6-font-size:first-child {
  margin-top: 0;
}
h6:last-child,
.has-t-6-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark h6,
.bg-dark .has-t-6-font-size {
  color: #fffbf5;
}
h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6,
.has-t-6-font-size + h1,
.has-t-6-font-size + h2,
.has-t-6-font-size + h3,
.has-t-6-font-size + h4,
.has-t-6-font-size + h5,
.has-t-6-font-size + h6 {
  margin-top: 0 !important;
}

p {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}
p + .acf-block.bg-transparent {
  margin-top: var(--body-1-margin-bottom);
}
.acf-block:not(.bg-white):not(.bg-transparent) + p {
  margin-top: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem);
}
p + .acf-block:not(.bg-white):not(.bg-transparent) {
  margin-top: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}

strong {
  font-weight: 600;
}

.has-body-1-font-size {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
}
.has-body-1-font-size:first-child {
  margin-top: 0;
}
.has-body-1-font-size:last-child {
  margin-bottom: 0;
}

.has-body-2-font-size {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  margin-bottom: var(--body-2-margin-bottom);
}
.has-body-2-font-size:first-child {
  margin-top: 0;
}
.has-body-2-font-size:last-child {
  margin-bottom: 0;
}

.has-lead-font-size {
  font-weight: var(--lead-font-weight);
  font-size: var(--lead-font-size);
  font-family: var(--lead-font-family);
  line-height: var(--lead-line-height);
  margin-top: calc(var(--lead-margin-bottom) * 1);
  margin-bottom: var(--lead-margin-bottom);
  color: var(--blockColor, #093a3d);
}
.has-lead-font-size:first-child {
  margin-top: 0;
}
.has-lead-font-size:last-child {
  margin-bottom: 0;
}
.bg-dark .has-lead-font-size {
  color: #fffbf5;
}

.has-quote-1-font-size {
  font-weight: var(--quote-1-font-weight);
  font-size: var(--quote-1-font-size);
  font-family: var(--quote-1-font-family);
  font-style: var(--quote-1-font-style);
  line-height: var(--quote-1-line-height);
  margin-top: calc(var(--quote-1-margin-bottom) * 2);
  margin-bottom: var(--quote-1-margin-bottom);
}
.has-quote-1-font-size:first-child {
  margin-top: 0;
}
.has-quote-1-font-size:last-child {
  margin-bottom: 0;
}

.has-quote-2-font-size {
  font-weight: var(--quote-2-font-weight);
  font-size: var(--quote-2-font-size);
  font-family: var(--quote-2-font-family);
  font-style: var(--quote-2-font-style);
  line-height: var(--quote-2-line-height);
  margin-top: calc(var(--quote-2-margin-bottom) * 2);
  margin-bottom: var(--quote-2-margin-bottom);
}
.has-quote-2-font-size:first-child {
  margin-top: 0;
}
.has-quote-2-font-size:last-child {
  margin-bottom: 0;
}

.has-stat-font-size {
  font-weight: var(--stat-font-weight);
  font-size: var(--stat-font-size);
  font-family: var(--stat-font-family);
  line-height: var(--stat-line-height);
  margin-bottom: var(--stat-margin-bottom);
}
.has-stat-font-size:first-child {
  margin-top: 0;
}
.has-stat-font-size:last-child {
  margin-bottom: 0;
}

.has-subtitle-1-font-size {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
}
.has-subtitle-1-font-size:first-child {
  margin-top: 0;
}
.has-subtitle-1-font-size:last-child {
  margin-bottom: 0;
}

.has-subtitle-2-font-size {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: var(--subtitle-2-margin-bottom);
}
.has-subtitle-2-font-size:first-child {
  margin-top: 0;
}
.has-subtitle-2-font-size:last-child {
  margin-bottom: 0;
}

.has-overline-font-size {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
}
.has-overline-font-size:first-child {
  margin-top: 0;
}
.has-overline-font-size:last-child {
  margin-bottom: 0;
}
.has-overline-font-size + h1, .has-overline-font-size + h2, .has-overline-font-size + h3, .has-overline-font-size + h4, .has-overline-font-size + h5, .has-overline-font-size + h6 {
  margin-top: 0 !important;
}

.has-title-1-font-size {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
}
.has-title-1-font-size:first-child {
  margin-top: 0;
}
.has-title-1-font-size:last-child {
  margin-bottom: 0;
}

.container {
  padding-right: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
  padding-left: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}

.content-wrapper > .container {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .content-wrapper > .container {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.content-wrapper > .container h2:first-child,
.content-wrapper > .container h3:first-child,
.content-wrapper > .container h4:first-child,
.content-wrapper > .container h5:first-child,
.content-wrapper > .container h6:first-child {
  margin-top: 0;
}
.content-wrapper > .container h2:last-child,
.content-wrapper > .container h3:last-child,
.content-wrapper > .container h4:last-child,
.content-wrapper > .container h5:last-child,
.content-wrapper > .container h6:last-child {
  margin-bottom: -1.25rem;
}
@media (min-width: 48rem) {
  .content-wrapper > .container h2:last-child,
.content-wrapper > .container h3:last-child,
.content-wrapper > .container h4:last-child,
.content-wrapper > .container h5:last-child,
.content-wrapper > .container h6:last-child {
    margin-bottom: -2.5rem;
  }
}
.content-wrapper > .container .block-hook:first-child + h2,
.content-wrapper > .container .block-hook:first-child + h3,
.content-wrapper > .container .block-hook:first-child + h4,
.content-wrapper > .container .block-hook:first-child + h5,
.content-wrapper > .container .block-hook:first-child + h6 {
  margin-top: 0;
}

/* stylelint-disable order/order */
:root {
  --white: #fffbf5;
  --dark-green: #013d00;
  --bright-green: #016400;
  --green: #7ab279;
  --button-default: #9cd19b;
  --light-green: #9cd19b;
  --button-hover: #b8e5b8;
  --light-green-hover: #b8e5b8;
  --dark-teal: #005f66;
  --teal: #008c95;
  --light-teal: #7ac7cc;
  --orange-dark: #b04900;
  --orange: #ed8b00;
  --orange-light: #f5e8d5;
  --dark-purple: #733969;
  --purple: #8e3a80;
  --light-purple: #f2ebf1;
  --neutral-1: #000e0f;
  --neutral-2: #011314;
  --neutral-3: #042629;
  --neutral-4: #093a3d;
  --neutral-5: #184e52;
  --neutral-6: #706351;
  --neutral-7: #b8a78f;
  --neutral-8: #ccbca5;
  --neutral-9: #e0d0b8;
  --neutral-10: #eadfce;
  --neutral-11: #f5ede1;
  --neutral-12: #faf4eb;
  --error: #ad0322;
  --warning: #faa614;
  --success: #008738;
  --information: #006bb2;
  --autofill: #e3eef5;
  --display-font-family: 'Roboto Slab', sans-serif;
  --display-font-size: clamp(2.5rem, 0.2142857143rem + 4.7619047619vw, 4.5rem);
  --display-line-height: clamp(2.75rem, 0.3214285714rem + 5.0595238095vw, 4.875rem);
  --display-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --display-font-weight: 500;
  --t1-font-family: 'Roboto Slab', sans-serif;
  --t1-font-size: clamp(2.25rem, 1.3928571429rem + 1.7857142857vw, 3rem);
  --t1-line-height: clamp(2.75rem, 2.1785714286rem + 1.1904761905vw, 3.25rem);
  --t1-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --t1-font-weight: 500;
  --t1-underline-font-family: 'Roboto Slab', sans-serif;
  --t1-underline-font-size: clamp(2.25rem, 1.3928571429rem + 1.7857142857vw, 3rem);
  --t1-underline-line-height: clamp(2.75rem, 2.1785714286rem + 1.1904761905vw, 3.25rem);
  --t1-underline-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --t1-underline-font-weight: 500;
  --t1-underline-text-decoration: underline;
  --t2-font-family: 'Roboto Slab', sans-serif;
  --t2-font-size: clamp(1.75rem, 1.1785714286rem + 1.1904761905vw, 2.25rem);
  --t2-line-height: clamp(2.25rem, 1.6785714286rem + 1.1904761905vw, 2.75rem);
  --t2-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --t2-font-weight: 500;
  --t2---underline-font-family: 'Roboto Slab', sans-serif;
  --t2---underline-font-size: clamp(1.75rem, 1.1785714286rem + 1.1904761905vw, 2.25rem);
  --t2---underline-line-height: clamp(2.25rem, 1.6785714286rem + 1.1904761905vw, 2.75rem);
  --t2---underline-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --t2---underline-font-weight: 500;
  --t2---underline-text-decoration: underline;
  --t3-font-family: Metropolis;
  --t3-font-size: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  --t3-fontpostscriptname: Metropolis-SemiBold;
  --t3-line-height: clamp(1.75rem, 1.4642857143rem + 0.5952380952vw, 2rem);
  --t3-margin-bottom: 1rem;
  --t3-font-weight: 600;
  --t3-underline-font-family: Metropolis;
  --t3-underline-font-size: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  --t3-underline-fontpostscriptname: Metropolis-SemiBold;
  --t3-underline-line-height: clamp(1.75rem, 1.4642857143rem + 0.5952380952vw, 2rem);
  --t3-underline-margin-bottom: 1rem;
  --t3-underline-font-weight: 600;
  --t3-underline-text-decoration: underline;
  --t4-font-family: Metropolis;
  --t4-font-size: clamp(1rem, 0.8571428571rem + 0.2976190476vw, 1.125rem);
  --t4-fontpostscriptname: Metropolis-SemiBold;
  --t4-line-height: clamp(1.5rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
  --t4-margin-bottom: 0.5rem;
  --t4-font-weight: 600;
  --t5-font-family: Metropolis;
  --t5-font-size: clamp(0.875rem, 0.7321428571rem + 0.2976190476vw, 1rem);
  --t5-fontpostscriptname: Metropolis-SemiBold;
  --t5-line-height: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  --t5-margin-bottom: 0.5rem;
  --t5-font-weight: 600;
  --t6-font-family: Metropolis;
  --t6-font-size: 0.75rem;
  --t6-fontpostscriptname: Metropolis-Bold;
  --t6-line-height: 1rem;
  --t6-margin-bottom: 0.5rem;
  --t6-font-weight: 700;
  --t6-letter-spacing: 0.05rem;
  --t6-text-transform: uppercase;
  --body-1-font-family: Metropolis;
  --body-1-font-size: clamp(1rem, 0.8571428571rem + 0.2976190476vw, 1.125rem);
  --body-1-fontpostscriptname: Metropolis-Regular;
  --body-1-line-height: clamp(1.5rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
  --body-1-margin-bottom: 1.5rem;
  --body-1-font-weight: 400;
  --body-1-underline-font-family: Metropolis;
  --body-1-underline-font-size: clamp(1rem, 0.8571428571rem + 0.2976190476vw, 1.125rem);
  --body-1-underline-fontpostscriptname: Metropolis-Regular;
  --body-1-underline-line-height: clamp(1.5rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
  --body-1-underline-margin-bottom: 1.5rem;
  --body-1-underline-font-weight: 400;
  --body-1-underline-text-decoration: underline;
  --body-1-italic-font-family: Metropolis;
  --body-1-italic-font-size: clamp(1rem, 0.8571428571rem + 0.2976190476vw, 1.125rem);
  --body-1-italic-fontpostscriptname: Metropolis-RegularItalic;
  --body-1-italic-line-height: clamp(1.5rem, 1.2142857143rem + 0.5952380952vw, 1.75rem);
  --body-1-italic-margin-bottom: 1.5rem;
  --body-1-italic-font-weight: 400;
  --body-1-italic-font-style: italic;
  --body-2-font-family: Metropolis;
  --body-2-font-size: 1rem;
  --body-2-fontpostscriptname: Metropolis-Regular;
  --body-2-line-height: 1.5rem;
  --body-2-margin-bottom: 1.5rem;
  --body-2-font-weight: 400;
  --body-2-underline-font-family: Metropolis;
  --body-2-underline-font-size: 1rem;
  --body-2-underline-fontpostscriptname: Metropolis-Regular;
  --body-2-underline-line-height: 1.5rem;
  --body-2-underline-margin-bottom: 1.5rem;
  --body-2-underline-font-weight: 400;
  --body-2-underline-text-decoration: underline;
  --body-2-italic-font-family: Metropolis;
  --body-2-italic-font-size: 1rem;
  --body-2-italic-fontpostscriptname: Metropolis-RegularItalic;
  --body-2-italic-line-height: 1.5rem;
  --body-2-italic-margin-bottom: 1.5rem;
  --body-2-italic-font-weight: 400;
  --body-2-italic-font-style: italic;
  --lead-font-family: Metropolis;
  --lead-font-size: clamp(1.75rem, 1.1785714286rem + 1.1904761905vw, 2.25rem);
  --lead-fontpostscriptname: Metropolis-Regular;
  --lead-line-height: clamp(2.25rem, 1.6785714286rem + 1.1904761905vw, 2.75rem);
  --lead-margin-bottom: clamp(2rem, 0.8571428571rem + 2.380952381vw, 3rem);
  --lead-font-weight: 400;
  --quote-1-font-family: Metropolis;
  --quote-1-font-size: clamp(1.5rem, 0.3571428571rem + 2.380952381vw, 2.5rem);
  --quote-1-fontpostscriptname: Metropolis-MediumItalic;
  --quote-1-line-height: clamp(2rem, 0.2857142857rem + 3.5714285714vw, 3.5rem);
  --quote-1-margin-bottom: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
  --quote-1-font-weight: 700;
  --quote-1-font-style: italic;
  --quote-2-font-family: Metropolis;
  --quote-2-font-size: clamp(1.5rem, 1.0714285714rem + 0.8928571429vw, 1.875rem);
  --quote-2-fontpostscriptname: Metropolis-MediumItalic;
  --quote-2-line-height: clamp(2rem, 1.4285714286rem + 1.1904761905vw, 2.5rem);
  --quote-2-margin-bottom: 1.5rem;
  --quote-2-font-weight: 700;
  --quote-2-font-style: italic;
  --stat-font-family: Metropolis;
  --stat-font-size: clamp(2.5rem, 1.3571428571rem + 2.380952381vw, 3.5rem);
  --stat-fontpostscriptname: Metropolis-SemiBold;
  --stat-line-height: clamp(3rem, 1.8571428571rem + 2.380952381vw, 4rem);
  --stat-margin-bottom: 0.25rem;
  --stat-font-weight: 600;
  --nav-1-font-family: Metropolis;
  --nav-1-font-size: clamp(1rem, 1.5357142857rem + -0.5952380952vw, 1.25rem);
  --nav-1-fontpostscriptname: Metropolis-SemiBold;
  --nav-1-line-height: clamp(1.375rem, 1.6428571429rem + -0.2976190476vw, 1.5rem);
  --nav-1-font-weight: 600;
  --nav-1-underline-font-family: Metropolis;
  --nav-1-underline-font-size: clamp(1rem, 1.5357142857rem + -0.5952380952vw, 1.25rem);
  --nav-1-underline-fontpostscriptname: Metropolis-SemiBold;
  --nav-1-underline-line-height: clamp(1.375rem, 1.6428571429rem + -0.2976190476vw, 1.5rem);
  --nav-1-underline-font-weight: 600;
  --nav-1-underline-text-decoration: underline;
  --nav-2-font-family: Metropolis;
  --nav-2-font-size: clamp(0.875rem, 1.4107142857rem + -0.5952380952vw, 1.125rem);
  --nav-2-fontpostscriptname: Metropolis-SemiBold;
  --nav-2-line-height: clamp(1.125rem, 1.3928571429rem + -0.2976190476vw, 1.25rem);
  --nav-2-font-weight: 600;
  --nav-2-underline-font-family: Metropolis;
  --nav-2-underline-font-size: clamp(0.875rem, 1.4107142857rem + -0.5952380952vw, 1.125rem);
  --nav-2-underline-fontpostscriptname: Metropolis-SemiBold;
  --nav-2-underline-line-height: clamp(1.125rem, 1.3928571429rem + -0.2976190476vw, 1.25rem);
  --nav-2-underline-font-weight: 600;
  --nav-2-underline-text-decoration: underline;
  --nav-3-font-family: Metropolis;
  --nav-3-font-size: clamp(0.75rem, 1.0178571429rem + -0.2976190476vw, 0.875rem);
  --nav-3-fontpostscriptname: Metropolis-SemiBold;
  --nav-3-line-height: clamp(1rem, 1.2678571429rem + -0.2976190476vw, 1.125rem);
  --nav-3-font-weight: 600;
  --title-1-font-family: Metropolis;
  --title-1-font-size: 1.125rem;
  --title-1-fontpostscriptname: Metropolis-SemiBold;
  --title-1-line-height: 1.625rem;
  --title-1-margin-bottom: 1rem;
  --title-1-font-weight: 600;
  --title-1-underline-font-family: Metropolis;
  --title-1-underline-font-size: 1.125rem;
  --title-1-underline-fontpostscriptname: Metropolis-SemiBold;
  --title-1-underline-line-height: 1.625rem;
  --title-1-underline-margin-bottom: 1rem;
  --title-1-underline-font-weight: 600;
  --title-1-underline-text-decoration: underline;
  --title-2-font-family: Metropolis;
  --title-2-font-size: 1rem;
  --title-2-fontpostscriptname: Metropolis-SemiBold;
  --title-2-line-height: 1.5rem;
  --title-2-margin-bottom: 0.5rem;
  --title-2-font-weight: 600;
  --title-2-underline-font-family: Metropolis;
  --title-2-underline-font-size: 1rem;
  --title-2-underline-fontpostscriptname: Metropolis-SemiBold;
  --title-2-underline-line-height: 1.5rem;
  --title-2-underline-margin-bottom: 0.5rem;
  --title-2-underline-font-weight: 600;
  --title-2-underline-text-decoration: underline;
  --title-3-font-family: Metropolis;
  --title-3-font-size: 0.875rem;
  --title-3-fontpostscriptname: Metropolis-SemiBold;
  --title-3-line-height: 1rem;
  --title-3-margin-bottom: 0.5rem;
  --title-3-font-weight: 600;
  --title-3-underline-font-family: Metropolis;
  --title-3-underline-font-size: 0.875rem;
  --title-3-underline-fontpostscriptname: Metropolis-SemiBold;
  --title-3-underline-line-height: 1rem;
  --title-3-underline-margin-bottom: 0.5rem;
  --title-3-underline-font-weight: 600;
  --title-3-underline-text-decoration: underline;
  --subtitle-1-font-family: Metropolis;
  --subtitle-1-font-size: 1rem;
  --subtitle-1-fontpostscriptname: Metropolis-Regular;
  --subtitle-1-line-height: 1.5rem;
  --subtitle-1-margin-bottom: 1rem;
  --subtitle-1-font-weight: 400;
  --subtitle-1-underline-font-family: Metropolis;
  --subtitle-1-underline-font-size: 1rem;
  --subtitle-1-underline-fontpostscriptname: Metropolis-Regular;
  --subtitle-1-underline-line-height: 1.5rem;
  --subtitle-1-underline-margin-bottom: 1rem;
  --subtitle-1-underline-font-weight: 400;
  --subtitle-1-underline-text-decoration: underline;
  --subtitle-2-font-family: Metropolis;
  --subtitle-2-font-size: 0.875rem;
  --subtitle-2-fontpostscriptname: Metropolis-Regular;
  --subtitle-2-line-height: 1.25rem;
  --subtitle-2-margin-bottom: 0.5rem;
  --subtitle-2-font-weight: 400;
  --subtitle-2-underline-font-family: Metropolis;
  --subtitle-2-underline-font-size: 0.875rem;
  --subtitle-2-underline-fontpostscriptname: Metropolis-Regular;
  --subtitle-2-underline-line-height: 1.25rem;
  --subtitle-2-underline-margin-bottom: 0.5rem;
  --subtitle-2-underline-font-weight: 400;
  --subtitle-2-underline-text-decoration: underline;
  --subtitle-3-font-family: Metropolis;
  --subtitle-3-font-size: 0.75rem;
  --subtitle-3-fontpostscriptname: Metropolis-Regular;
  --subtitle-3-line-height: 1rem;
  --subtitle-3-font-weight: 400;
  --subtitle-3-underline-font-family: Metropolis;
  --subtitle-3-underline-font-size: 0.75rem;
  --subtitle-3-underline-fontpostscriptname: Metropolis-Regular;
  --subtitle-3-underline-line-height: 1rem;
  --subtitle-3-underline-margin-bottom: 1rem;
  --subtitle-3-underline-font-weight: 400;
  --subtitle-3-underline-text-decoration: underline;
  --link-1-font-family: Metropolis;
  --link-1-font-size: 1rem;
  --link-1-fontpostscriptname: Metropolis-SemiBold;
  --link-1-line-height: 1.5rem;
  --link-1-margin-bottom: 1rem;
  --link-1-font-weight: 600;
  --link-1-underline-font-family: Metropolis;
  --link-1-underline-font-size: 1rem;
  --link-1-underline-fontpostscriptname: Metropolis-SemiBold;
  --link-1-underline-line-height: 1.5rem;
  --link-1-underline-margin-bottom: 1rem;
  --link-1-underline-font-weight: 600;
  --link-1-underline-text-decoration: underline;
  --link-2-font-family: Metropolis;
  --link-2-font-size: 0.875rem;
  --link-2-fontpostscriptname: Metropolis-SemiBold;
  --link-2-line-height: 1.25rem;
  --link-2-margin-bottom: 0.5rem;
  --link-2-font-weight: 600;
  --link-2-underline-font-family: Metropolis;
  --link-2-underline-font-size: 0.875rem;
  --link-2-underline-fontpostscriptname: Metropolis-SemiBold;
  --link-2-underline-line-height: 1.25rem;
  --link-2-underline-margin-bottom: 0.5rem;
  --link-2-underline-font-weight: 600;
  --link-2-underline-text-decoration: underline;
  --link-3-font-family: Metropolis;
  --link-3-font-size: 0.75rem;
  --link-3-fontpostscriptname: Metropolis-SemiBold;
  --link-3-line-height: 1rem;
  --link-3-font-weight: 600;
  --link-3-underline-font-family: Metropolis;
  --link-3-underline-font-size: 0.75rem;
  --link-3-underline-fontpostscriptname: Metropolis-SemiBold;
  --link-3-underline-line-height: 1rem;
  --link-3-underline-font-weight: 600;
  --link-3-underline-text-decoration: underline;
  --overline-font-family: Metropolis;
  --overline-font-size: 0.75rem;
  --overline-fontpostscriptname: Metropolis-SemiBold;
  --overline-line-height: 1rem;
  --overline-margin-bottom: 0.5rem;
  --overline-font-weight: 600;
  --overline-letter-spacing: 0.05rem;
  --overline-text-transform: uppercase;
  --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
  --containerMaxWidth: calc(36rem - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
  --gutterWidth: clamp(clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 36rem + clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem)) / 2));
  --columnWidth: calc((36rem - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
  --columnMaxWidth: calc((100% - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
}
@media (min-width: 36rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --containerMaxWidth: calc(48rem - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 48rem + clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem)) / 2));
    --columnWidth: calc((48rem - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
  }
}
@media (min-width: 48rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --containerMaxWidth: calc(62rem - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 62rem + clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem)) / 2));
    --columnWidth: calc((62rem - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
  }
}
@media (min-width: 62rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --containerMaxWidth: calc(75rem - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 75rem + clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem)) / 2));
    --columnWidth: calc((75rem - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
  }
}
@media (min-width: 75rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --containerMaxWidth: calc(90rem - clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 90rem + clamp(2.5rem, -3.7857142857rem + 13.0952380952vw, 8rem)) / 2));
    --columnWidth: calc((90rem - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -3.6428571429rem + 10.7142857143vw, 6rem)) / 12);
  }
}

/* stylelint-enable order/order */
.bg-transparent {
  background: transparent;
}

.bg-white {
  background: #fffbf5;
  --blockBackgroundColor: #fffbf5;
}

.bg-neutral-10 {
  background: #eadfce;
  --blockBackgroundColor: #eadfce;
}

.bg-neutral-11 {
  background: #f5ede1;
  --blockBackgroundColor: #f5ede1;
}

.bg-neutral-12 {
  background: #faf4eb;
  --blockBackgroundColor: #faf4eb;
}

.bg-light-top-gradient {
  background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
  --blockBackgroundColor: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
}

.bg-light-bottom-gradient {
  background: linear-gradient(180deg, #fffbf5 0%, #f5ede1 100%);
  --blockBackgroundColor: linear-gradient(180deg, #fffbf5 0%, #f5ede1 100%);
}

.bg-dark-top-gradient {
  background: linear-gradient(180deg, #eadfce 0%, #fffbf5 100%);
  --blockBackgroundColor: linear-gradient(180deg, #eadfce 0%, #fffbf5 100%);
}

.bg-dark-bottom-gradient {
  background: linear-gradient(180deg, #fffbf5 0%, #eadfce 100%);
  --blockBackgroundColor: linear-gradient(180deg, #fffbf5 0%, #eadfce 100%);
}

.bg-dark {
  background: #011314;
  --blockBackgroundColor: #011314;
  --blockColor: #fffbf5;
  color: #fffbf5;
  --blockHoverColor: #ccbca5;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

@media (min-width: 62rem) {
  .pt-d-0 {
    padding-top: 0 !important;
  }
}

@media (min-width: 62rem) {
  .pb-d-0 {
    padding-bottom: 0 !important;
  }
}

@media (max-width: 74.98rem) {
  .pt-m-0 {
    padding-top: 0 !important;
  }
}

@media (max-width: 74.98rem) {
  .pb-m-0 {
    padding-bottom: 0 !important;
  }
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mw-100 {
  max-width: 100%;
}

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

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

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

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.visually-hidden,
.sr-only {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
}

.acf-block {
  padding: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0;
}
.acf-block > h1:first-child, .acf-block > h2:first-child, .acf-block > h3:first-child, .acf-block > h4:first-child, .acf-block > h5:first-child, .acf-block > h6:first-child {
  margin-top: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}
.acf-block.bg-transparent + .acf-block.bg-transparent {
  padding-top: 0;
}
.acf-block.bg-white + .acf-block.bg-white {
  padding-top: 0;
}
.acf-block.bg-neutral-10 + .acf-block.bg-neutral-10 {
  padding-top: 0;
}
.acf-block.bg-neutral-11 + .acf-block.bg-neutral-11 {
  padding-top: 0;
}
.acf-block.bg-neutral-12 + .acf-block.bg-neutral-12 {
  padding-top: 0;
}
.acf-block.bg-light-top-gradient + .acf-block.bg-light-top-gradient {
  padding-top: 0;
}
.acf-block.bg-light-bottom-gradient + .acf-block.bg-light-bottom-gradient {
  padding-top: 0;
}
.acf-block.bg-dark-top-gradient + .acf-block.bg-dark-top-gradient {
  padding-top: 0;
}
.acf-block.bg-dark-bottom-gradient + .acf-block.bg-dark-bottom-gradient {
  padding-top: 0;
}
.acf-block.bg-dark + .acf-block.bg-dark {
  padding-top: 0;
}
.acf-block.bg-neutral-10 + .bg-dark-top-gradient, .acf-block.bg-neutral-11 + .bg-light-top-gradient, .acf-block.bg-white + .bg-dark-bottom-gradient, .acf-block.bg-white + .bg-light-bottom-gradient, .acf-block.bg-dark-top-gradient + .bg-white, .acf-block.bg-dark-bottom-gradient + .bg-neutral-10, .acf-block.bg-light-top-gradient + .bg-white, .acf-block.bg-light-bottom-gradient + .bg-neutral-11 {
  padding-top: 0;
}
.acf-block.bg-neutral-10 + .acf-block.bg-dark-top-gradient, .acf-block.bg-neutral-11 + .acf-block.bg-light-top-gradient, .acf-block.bg-white + .acf-block.bg-dark-bottom-gradient, .acf-block.bg-white + .acf-block.bg-light-bottom-gradient, .acf-block.bg-dark-top-gradient + .acf-block.bg-white, .acf-block.bg-dark-bottom-gradient + .acf-block.bg-neutral-10, .acf-block.bg-light-top-gradient + .acf-block.bg-white, .acf-block.bg-light-bottom-gradient + .acf-block.bg-neutral-11 {
  padding-top: 0;
}
.acf-block.bg-light-bottom-gradient + .acf-block.bg-light-top-gradient, .acf-block.bg-dark-bottom-gradient + .acf-block.bg-dark-top-gradient {
  padding-top: 0;
}
.acf-block.bg-dark-top-gradient + p:not([class]),
.acf-block.bg-dark-top-gradient + h1:not([class]),
.acf-block.bg-dark-top-gradient + h2:not([class]),
.acf-block.bg-dark-top-gradient + h3:not([class]),
.acf-block.bg-dark-top-gradient + h4:not([class]),
.acf-block.bg-dark-top-gradient + h5:not([class]),
.acf-block.bg-dark-top-gradient + h6:not([class]), .acf-block.bg-light-top-gradient + p:not([class]),
.acf-block.bg-light-top-gradient + h1:not([class]),
.acf-block.bg-light-top-gradient + h2:not([class]),
.acf-block.bg-light-top-gradient + h3:not([class]),
.acf-block.bg-light-top-gradient + h4:not([class]),
.acf-block.bg-light-top-gradient + h5:not([class]),
.acf-block.bg-light-top-gradient + h6:not([class]) {
  margin-top: 0;
}
.acf-block.bg-white + section.wp-block-columns-wrapper, .acf-block.bg-transparent + section.wp-block-columns-wrapper, .acf-block.bg-dark-top-gradient + section.wp-block-columns-wrapper, .acf-block.bg-light-top-gradient + section.wp-block-columns-wrapper {
  margin-top: 0;
}
section.wp-block-columns-wrapper + .acf-block.bg-white, section.wp-block-columns-wrapper + .acf-block.bg-transparent, section.wp-block-columns-wrapper + .acf-block.bg-dark-bottom-gradient, section.wp-block-columns-wrapper + .acf-block.bg-light-bottom-gradient {
  padding-top: 0;
}
.acf-block > .content-wrapper:first-of-type > h1:first-child, .acf-block > .content-wrapper:first-of-type > h2:first-child, .acf-block > .content-wrapper:first-of-type > h3:first-child, .acf-block > .content-wrapper:first-of-type > h4:first-child, .acf-block > .content-wrapper:first-of-type > h5:first-child, .acf-block > .content-wrapper:first-of-type > h6:first-child,
.acf-block > .container:first-of-type > h1:first-child,
.acf-block > .container:first-of-type > h2:first-child,
.acf-block > .container:first-of-type > h3:first-child,
.acf-block > .container:first-of-type > h4:first-child,
.acf-block > .container:first-of-type > h5:first-child,
.acf-block > .container:first-of-type > h6:first-child {
  margin-top: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}
.acf-block > .content-wrapper:first-of-type > p:first-child,
.acf-block > .content-wrapper:first-of-type > .wp-block-columns-wrapper:first-child,
.acf-block > .container:first-of-type > p:first-child,
.acf-block > .container:first-of-type > .wp-block-columns-wrapper:first-child {
  margin-top: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}

.acf-innerblocks-container {
  display: contents;
}

body:not(.post-type-archive-library_block):not(.wp-admin) .block-inactive {
  display: none;
}

/* stylelint-disable no-descending-specificity */
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin-right: auto !important;
  margin-left: auto !important;
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h1:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h2:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h3:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h4:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h5:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h6:first-child {
  padding-top: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem) !important;
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block):first-child {
  padding-top: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block):last-child {
  padding-bottom: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 9 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 9 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 7 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 7 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 6 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 6 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper p.is-style-narrow,
.content-wrapper h1.is-style-narrow,
.content-wrapper h2.is-style-narrow,
.content-wrapper h3.is-style-narrow,
.content-wrapper h4.is-style-narrow,
.content-wrapper h5.is-style-narrow,
.content-wrapper h6.is-style-narrow {
    max-width: 40rem;
  }
}
@media (min-width: 48rem) {
  .content-wrapper p.is-style-wide,
.content-wrapper h1.is-style-wide,
.content-wrapper h2.is-style-wide,
.content-wrapper h3.is-style-wide,
.content-wrapper h4.is-style-wide,
.content-wrapper h5.is-style-wide,
.content-wrapper h6.is-style-wide {
    max-width: 68rem;
  }
}
@media (min-width: 48rem) {
  .content-wrapper p.is-style-default,
.content-wrapper h1.is-style-default,
.content-wrapper h2.is-style-default,
.content-wrapper h3.is-style-default,
.content-wrapper h4.is-style-default,
.content-wrapper h5.is-style-default,
.content-wrapper h6.is-style-default {
    max-width: 54rem;
  }
}
@media (min-width: 48rem) {
  .content-wrapper p.is-style-full,
.content-wrapper h1.is-style-full,
.content-wrapper h2.is-style-full,
.content-wrapper h3.is-style-full,
.content-wrapper h4.is-style-full,
.content-wrapper h5.is-style-full,
.content-wrapper h6.is-style-full {
    max-width: 82rem;
  }
}
.acf-block .content-wrapper > h1:first-child, .acf-block .content-wrapper > h2:first-child, .acf-block .content-wrapper > h3:first-child, .acf-block .content-wrapper > h4:first-child, .acf-block .content-wrapper > h5:first-child, .acf-block .content-wrapper > h6:first-child {
  margin-top: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}
.acf-block .content-wrapper > :first-child {
  padding-top: 0 !important;
}
.acf-block .content-wrapper > :last-child {
  padding-bottom: 0 !important;
}
.acf-block .content-wrapper > p:first-child {
  margin-top: clamp(-1rem, 0.0714285714rem + -1.1904761905vw, -0.5rem);
}

.default-content {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 36rem) {
  .default-content {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .default-content {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 62rem) {
  .default-content {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .default-content {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem));
  }
}
.default-content .alignleft {
  float: left;
}
.default-content .alignright {
  float: right;
}
.default-content img.alignleft {
  margin: 0.375rem 1.5rem 1.5rem 0rem;
}
.default-content img.alignright {
  margin: 0.375rem 0rem 1.5rem 1.5rem;
}

/* stylelint-enable no-descending-specificity */
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

.c-btn:hover .icon:first-child, .c-btn:focus .icon:first-child {
  transform: translateX(-0.1875rem);
}
.c-btn:hover .icon:last-child, .c-btn:focus .icon:last-child {
  transform: translateX(0.1875rem);
}
.c-btn .icon {
  font-size: 1.25em;
  transition: transform 0.2s linear;
}
.c-btn .icon:first-child {
  margin-right: 0.25rem;
}
.c-btn .icon:last-child {
  margin-left: 0.25rem;
}

.c-btn--primary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.c-btn--primary::before, .c-btn--primary::after {
  transition: background-color 0.2s linear;
}
.c-btn--primary, a:focus .c-btn--primary, .c-btn--primary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .c-btn--primary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .c-btn--primary, .c-btn--primary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .c-btn--primary, .c-btn--primary:focus-visible, a:active .c-btn--primary, .c-btn--primary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .c-btn--primary, .bg-dark-inner .c-btn--primary {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--primary.hover, .bg-dark-inner .c-btn--primary.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--primary, .bg-dark .c-btn--primary:hover, a:hover .bg-dark-inner .c-btn--primary, .bg-dark-inner .c-btn--primary:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .c-btn--primary, .bg-dark .c-btn--primary:focus-visible, a:active .bg-dark .c-btn--primary, .bg-dark .c-btn--primary:active, a:focus-visible .bg-dark-inner .c-btn--primary, .bg-dark-inner .c-btn--primary:focus-visible, a:active .bg-dark-inner .c-btn--primary, .bg-dark-inner .c-btn--primary:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .c-btn--primary {
    width: 100%;
  }
}
.bg-white .c-btn--primary, a:focus .bg-white .c-btn--primary, .bg-white .c-btn--primary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .c-btn--primary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .c-btn--primary, .bg-white .c-btn--primary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .c-btn--primary, .bg-white .c-btn--primary:focus-visible, a:active .bg-white .c-btn--primary, .bg-white .c-btn--primary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.c-btn--primary[target=_blank]::after {
  display: none;
}

.c-btn--secondary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.c-btn--secondary::before, .c-btn--secondary::after {
  transition: background-color 0.2s linear;
}
.c-btn--secondary, a:focus .c-btn--secondary, .c-btn--secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .c-btn--secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .c-btn--secondary, .c-btn--secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .c-btn--secondary, .c-btn--secondary:focus-visible, a:active .c-btn--secondary, .c-btn--secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .c-btn--secondary, .bg-dark-inner .c-btn--secondary {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--secondary.hover, .bg-dark-inner .c-btn--secondary.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--secondary, .bg-dark .c-btn--secondary:hover, a:hover .bg-dark-inner .c-btn--secondary, .bg-dark-inner .c-btn--secondary:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .c-btn--secondary, .bg-dark .c-btn--secondary:focus-visible, a:active .bg-dark .c-btn--secondary, .bg-dark .c-btn--secondary:active, a:focus-visible .bg-dark-inner .c-btn--secondary, .bg-dark-inner .c-btn--secondary:focus-visible, a:active .bg-dark-inner .c-btn--secondary, .bg-dark-inner .c-btn--secondary:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .c-btn--secondary {
    width: 100%;
  }
}
.bg-white .c-btn--secondary, a:focus .bg-white .c-btn--secondary, .bg-white .c-btn--secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .c-btn--secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .c-btn--secondary, .bg-white .c-btn--secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .c-btn--secondary, .bg-white .c-btn--secondary:focus-visible, a:active .bg-white .c-btn--secondary, .bg-white .c-btn--secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.c-btn--secondary[target=_blank]::after {
  display: none;
}

.c-btn--tertiary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
}
.c-btn--tertiary::before, .c-btn--tertiary::after {
  transition: background-color 0.2s linear;
}
.c-btn--tertiary, a:focus .c-btn--tertiary, .c-btn--tertiary:focus {
  color: #013d00;
  background-color: transparent;
}
.c-btn--tertiary::before, a:focus .c-btn--tertiary::before, .c-btn--tertiary:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .c-btn--tertiary.hover {
    color: #013d00;
  }
  .c-btn--tertiary.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .c-btn--tertiary, .c-btn--tertiary:hover {
    color: #013d00;
  }
  a:hover .c-btn--tertiary::before, .c-btn--tertiary:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .c-btn--tertiary, .c-btn--tertiary:focus-visible, a:active .c-btn--tertiary, .c-btn--tertiary:active {
  color: #013d00;
}
a:focus-visible .c-btn--tertiary::before, .c-btn--tertiary:focus-visible::before, a:active .c-btn--tertiary::before, .c-btn--tertiary:active::before {
  background-color: #013d00;
}
.bg-dark .c-btn--tertiary, a:focus .bg-dark .c-btn--tertiary, .bg-dark .c-btn--tertiary:focus, .bg-dark-inner .c-btn--tertiary, a:focus .bg-dark-inner .c-btn--tertiary, .bg-dark-inner .c-btn--tertiary:focus {
  color: #013d00 !important;
}
.bg-dark .c-btn--tertiary::before, a:focus .bg-dark .c-btn--tertiary::before, .bg-dark .c-btn--tertiary:focus::before, .bg-dark-inner .c-btn--tertiary::before, a:focus .bg-dark-inner .c-btn--tertiary::before, .bg-dark-inner .c-btn--tertiary:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--tertiary.hover, .bg-dark-inner .c-btn--tertiary.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--tertiary, .bg-dark .c-btn--tertiary:hover, a:hover .bg-dark-inner .c-btn--tertiary, .bg-dark-inner .c-btn--tertiary:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .c-btn--tertiary, .bg-dark .c-btn--tertiary:focus-visible, a:active .bg-dark .c-btn--tertiary, .bg-dark .c-btn--tertiary:active, a:focus-visible .bg-dark-inner .c-btn--tertiary, .bg-dark-inner .c-btn--tertiary:focus-visible, a:active .bg-dark-inner .c-btn--tertiary, .bg-dark-inner .c-btn--tertiary:active {
  color: #013d00 !important;
}
.c-btn--tertiary::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .c-btn--tertiary, a:focus .bg-white .c-btn--tertiary, .bg-white .c-btn--tertiary:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .c-btn--tertiary.hover {
    color: #013d00;
  }
  .bg-white .c-btn--tertiary.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .c-btn--tertiary, .bg-white .c-btn--tertiary:hover {
    color: #013d00;
  }
  a:hover .bg-white .c-btn--tertiary::before, .bg-white .c-btn--tertiary:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .c-btn--tertiary, .bg-white .c-btn--tertiary:focus-visible, a:active .bg-white .c-btn--tertiary, .bg-white .c-btn--tertiary:active {
  color: #013d00;
}
a:focus-visible .bg-white .c-btn--tertiary::before, .bg-white .c-btn--tertiary:focus-visible::before, a:active .bg-white .c-btn--tertiary::before, .bg-white .c-btn--tertiary:active::before {
  background-color: #013d00;
}
.c-btn--tertiary.c-btn--icon::before {
  display: none;
}

.c-btn--small {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
}

.c-btn--play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s linear, color 0.2s linear, border-color 0.2s linear;
}
.c-btn--play, a:focus .c-btn--play, .c-btn--play:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .c-btn--play.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .c-btn--play, .c-btn--play:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .c-btn--play, .c-btn--play:focus-visible, a:active .c-btn--play, .c-btn--play:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .c-btn--play, .bg-dark-inner .c-btn--play {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--play.hover, .bg-dark-inner .c-btn--play.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--play, .bg-dark .c-btn--play:hover, a:hover .bg-dark-inner .c-btn--play, .bg-dark-inner .c-btn--play:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .c-btn--play, .bg-dark .c-btn--play:focus-visible, a:active .bg-dark .c-btn--play, .bg-dark .c-btn--play:active, a:focus-visible .bg-dark-inner .c-btn--play, .bg-dark-inner .c-btn--play:focus-visible, a:active .bg-dark-inner .c-btn--play, .bg-dark-inner .c-btn--play:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
.bg-dark .c-btn--play.c-btn--secondary, a:focus .bg-dark .c-btn--play.c-btn--secondary, .bg-dark .c-btn--play.c-btn--secondary:focus, .bg-dark-inner .c-btn--play.c-btn--secondary, a:focus .bg-dark-inner .c-btn--play.c-btn--secondary, .bg-dark-inner .c-btn--play.c-btn--secondary:focus {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: transparent !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--play.c-btn--secondary.hover, .bg-dark-inner .c-btn--play.c-btn--secondary.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--play.c-btn--secondary, .bg-dark .c-btn--play.c-btn--secondary:hover, a:hover .bg-dark-inner .c-btn--play.c-btn--secondary, .bg-dark-inner .c-btn--play.c-btn--secondary:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .c-btn--play.c-btn--secondary, .bg-dark .c-btn--play.c-btn--secondary:focus-visible, a:active .bg-dark .c-btn--play.c-btn--secondary, .bg-dark .c-btn--play.c-btn--secondary:active, a:focus-visible .bg-dark-inner .c-btn--play.c-btn--secondary, .bg-dark-inner .c-btn--play.c-btn--secondary:focus-visible, a:active .bg-dark-inner .c-btn--play.c-btn--secondary, .bg-dark-inner .c-btn--play.c-btn--secondary:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
.c-btn--play::before {
  content: "\ea37";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
}
.c-btn--play.c-btn--secondary, a:focus .c-btn--play.c-btn--secondary, .c-btn--play.c-btn--secondary:focus {
  color: #013d00;
  border-color: #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .c-btn--play.c-btn--secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .c-btn--play.c-btn--secondary, .c-btn--play.c-btn--secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .c-btn--play.c-btn--secondary, .c-btn--play.c-btn--secondary:focus-visible, a:active .c-btn--play.c-btn--secondary, .c-btn--play.c-btn--secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}

.c-btn--close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s linear, color 0.2s linear, border-color 0.2s linear;
}
.c-btn--close, a:focus .c-btn--close, .c-btn--close:focus {
  color: #000e0f;
  border: 0.0625rem solid #eadfce;
  background-color: #eadfce;
}
@media (any-pointer) {
  .c-btn--close.hover {
    color: #013d00;
    border-color: #e0d0b8;
    background-color: #e0d0b8;
  }
}
@media (any-hover) {
  a:hover .c-btn--close, .c-btn--close:hover {
    color: #013d00;
    border-color: #e0d0b8;
    background-color: #e0d0b8;
  }
}
a:focus-visible .c-btn--close, .c-btn--close:focus-visible, a:active .c-btn--close, .c-btn--close:active {
  color: #013d00;
  border-color: #e0d0b8;
  background-color: #e0d0b8;
}
.bg-dark .c-btn--close, a:focus .bg-dark .c-btn--close, .bg-dark .c-btn--close:focus, .bg-dark-inner .c-btn--close, a:focus .bg-dark-inner .c-btn--close, .bg-dark-inner .c-btn--close:focus, .c-btn--close.c-btn--color-alt, a:focus .c-btn--close.c-btn--color-alt, .c-btn--close.c-btn--color-alt:focus {
  color: #fffbf5 !important;
  border-color: #042629 !important;
  background-color: #042629 !important;
}
@media (any-pointer) {
  .bg-dark .c-btn--close.hover, .bg-dark-inner .c-btn--close.hover, .c-btn--close.c-btn--color-alt.hover {
    color: #fffbf5 !important;
    border-color: #093a3d !important;
    background-color: #093a3d !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .c-btn--close, .bg-dark .c-btn--close:hover, a:hover .bg-dark-inner .c-btn--close, .bg-dark-inner .c-btn--close:hover, a:hover .c-btn--close.c-btn--color-alt, .c-btn--close.c-btn--color-alt:hover {
    color: #fffbf5 !important;
    border-color: #093a3d !important;
    background-color: #093a3d !important;
  }
}
a:focus-visible .bg-dark .c-btn--close, .bg-dark .c-btn--close:focus-visible, a:active .bg-dark .c-btn--close, .bg-dark .c-btn--close:active, a:focus-visible .bg-dark-inner .c-btn--close, .bg-dark-inner .c-btn--close:focus-visible, a:active .bg-dark-inner .c-btn--close, .bg-dark-inner .c-btn--close:active, a:focus-visible .c-btn--close.c-btn--color-alt, .c-btn--close.c-btn--color-alt:focus-visible, a:active .c-btn--close.c-btn--color-alt, .c-btn--close.c-btn--color-alt:active {
  color: #fffbf5 !important;
  border-color: #093a3d !important;
  background-color: #093a3d !important;
}
.c-btn--close::before {
  content: "\ea18";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
}

.c-btn--back {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  color: var(--blockColor, #093a3d);
  transition: color 0.2s linear;
}
.bg-dark .c-btn--back {
  color: #fffbf5;
}
.bg-dark .c-btn--back:hover, .bg-dark .c-btn--back:focus {
  color: #ccbca5;
}
.c-btn--back::before {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-btn--back:hover, .c-btn--back:focus {
  color: #b8e5b8;
}
.c-btn--back__wrapper {
  display: flex;
  margin: clamp(-4.5rem, -1.2857142857rem + -3.5714285714vw, -3rem) auto clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) var(--gutterWidth, 1.25rem);
}
.block-editor-block-list__block .c-btn--back__wrapper {
  margin-left: 3.75rem;
}

/* Embed Video Styles */
.iframe-wrapper {
  position: relative;
  height: 0;
  max-width: 100%;
  margin: 3.25rem auto 3.25rem;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.iframe-wrapper__overlay {
  position: absolute;
  top: -0.625rem;
  left: -0.625rem;
  bottom: -0.625rem;
  right: -0.625rem;
  z-index: 1;
  background-color: var(--blockColor, #093a3d);
  background-position: center;
  background-size: cover;
}
.iframe-wrapper__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button),
body:not(.wp-admin) textarea,
body:not(.wp-admin) select,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button),
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  display: block;
  width: 100%;
  padding: 0.6875rem 0.75rem;
  color: #000e0f;
  text-decoration: none;
  border: 0.0625rem solid #ccbca5;
  border-radius: 1.125rem;
  background-color: #fffbf5;
  outline: none;
  transition: color 0.2s linear, border 0.2s linear, border-radius 0.2s linear, background-color 0.2s linear;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):focus-visible,
body:not(.wp-admin) textarea:focus-visible,
body:not(.wp-admin) select:focus-visible,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):focus-visible,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea:focus-visible,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select:focus-visible {
  border: 0.0625rem solid #9cd19b;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button).error,
body:not(.wp-admin) textarea.error,
body:not(.wp-admin) select.error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button).error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea.error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select.error {
  border-color: #ad0322;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-webkit-input-placeholder,
body:not(.wp-admin) textarea::-webkit-input-placeholder,
body:not(.wp-admin) select::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-webkit-input-placeholder {
  color: #706351;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-moz-placeholder,
body:not(.wp-admin) textarea::-moz-placeholder,
body:not(.wp-admin) select::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-moz-placeholder {
  color: #706351;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-ms-placeholder,
body:not(.wp-admin) textarea::-ms-placeholder,
body:not(.wp-admin) select::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-ms-placeholder {
  color: #706351;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::placeholder,
body:not(.wp-admin) textarea::placeholder,
body:not(.wp-admin) select::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::placeholder {
  color: #706351;
}
body:not(.wp-admin) textarea,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea {
  min-height: 9rem;
}

label > input[type=radio]:focus + span::before,
input[type=radio]:focus + label::before,
label > input[type=checkbox]:focus + span::before,
input[type=checkbox]:focus + label::before {
  color: #706351 !important;
}
label > input[type=radio]:checked + span::before,
input[type=radio]:checked + label::before, label > input[type=radio]:focus-visible + span::before,
input[type=radio]:focus-visible + label::before,
label > input[type=checkbox]:checked + span::before,
input[type=checkbox]:checked + label::before,
label > input[type=checkbox]:focus-visible + span::before,
input[type=checkbox]:focus-visible + label::before {
  color: #013d00 !important;
}
label > input[type=radio] + span,
input[type=radio] + label,
label > input[type=checkbox] + span,
input[type=checkbox] + label {
  text-decoration: none !important;
}
@media (any-hover) {
  label > input[type=radio] + span:hover::before,
input[type=radio] + label:hover::before,
label > input[type=checkbox] + span:hover::before,
input[type=checkbox] + label:hover::before {
    color: #013d00 !important;
    background-color: #f5ede1 !important;
  }
}
label > input[type=radio] + span::before,
input[type=radio] + label::before,
label > input[type=checkbox] + span::before,
input[type=checkbox] + label::before {
  color: #706351;
  border-radius: 100%;
}

select {
  -webkit-appearance: none;
}
select:not([multiple]) {
  padding-right: 2.625rem !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10H7Z' fill='%2302040C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right 0.625rem;
}
select:not([multiple]):focus-visible {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 14H17L12 9L7 14Z' fill='%2302040C'/%3E%3C/svg%3E");
}

/* stylelint-disable scss/at-extend-no-missing-placeholder */
.checkbox-label, .gform_wrapper .gfield_checkbox label,
.checkbox-wrapper label, .hs-form-checkbox-display > span,
.hs-form-booleancheckbox-display > span,
.radio-label,
.gform_wrapper .gfield_radio label,
.radio-wrapper label,
.hs-form-radio-display > span {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  cursor: pointer;
}
@media (min-width: 36rem) {
  .checkbox-label, .gform_wrapper .gfield_checkbox label,
.checkbox-wrapper label, .hs-form-checkbox-display > span,
.hs-form-booleancheckbox-display > span,
.radio-label,
.gform_wrapper .gfield_radio label,
.radio-wrapper label,
.hs-form-radio-display > span {
    margin-bottom: 1.5rem;
  }
}
.checkbox-label::before, .gform_wrapper .gfield_checkbox label::before,
.checkbox-wrapper label::before, .hs-form-checkbox-display > span::before,
.hs-form-booleancheckbox-display > span::before,
.radio-label::before,
.gform_wrapper .gfield_radio label::before,
.radio-wrapper label::before,
.hs-form-radio-display > span::before {
  content: "\ea10";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: calc(50% - 0.9375rem);
  left: -0.3125rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  background-color: transparent;
  transition: color 0.2s linear;
}

input:checked + .checkbox-label::before, .gform_wrapper .gfield_checkbox input:checked + label::before,
.checkbox-wrapper input:checked + label::before, .hs-form-checkbox-display > input:checked + span::before,
.hs-form-booleancheckbox-display > input:checked + span::before {
  content: "\ea0f";
}

.radio-label::before, .gform_wrapper .gfield_radio label::before,
.radio-wrapper label::before, .hs-form-radio-display > span::before {
  content: "\ea3c";
}
input:checked + .radio-label::before, .gform_wrapper .gfield_radio input:checked + label::before,
.radio-wrapper input:checked + label::before, .hs-form-radio-display > input:checked + span::before {
  content: "\ea3b";
}

.hs-fieldtype-checkbox > label,
.hs-fieldtype-radio > label {
  display: block;
  margin-bottom: 1rem;
}

.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio,
.hbspt-form ul[role=checkbox],
.hbspt-form ul[role=radio],
.hs_single_checkbox ul {
  margin: 0 !important;
  padding: 0;
  list-style-type: none;
}
.gform_wrapper .gfield_checkbox input[type=radio],
.gform_wrapper .gfield_checkbox input[type=checkbox],
.gform_wrapper .gfield_radio input[type=radio],
.gform_wrapper .gfield_radio input[type=checkbox],
.hbspt-form ul[role=checkbox] input[type=radio],
.hbspt-form ul[role=checkbox] input[type=checkbox],
.hbspt-form ul[role=radio] input[type=radio],
.hbspt-form ul[role=radio] input[type=checkbox],
.hs_single_checkbox ul input[type=radio],
.hs_single_checkbox ul input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.gform_wrapper .gfield_checkbox input[type=radio]:focus ~ label::before,
.gform_wrapper .gfield_checkbox input[type=checkbox]:focus ~ label::before,
.gform_wrapper .gfield_radio input[type=radio]:focus ~ label::before,
.gform_wrapper .gfield_radio input[type=checkbox]:focus ~ label::before,
.hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.hs_single_checkbox ul input[type=checkbox]:focus ~ label::before {
  color: #9cd19b;
}
.bg-dark .gform_wrapper .gfield_checkbox input[type=radio]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_checkbox input[type=checkbox]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_radio input[type=radio]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_radio input[type=checkbox]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.bg-dark .hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.bg-dark .hs_single_checkbox ul input[type=checkbox]:focus ~ label::before {
  color: #ccbca5;
}
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li,
.hbspt-form ul[role=checkbox] li,
.hbspt-form ul[role=radio] li,
.hs_single_checkbox ul li {
  margin-bottom: 0 !important;
}
.gform_wrapper .gfield_checkbox br,
.gform_wrapper .gfield_radio br,
.hbspt-form ul[role=checkbox] br,
.hbspt-form ul[role=radio] br,
.hs_single_checkbox ul br {
  display: none;
}

.hs-form-checkbox-display > span,
.hs-form-radio-display > span,
.hs-form-booleancheckbox-display > span {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 1rem !important;
  cursor: pointer;
}
.hs-form-checkbox-display > span:first-child,
.hs-form-radio-display > span:first-child,
.hs-form-booleancheckbox-display > span:first-child {
  margin-top: 0;
}
.hs-form-checkbox-display > span:last-child,
.hs-form-radio-display > span:last-child,
.hs-form-booleancheckbox-display > span:last-child {
  margin-bottom: 0;
}
.hs-form-checkbox-display > span:hover::before, .hs-form-checkbox-display > span:focus::before,
.hs-form-radio-display > span:hover::before,
.hs-form-radio-display > span:focus::before,
.hs-form-booleancheckbox-display > span:hover::before,
.hs-form-booleancheckbox-display > span:focus::before {
  color: #9cd19b;
}
.bg-dark .hs-form-checkbox-display > span:hover::before, .bg-dark .hs-form-checkbox-display > span:focus::before,
.bg-dark .hs-form-radio-display > span:hover::before,
.bg-dark .hs-form-radio-display > span:focus::before,
.bg-dark .hs-form-booleancheckbox-display > span:hover::before,
.bg-dark .hs-form-booleancheckbox-display > span:focus::before {
  color: #ccbca5;
}

.hs-form-checkbox-display input:checked ~ span::before,
.hs-form-booleancheckbox-display input:checked ~ span::before {
  content: "\ea0f";
}

.hs-form-radio-display input:checked ~ span::before {
  content: "\ea3b";
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label,
.checkbox-wrapper label,
.radio-wrapper label {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: 1rem;
  cursor: pointer;
}
.gform_wrapper .gfield_checkbox label:hover::before, .gform_wrapper .gfield_checkbox label:focus::before,
.gform_wrapper .gfield_radio label:hover::before,
.gform_wrapper .gfield_radio label:focus::before,
.checkbox-wrapper label:hover::before,
.checkbox-wrapper label:focus::before,
.radio-wrapper label:hover::before,
.radio-wrapper label:focus::before {
  color: #b8e5b8;
}
.bg-dark .gform_wrapper .gfield_checkbox label:hover::before, .bg-dark .gform_wrapper .gfield_checkbox label:focus::before,
.bg-dark .gform_wrapper .gfield_radio label:hover::before,
.bg-dark .gform_wrapper .gfield_radio label:focus::before,
.bg-dark .checkbox-wrapper label:hover::before,
.bg-dark .checkbox-wrapper label:focus::before,
.bg-dark .radio-wrapper label:hover::before,
.bg-dark .radio-wrapper label:focus::before {
  color: #ccbca5;
}

.radio-buttons label {
  display: inline-block !important;
  margin: 0rem 0.5rem 0.75rem 0rem !important;
  padding: 0.4375rem 0.9375rem !important;
  border: 1px solid #ccbca5;
  border-radius: 100rem;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.radio-buttons label::before {
  display: none !important;
}
.radio-buttons label:hover, .radio-buttons label:focus {
  color: #fffbf5;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.radio-buttons .gchoice {
  display: inline-block;
}
.radio-buttons .gfield_radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -0.75rem !important;
}

/* stylelint-enable scss/at-extend-no-missing-placeholder */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.pagination__item {
  margin: 0 0.15625rem;
}
.pagination__item--ellipses {
  min-width: 2rem;
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--blockColor, #093a3d);
  border-radius: 50%;
}
.pagination__link:hover {
  color: #fffbf5;
  background: #9cd19b;
}

.pagination__item--current .pagination__link {
  color: #fffbf5;
  background: #9cd19b;
}

.image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
}
.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.leadparagraph {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 48rem) {
  .leadparagraph {
    margin-bottom: 5rem;
    font-size: 2.125rem;
    line-height: 2.5rem;
  }
}

.highlight-text {
  padding: 0.1875rem 0;
  background: rgba(156, 209, 155, 0.1);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-header .header-top-bar, .main-header__desktop {
  display: flex;
}
@media (max-width: 74.98rem) {
  .main-header .header-top-bar, .main-header__desktop {
    display: none;
  }
}
.main-header__mobile {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 75rem) {
  .main-header__mobile {
    display: none;
  }
  .main-header__mobile span.c-btn.mobile-btn {
    display: none;
  }
}
.main-header__mobile .mobile-header__wrapper {
  display: flex;
  align-items: center;
}
.main-header .header-top-bar {
  position: relative;
  background-color: #7ac7cc;
}
.main-header .header-top-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 105rem;
  margin: 0.5rem auto;
  padding: 0 clamp(1.25rem, -15.3571428571rem + 21.4285714286vw, 5rem);
}
.main-header .header-top-bar .header-top-left {
  display: flex;
  align-items: center;
}
.main-header .header-top-bar .header-top-left .main-header-top__nav .menu {
  display: flex;
  align-items: center;
}
.main-header .header-top-bar .header-top-left .main-header-top__nav .menu li {
  position: relative;
  display: inline-flex;
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}
.main-header .header-top-bar .header-top-left .main-header-top__nav .menu li:first-child {
  margin-left: 0;
}
.main-header .header-top-bar .header-top-left .main-header-top__nav .menu li:last-child {
  margin-right: 0;
}
.main-header .header-top-bar .header-top-left .main-header-top__nav .menu li:not(:last-child)::before {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -0.75rem;
  content: "";
  display: block;
  width: 0.03125rem;
  height: 0.75rem;
  background-color: #008c95;
  transform: translateY(-50%);
}
.main-header .header-top-bar .header-top-right {
  display: flex;
  align-items: center;
}
.main-header .header-top-bar .header-top-right .contact-us {
  position: relative;
  display: inline-flex;
  margin-right: 0.75rem;
}
.main-header .header-top-bar .header-top-right .contact-us::after {
  position: absolute;
  top: 50%;
  bottom: 0;
  right: -0.75rem;
  content: "";
  display: block;
  width: 0.03125rem;
  height: 0.75rem;
  background-color: #008c95;
  transform: translateY(-50%);
}
.main-header .header-top-bar .c-btn,
.main-header .header-top-bar a:not(.next-step),
.main-header .header-top-bar .contact-us > a.next-step {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-3-font-weight);
  font-size: var(--nav-3-font-size);
  font-family: var(--nav-3-font-family);
  line-height: var(--nav-3-line-height);
  position: relative;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
}
.main-header .header-top-bar .c-btn::before, .main-header .header-top-bar .c-btn::after,
.main-header .header-top-bar a:not(.next-step)::before,
.main-header .header-top-bar a:not(.next-step)::after,
.main-header .header-top-bar .contact-us > a.next-step::before,
.main-header .header-top-bar .contact-us > a.next-step::after {
  transition: background-color 0.2s linear;
}
.main-header .header-top-bar .c-btn, a:focus .main-header .header-top-bar .c-btn, .main-header .header-top-bar .c-btn:focus,
.main-header .header-top-bar a:not(.next-step),
a:focus .main-header .header-top-bar a:not(.next-step),
.main-header .header-top-bar a:not(.next-step):focus,
.main-header .header-top-bar .contact-us > a.next-step,
a:focus .main-header .header-top-bar .contact-us > a.next-step,
.main-header .header-top-bar .contact-us > a.next-step:focus {
  color: #093a3d;
  background-color: transparent;
}
.main-header .header-top-bar .c-btn span, a:focus .main-header .header-top-bar .c-btn span, .main-header .header-top-bar .c-btn:focus span,
.main-header .header-top-bar a:not(.next-step) span,
a:focus .main-header .header-top-bar a:not(.next-step) span,
.main-header .header-top-bar a:not(.next-step):focus span,
.main-header .header-top-bar .contact-us > a.next-step span,
a:focus .main-header .header-top-bar .contact-us > a.next-step span,
.main-header .header-top-bar .contact-us > a.next-step:focus span {
  color: #093a3d;
}
@media (any-pointer) {
  .main-header .header-top-bar .c-btn.hover,
.main-header .header-top-bar a:not(.next-step).hover,
.main-header .header-top-bar .contact-us > a.next-step.hover {
    color: #013d00;
  }
  .main-header .header-top-bar .c-btn.hover span,
.main-header .header-top-bar a:not(.next-step).hover span,
.main-header .header-top-bar .contact-us > a.next-step.hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-header .header-top-bar .c-btn, .main-header .header-top-bar .c-btn:hover,
a:hover .main-header .header-top-bar a:not(.next-step),
.main-header .header-top-bar a:not(.next-step):hover,
a:hover .main-header .header-top-bar .contact-us > a.next-step,
.main-header .header-top-bar .contact-us > a.next-step:hover {
    color: #013d00;
  }
  a:hover .main-header .header-top-bar .c-btn span, .main-header .header-top-bar .c-btn:hover span,
a:hover .main-header .header-top-bar a:not(.next-step) span,
.main-header .header-top-bar a:not(.next-step):hover span,
a:hover .main-header .header-top-bar .contact-us > a.next-step span,
.main-header .header-top-bar .contact-us > a.next-step:hover span {
    color: #013d00;
  }
}
a:focus-visible .main-header .header-top-bar .c-btn, .main-header .header-top-bar .c-btn:focus-visible, a:active .main-header .header-top-bar .c-btn, .main-header .header-top-bar .c-btn:active,
a:focus-visible .main-header .header-top-bar a:not(.next-step),
.main-header .header-top-bar a:not(.next-step):focus-visible,
a:active .main-header .header-top-bar a:not(.next-step),
.main-header .header-top-bar a:not(.next-step):active,
a:focus-visible .main-header .header-top-bar .contact-us > a.next-step,
.main-header .header-top-bar .contact-us > a.next-step:focus-visible,
a:active .main-header .header-top-bar .contact-us > a.next-step,
.main-header .header-top-bar .contact-us > a.next-step:active {
  color: #013d00;
}
a:focus-visible .main-header .header-top-bar .c-btn span, .main-header .header-top-bar .c-btn:focus-visible span, a:active .main-header .header-top-bar .c-btn span, .main-header .header-top-bar .c-btn:active span,
a:focus-visible .main-header .header-top-bar a:not(.next-step) span,
.main-header .header-top-bar a:not(.next-step):focus-visible span,
a:active .main-header .header-top-bar a:not(.next-step) span,
.main-header .header-top-bar a:not(.next-step):active span,
a:focus-visible .main-header .header-top-bar .contact-us > a.next-step span,
.main-header .header-top-bar .contact-us > a.next-step:focus-visible span,
a:active .main-header .header-top-bar .contact-us > a.next-step span,
.main-header .header-top-bar .contact-us > a.next-step:active span {
  color: #013d00;
}
.bg-dark .main-header .header-top-bar .c-btn, a:focus .bg-dark .main-header .header-top-bar .c-btn, .bg-dark .main-header .header-top-bar .c-btn:focus, .bg-dark-inner .main-header .header-top-bar .c-btn, a:focus .bg-dark-inner .main-header .header-top-bar .c-btn, .bg-dark-inner .main-header .header-top-bar .c-btn:focus,
.bg-dark .main-header .header-top-bar a:not(.next-step),
a:focus .bg-dark .main-header .header-top-bar a:not(.next-step),
.bg-dark .main-header .header-top-bar a:not(.next-step):focus,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step),
a:focus .bg-dark-inner .main-header .header-top-bar a:not(.next-step),
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):focus,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step,
a:focus .bg-dark .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:focus,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step,
a:focus .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:focus {
  color: #013d00 !important;
}
.bg-dark .main-header .header-top-bar .c-btn span, a:focus .bg-dark .main-header .header-top-bar .c-btn span, .bg-dark .main-header .header-top-bar .c-btn:focus span, .bg-dark-inner .main-header .header-top-bar .c-btn span, a:focus .bg-dark-inner .main-header .header-top-bar .c-btn span, .bg-dark-inner .main-header .header-top-bar .c-btn:focus span,
.bg-dark .main-header .header-top-bar a:not(.next-step) span,
a:focus .bg-dark .main-header .header-top-bar a:not(.next-step) span,
.bg-dark .main-header .header-top-bar a:not(.next-step):focus span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step) span,
a:focus .bg-dark-inner .main-header .header-top-bar a:not(.next-step) span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):focus span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step span,
a:focus .bg-dark .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:focus span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step span,
a:focus .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .header-top-bar .c-btn.hover, .bg-dark-inner .main-header .header-top-bar .c-btn.hover,
.bg-dark .main-header .header-top-bar a:not(.next-step).hover,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step).hover,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step.hover,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step.hover {
    color: #013d00 !important;
  }
  .bg-dark .main-header .header-top-bar .c-btn.hover span, .bg-dark-inner .main-header .header-top-bar .c-btn.hover span,
.bg-dark .main-header .header-top-bar a:not(.next-step).hover span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step).hover span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step.hover span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step.hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .header-top-bar .c-btn, .bg-dark .main-header .header-top-bar .c-btn:hover, a:hover .bg-dark-inner .main-header .header-top-bar .c-btn, .bg-dark-inner .main-header .header-top-bar .c-btn:hover,
a:hover .bg-dark .main-header .header-top-bar a:not(.next-step),
.bg-dark .main-header .header-top-bar a:not(.next-step):hover,
a:hover .bg-dark-inner .main-header .header-top-bar a:not(.next-step),
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):hover,
a:hover .bg-dark .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:hover,
a:hover .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:hover {
    color: #013d00 !important;
  }
  a:hover .bg-dark .main-header .header-top-bar .c-btn span, .bg-dark .main-header .header-top-bar .c-btn:hover span, a:hover .bg-dark-inner .main-header .header-top-bar .c-btn span, .bg-dark-inner .main-header .header-top-bar .c-btn:hover span,
a:hover .bg-dark .main-header .header-top-bar a:not(.next-step) span,
.bg-dark .main-header .header-top-bar a:not(.next-step):hover span,
a:hover .bg-dark-inner .main-header .header-top-bar a:not(.next-step) span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):hover span,
a:hover .bg-dark .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:hover span,
a:hover .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-header .header-top-bar .c-btn, .bg-dark .main-header .header-top-bar .c-btn:focus-visible, a:active .bg-dark .main-header .header-top-bar .c-btn, .bg-dark .main-header .header-top-bar .c-btn:active, a:focus-visible .bg-dark-inner .main-header .header-top-bar .c-btn, .bg-dark-inner .main-header .header-top-bar .c-btn:focus-visible, a:active .bg-dark-inner .main-header .header-top-bar .c-btn, .bg-dark-inner .main-header .header-top-bar .c-btn:active,
a:focus-visible .bg-dark .main-header .header-top-bar a:not(.next-step),
.bg-dark .main-header .header-top-bar a:not(.next-step):focus-visible,
a:active .bg-dark .main-header .header-top-bar a:not(.next-step),
.bg-dark .main-header .header-top-bar a:not(.next-step):active,
a:focus-visible .bg-dark-inner .main-header .header-top-bar a:not(.next-step),
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):focus-visible,
a:active .bg-dark-inner .main-header .header-top-bar a:not(.next-step),
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):active,
a:focus-visible .bg-dark .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:focus-visible,
a:active .bg-dark .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:active,
a:focus-visible .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:focus-visible,
a:active .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:active {
  color: #013d00 !important;
}
a:focus-visible .bg-dark .main-header .header-top-bar .c-btn span, .bg-dark .main-header .header-top-bar .c-btn:focus-visible span, a:active .bg-dark .main-header .header-top-bar .c-btn span, .bg-dark .main-header .header-top-bar .c-btn:active span, a:focus-visible .bg-dark-inner .main-header .header-top-bar .c-btn span, .bg-dark-inner .main-header .header-top-bar .c-btn:focus-visible span, a:active .bg-dark-inner .main-header .header-top-bar .c-btn span, .bg-dark-inner .main-header .header-top-bar .c-btn:active span,
a:focus-visible .bg-dark .main-header .header-top-bar a:not(.next-step) span,
.bg-dark .main-header .header-top-bar a:not(.next-step):focus-visible span,
a:active .bg-dark .main-header .header-top-bar a:not(.next-step) span,
.bg-dark .main-header .header-top-bar a:not(.next-step):active span,
a:focus-visible .bg-dark-inner .main-header .header-top-bar a:not(.next-step) span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):focus-visible span,
a:active .bg-dark-inner .main-header .header-top-bar a:not(.next-step) span,
.bg-dark-inner .main-header .header-top-bar a:not(.next-step):active span,
a:focus-visible .bg-dark .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:focus-visible span,
a:active .bg-dark .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark .main-header .header-top-bar .contact-us > a.next-step:active span,
a:focus-visible .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:focus-visible span,
a:active .bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step span,
.bg-dark-inner .main-header .header-top-bar .contact-us > a.next-step:active span {
  color: #013d00 !important;
}
.main-header .header-bottom-bar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 105rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, -15.3571428571rem + 21.4285714286vw, 5rem);
}
.main-header .header-bottom-bar .main-header-bottom {
  display: flex;
  align-items: center;
  width: 100%;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp {
  margin-inline: auto;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu {
  display: flex;
  align-items: center;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a {
  position: relative;
  padding: 1.3125rem 0;
}
@media (any-hover) {
  .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a:hover::before {
    background-color: #9cd19b;
  }
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: all 0.2s linear;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a.active::before, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a:focus::before, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu > li > a:focus-visible::before {
  background-color: #9cd19b;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li {
  display: inline-flex;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  position: relative;
  display: inline;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
  text-underline-offset: 0.375rem !important;
  text-decoration-thickness: 0.125rem !important;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s linear;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link)::before, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link)::after {
  transition: background-color 0.2s linear;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), a:focus .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus {
  color: #093a3d;
}
.main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, a:focus .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus span {
  color: #093a3d;
  background-color: transparent;
}
@media (any-pointer) {
  .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  a:hover .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover span {
    color: #013d00;
  }
}
a:focus-visible .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible, a:active .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active {
  color: #013d00;
  text-decoration: underline;
  text-decoration-color: #9cd19b;
}
a:focus-visible .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible span, a:active .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active span {
  color: #013d00;
}
.bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), a:focus .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), a:focus .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
.bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, a:focus .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, a:focus .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link).hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover, a:hover .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  a:hover .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover span, a:hover .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible, a:active .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active, a:focus-visible .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible, a:active .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link), .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
a:focus-visible .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible span, a:active .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active span, a:focus-visible .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):focus-visible span, a:active .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link) span, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom__nav-wrp > .main-header__nav > .menu li a + .mega-menu-wrapper a:not(.wp-block-button__link):active span {
  color: #013d00 !important;
}
.main-header .header-bottom-bar .main-header-bottom__cta-wrp {
  display: flex;
  align-items: center;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  margin-right: clamp(0.25rem, -0.8571428571rem + 1.4285714286vw, 0.5rem);
  margin-left: clamp(0.25rem, -3.0714285714rem + 4.2857142857vw, 1rem);
}
.main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type::before, .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type::after {
  transition: background-color 0.2s linear;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, a:focus .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus-visible, a:active .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type.hover, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:hover, a:hover .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus-visible, a:active .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:active, a:focus-visible .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus-visible, a:active .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type {
    width: 100%;
  }
}
.bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, a:focus .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:focus-visible, a:active .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:first-of-type[target=_blank]::after {
  display: none;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type::before, .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type::after {
  transition: background-color 0.2s linear;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, a:focus .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus-visible, a:active .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type.hover, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:hover, a:hover .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus-visible, a:active .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:active, a:focus-visible .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus-visible, a:active .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-dark-inner .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type {
    width: 100%;
  }
}
.bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, a:focus .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:focus-visible, a:active .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type, .bg-white .main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.main-header .header-bottom-bar .main-header-bottom .next-step:last-of-type[target=_blank]::after {
  display: none;
}
.main-header__nav {
  position: static;
  display: block;
}
.main-header__nav .highlight-text {
  padding: 0;
}
.main-header__nav > .menu > li {
  margin-right: clamp(0.125rem, -8.78125rem + 11.875vw, 2.5rem);
}
.main-header__nav > .menu > li:last-child {
  margin-right: 0;
}
.main-header__nav > .menu > li > a {
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  display: flex;
  align-items: center;
  color: #093a3d;
  text-decoration: none;
}
@media (any-hover) {
  .main-header__nav > .menu > li > a:hover {
    color: #013d00;
    text-decoration: none;
  }
}
.main-header__nav > .menu > li > a::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  color: #093a3d;
  transform: none;
}
@media (min-width: 75rem) {
  .main-header__nav > .menu > li > a::after {
    transition: all 0.2s linear;
  }
}
.main-header__nav > .menu > li > a:focus, .main-header__nav > .menu > li > a:focus-visible, .main-header__nav > .menu > li > a:active {
  text-decoration: none;
}
@media (min-width: 75rem) {
  .main-header__nav > .menu > li > a.active::after {
    transform: rotate(180deg);
  }
}
.main-header__nav > .menu > li > a .mobile-btn {
  display: none;
}
@media (min-width: 75rem) {
  .main-header .account-links {
    margin-left: 0.75rem;
  }
}
.main-header .account-links,
.main-header .account-links > .menu {
  display: inline-flex;
}
.main-header .account-links > .menu > li {
  display: flex;
  align-items: center;
}
.main-header .account-links .next-step-btn.c-btn--small,
.main-header .account-links .next-step-btn .c-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
@media (max-width: 74.98rem) {
  .main-header .account-links .next-step-btn.c-btn--small::after,
.main-header .account-links .next-step-btn .c-btn::after {
    display: none;
  }
}
.main-header .account-links .next-step-btn.c-btn::after {
  content: "\ea1b";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-header .account-links .next-step-btn.c-btn:hover span.icon,
.main-header .account-links .next-step-btn.c-btn:hover span.icon::before, .main-header .account-links .next-step-btn.c-btn:focus span.icon,
.main-header .account-links .next-step-btn.c-btn:focus span.icon::before {
  transform: none;
}
@media (max-width: 74.98rem) {
  .main-header .account-links .next-step-btn.c-btn--small {
    margin-right: 1rem;
  }
}
.main-header .account-links .next-step-btn .c-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-3-font-weight);
  font-size: var(--nav-3-font-size);
  font-family: var(--nav-3-font-family);
  line-height: var(--nav-3-line-height);
  position: relative;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
}
.main-header .account-links .next-step-btn .c-btn::before, .main-header .account-links .next-step-btn .c-btn::after {
  transition: background-color 0.2s linear;
}
.main-header .account-links .next-step-btn .c-btn, a:focus .main-header .account-links .next-step-btn .c-btn, .main-header .account-links .next-step-btn .c-btn:focus {
  color: #093a3d;
  background-color: transparent;
}
.main-header .account-links .next-step-btn .c-btn span, a:focus .main-header .account-links .next-step-btn .c-btn span, .main-header .account-links .next-step-btn .c-btn:focus span {
  color: #093a3d;
}
@media (any-pointer) {
  .main-header .account-links .next-step-btn .c-btn.hover {
    color: #013d00;
  }
  .main-header .account-links .next-step-btn .c-btn.hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-header .account-links .next-step-btn .c-btn, .main-header .account-links .next-step-btn .c-btn:hover {
    color: #013d00;
  }
  a:hover .main-header .account-links .next-step-btn .c-btn span, .main-header .account-links .next-step-btn .c-btn:hover span {
    color: #013d00;
  }
}
a:focus-visible .main-header .account-links .next-step-btn .c-btn, .main-header .account-links .next-step-btn .c-btn:focus-visible, a:active .main-header .account-links .next-step-btn .c-btn, .main-header .account-links .next-step-btn .c-btn:active {
  color: #013d00;
}
a:focus-visible .main-header .account-links .next-step-btn .c-btn span, .main-header .account-links .next-step-btn .c-btn:focus-visible span, a:active .main-header .account-links .next-step-btn .c-btn span, .main-header .account-links .next-step-btn .c-btn:active span {
  color: #013d00;
}
.bg-dark .main-header .account-links .next-step-btn .c-btn, a:focus .bg-dark .main-header .account-links .next-step-btn .c-btn, .bg-dark .main-header .account-links .next-step-btn .c-btn:focus, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn, a:focus .bg-dark-inner .main-header .account-links .next-step-btn .c-btn, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:focus {
  color: #013d00 !important;
}
.bg-dark .main-header .account-links .next-step-btn .c-btn span, a:focus .bg-dark .main-header .account-links .next-step-btn .c-btn span, .bg-dark .main-header .account-links .next-step-btn .c-btn:focus span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn span, a:focus .bg-dark-inner .main-header .account-links .next-step-btn .c-btn span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .account-links .next-step-btn .c-btn.hover, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn.hover {
    color: #013d00 !important;
  }
  .bg-dark .main-header .account-links .next-step-btn .c-btn.hover span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn.hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .account-links .next-step-btn .c-btn, .bg-dark .main-header .account-links .next-step-btn .c-btn:hover, a:hover .bg-dark-inner .main-header .account-links .next-step-btn .c-btn, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:hover {
    color: #013d00 !important;
  }
  a:hover .bg-dark .main-header .account-links .next-step-btn .c-btn span, .bg-dark .main-header .account-links .next-step-btn .c-btn:hover span, a:hover .bg-dark-inner .main-header .account-links .next-step-btn .c-btn span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-header .account-links .next-step-btn .c-btn, .bg-dark .main-header .account-links .next-step-btn .c-btn:focus-visible, a:active .bg-dark .main-header .account-links .next-step-btn .c-btn, .bg-dark .main-header .account-links .next-step-btn .c-btn:active, a:focus-visible .bg-dark-inner .main-header .account-links .next-step-btn .c-btn, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:focus-visible, a:active .bg-dark-inner .main-header .account-links .next-step-btn .c-btn, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:active {
  color: #013d00 !important;
}
a:focus-visible .bg-dark .main-header .account-links .next-step-btn .c-btn span, .bg-dark .main-header .account-links .next-step-btn .c-btn:focus-visible span, a:active .bg-dark .main-header .account-links .next-step-btn .c-btn span, .bg-dark .main-header .account-links .next-step-btn .c-btn:active span, a:focus-visible .bg-dark-inner .main-header .account-links .next-step-btn .c-btn span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:focus-visible span, a:active .bg-dark-inner .main-header .account-links .next-step-btn .c-btn span, .bg-dark-inner .main-header .account-links .next-step-btn .c-btn:active span {
  color: #013d00 !important;
}
.main-header .account-links .next-step-btn .c-btn::before {
  content: "\ea23";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}
@media (min-width: 75rem) {
  .main-header .account-links .next-step-btn .c-btn::before {
    margin-right: 0.25rem;
    font-size: 1rem;
  }
}
.main-header .account-links .next-step-btn .c-btn.mobile-btn {
  display: inline-flex;
}
@media (min-width: 75rem) {
  .main-header .account-links .next-step-btn .c-btn.mobile-btn {
    display: none;
  }
}
.main-header .account-links .next-step-btn .c-btn.desktop-btn {
  display: inline-flex;
}
@media (max-width: 74.98rem) {
  .main-header .account-links .next-step-btn .c-btn.desktop-btn {
    display: none;
  }
}
.main-header .account-links .sub-menu {
  top: 100%;
  right: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(100%, 15rem);
  height: auto;
  padding: 1.25rem;
  border: none;
  border-radius: 0 0 1.125rem 1.125rem;
}
@media (min-width: 75rem) {
  .main-header .account-links .sub-menu {
    right: clamp(1.25rem, -15.3571428571rem + 21.4285714286vw, 5rem);
  }
}
@media (min-width: 105rem) {
  .main-header .account-links .sub-menu {
    right: clamp(5rem, -47.5rem + 50vw, 32.5rem);
    transform: none;
  }
}
@media (max-width: 35.98rem) {
  .main-header .account-links .sub-menu {
    right: 50%;
    transform: translateX(50%);
  }
}
.main-header .account-links .sub-menu .menu-item:last-child {
  width: 100%;
}
.main-header .account-links .sub-menu .menu-item:last-child a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  width: 100%;
  margin-top: 1.25rem;
}
.main-header .account-links .sub-menu .menu-item:last-child a::before, .main-header .account-links .sub-menu .menu-item:last-child a::after {
  transition: background-color 0.2s linear;
}
.main-header .account-links .sub-menu .menu-item:last-child a, a:focus .main-header .account-links .sub-menu .menu-item:last-child a, .main-header .account-links .sub-menu .menu-item:last-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .main-header .account-links .sub-menu .menu-item:last-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .main-header .account-links .sub-menu .menu-item:last-child a, .main-header .account-links .sub-menu .menu-item:last-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .main-header .account-links .sub-menu .menu-item:last-child a, .main-header .account-links .sub-menu .menu-item:last-child a:focus-visible, a:active .main-header .account-links .sub-menu .menu-item:last-child a, .main-header .account-links .sub-menu .menu-item:last-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a.hover, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a:hover, a:hover .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a:focus-visible, a:active .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark .main-header .account-links .sub-menu .menu-item:last-child a:active, a:focus-visible .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a:focus-visible, a:active .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:last-child a:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .main-header .account-links .sub-menu .menu-item:last-child a {
    width: 100%;
  }
}
.bg-white .main-header .account-links .sub-menu .menu-item:last-child a, a:focus .bg-white .main-header .account-links .sub-menu .menu-item:last-child a, .bg-white .main-header .account-links .sub-menu .menu-item:last-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .main-header .account-links .sub-menu .menu-item:last-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-header .account-links .sub-menu .menu-item:last-child a, .bg-white .main-header .account-links .sub-menu .menu-item:last-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .main-header .account-links .sub-menu .menu-item:last-child a, .bg-white .main-header .account-links .sub-menu .menu-item:last-child a:focus-visible, a:active .bg-white .main-header .account-links .sub-menu .menu-item:last-child a, .bg-white .main-header .account-links .sub-menu .menu-item:last-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.main-header .account-links .sub-menu .menu-item:last-child a[target=_blank]::after {
  display: none;
}
.main-header .account-links .sub-menu .menu-item:not(:last-child) a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  position: relative;
  display: inline;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
  text-underline-offset: 0.375rem !important;
  text-decoration-thickness: 0.125rem !important;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s linear;
}
.main-header .account-links .sub-menu .menu-item:not(:last-child) a::before, .main-header .account-links .sub-menu .menu-item:not(:last-child) a::after {
  transition: background-color 0.2s linear;
}
.main-header .account-links .sub-menu .menu-item:not(:last-child) a, a:focus .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus {
  color: #093a3d;
}
.main-header .account-links .sub-menu .menu-item:not(:last-child) a span, a:focus .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus span {
  color: #093a3d;
  background-color: transparent;
}
@media (any-pointer) {
  .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  a:hover .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover span {
    color: #013d00;
  }
}
a:focus-visible .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible, a:active .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active {
  color: #013d00;
  text-decoration: underline;
  text-decoration-color: #9cd19b;
}
a:focus-visible .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible span, a:active .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active span {
  color: #013d00;
}
.bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a, a:focus .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a, a:focus .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
.bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, a:focus .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, a:focus .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a.hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover, a:hover .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  a:hover .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover span, a:hover .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible, a:active .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active, a:focus-visible .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible, a:active .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
a:focus-visible .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible span, a:active .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active span, a:focus-visible .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:focus-visible span, a:active .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a span, .bg-dark-inner .main-header .account-links .sub-menu .menu-item:not(:last-child) a:active span {
  color: #013d00 !important;
}
.main-header .account-links .sub-menu .menu-item:not(:last-child):not(:first-child) {
  margin-top: 0.75rem;
}
.main-header__logo {
  display: block;
  width: 9.5rem;
  height: 2.5rem;
  margin: 0.75rem clamp(0.625rem, -2.1428571429rem + 3.5714285714vw, 1.25rem) 0.75rem 0;
}
.main-header__logo a {
  display: block;
}
.main-header__logo img {
  object-fit: contain;
}
.main-header__wrapper {
  width: 100%;
}
.main-header .header-menus {
  width: 100%;
}
.main-header__right {
  display: none;
  text-align: right;
}
@media (min-width: 75rem) {
  .main-header__right {
    display: flex;
    align-items: center;
  }
}
.main-header .btn-search.c-btn {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
}
.main-header .btn-search.c-btn:hover i, .main-header .btn-search.c-btn:focus i {
  transform: none;
}
.main-header .btn-search.c-btn i {
  margin: 0 1rem 0 0;
  color: #093a3d;
}
@media (min-width: 75rem) {
  .main-header .btn-search.c-btn i {
    margin: 0 0 0 clamp(0rem, -2.7678571429rem + 3.5714285714vw, 0.625rem);
  }
}
.main-header .btn-search.c-btn i::before {
  content: "\ea42";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-header .btn-search.c-btn.active i::before {
  content: "\ea18";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-header .search-wrapper {
  position: absolute;
  top: 100%;
  display: none;
  width: 100%;
  padding: 0 1.25rem;
  background-color: #fffbf5;
}
.main-header .search-wrapper.active {
  display: block;
}
.main-header .search-wrapper.active .search-action {
  position: relative;
  display: flex;
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem) 0 clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0;
}
.main-header .search-wrapper.active .search-action i {
  position: absolute;
  top: 0;
  margin: calc(clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem) + 0.8125rem) auto clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0.75rem;
  color: #706351;
  font-size: 1.25rem;
}
.main-header .search-wrapper.active .search-action input[type=search]:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button) {
  padding-left: 2.5rem;
  color: #093a3d;
}
.main-header .search-wrapper.active .search-action input[type=search]:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button)::-webkit-search-cancel-button {
  width: 1.5rem;
  height: 1.25rem;
  background-image: url(../images/icons/clear-search.svg);
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
  -webkit-appearance: none;
}

.page-has-hero .main-header {
  position: sticky;
  top: 0;
  width: 100%;
  margin-bottom: 0;
}

.alert-bar {
  position: relative;
  z-index: 9999;
  display: none;
  width: 100%;
  color: #fffbf5;
  background-color: #9cd19b;
}
.alert-bar__item {
  border-bottom: 0.03125rem solid #008c95;
}
.alert-bar__item.viewed {
  display: none;
}
.alert-bar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 105rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, -21.25rem + 25vw, 5rem);
  font-size: 0.75rem;
}
.alert-bar__content p {
  margin: 0;
  font-size: 0.75rem;
  line-height: normal;
}
.alert-bar__content a {
  color: inherit;
  text-decoration: underline;
}
.alert-bar__message {
  flex: 1;
  margin-right: 0.75rem;
  padding: 0.5rem 0 0.4375rem 0;
  color: #093a3d;
  text-align: center;
}
.alert-bar__close {
  position: relative;
  display: inline-flex;
  margin-left: 0.75rem;
  padding: 0;
  border: none;
  background-color: transparent;
}
.alert-bar__close::before {
  content: "\ea0d";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #013d00;
}

/* Mega Menu */
.mega-menu-wrapper {
  position: absolute;
  top: 0;
  z-index: -999;
  border-top: 0.0625rem solid #e0d0b8;
  background: #fffbf5;
  visibility: hidden;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper {
    top: 100%;
    border-radius: 0 0 1.125rem 1.125rem;
    overflow: hidden;
  }
}
.mega-menu-wrapper.active {
  z-index: 999;
  visibility: visible;
}
@media (max-width: 74.98rem) {
  .mega-menu-wrapper.active {
    width: 100%;
  }
  :not(.account-links) .mega-menu-wrapper.active {
    position: fixed;
    top: var(--header-height);
    bottom: env(safe-area-inset-bottom, 0);
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
  .account-links .mega-menu-wrapper.active {
    bottom: unset;
  }
}
.mega-menu-wrapper .container {
  position: relative;
  padding: 0;
  overflow-y: auto;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .container {
    max-width: none;
    margin: 0;
  }
}
@media (max-width: 74.98rem) {
  .mega-menu-wrapper .container {
    height: 100%;
  }
}
.mega-menu-wrapper .container .row {
  flex-direction: column;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  background-color: #faf4eb;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .container .row {
    flex-direction: row;
  }
}
.mega-menu-wrapper .mega-column:first-child {
  padding: 2rem 1.25rem 0 1.25rem;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .mega-column:first-child {
    margin-right: 2rem;
    padding: 2rem 0 2rem 2rem;
  }
}
.mega-menu-wrapper .mega-column:last-child {
  width: 23rem;
  background: #fffbf5;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .mega-column:last-child {
    margin-bottom: 0;
    padding: 2rem 2rem 2rem 2rem;
  }
}
@media (max-width: 74.98rem) {
  .mega-menu-wrapper .mega-column:last-child {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 2rem 1.25rem 3rem 1.25rem;
  }
}
@media (max-width: 74.98rem) {
  .mega-menu-wrapper .mega-column:last-child .block-card-image {
    width: 100%;
    max-width: 20.9375rem;
  }
}
.mega-menu-wrapper .mega-column:last-child .image-wrapper {
  padding-bottom: 67.1075%;
}
.mega-menu-wrapper .mega-column:not(:last-child):not(:first-child) {
  margin-right: 2rem;
  padding: 2rem 0;
}
@media (max-width: 74.98rem) {
  .mega-menu-wrapper .mega-column:not(:last-child):not(:first-child) {
    margin-top: 1.0625rem;
    margin-right: 0;
    padding: 0 1.25rem;
  }
}
.mega-menu-wrapper .mega-column figure img {
  -webkit-mask-image: url(../images/mask-header-image.svg);
  -webkit-mask-size: cover;
  mask-image: url(../images/mask-header-image.svg);
  mask-size: cover;
}
.mega-menu-wrapper .mega-column .wp-block-button {
  position: relative;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  position: relative;
  top: -2.125rem;
  width: auto !important;
  padding: 0.25rem 0.9375rem !important;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link::before, .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link::after {
  transition: background-color 0.2s linear;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, a:focus .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus-visible, a:active .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link.hover, .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:hover, a:hover .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus-visible, a:active .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:active, a:focus-visible .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus-visible, a:active .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-dark-inner .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link {
    width: 100%;
  }
}
.bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, a:focus .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:focus-visible, a:active .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link, .bg-white .mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link[target=_blank]::after {
  display: none;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link::before {
  display: none;
}
.mega-menu-wrapper .mega-column .wp-block-button .wp-block-button__link::after {
  content: "\ea08";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block !important;
}
.mega-menu-wrapper .menu-title {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  position: relative;
  margin-bottom: clamp(1.75rem, 1.1785714286rem + 1.1904761905vw, 2.25rem);
  color: #706351;
}
.mega-menu-wrapper .menu-title::after {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  content: "";
  height: 0.0625rem;
  background-color: #eadfce;
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .menu-title + .menu {
    display: grid;
    grid-template-columns: repeat(auto-fill, 1fr);
  }
}
@media (min-width: 75rem) {
  .mega-menu-wrapper .menu-title + .menu > li {
    width: 12.25rem;
  }
}
.mega-menu-wrapper .menu-title + .menu > li > a {
  text-align: left;
}
.mega-menu-wrapper *:not(.account-links) li {
  display: block;
  margin: 0 0 1.5rem 0;
}
.mega-menu-wrapper *:not(.account-links) li a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  position: relative;
  display: inline;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
  text-underline-offset: 0.375rem !important;
  text-decoration-thickness: 0.125rem !important;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s linear;
}
.mega-menu-wrapper *:not(.account-links) li a::before, .mega-menu-wrapper *:not(.account-links) li a::after {
  transition: background-color 0.2s linear;
}
.mega-menu-wrapper *:not(.account-links) li a, a:focus .mega-menu-wrapper *:not(.account-links) li a, .mega-menu-wrapper *:not(.account-links) li a:focus {
  color: #093a3d;
}
.mega-menu-wrapper *:not(.account-links) li a span, a:focus .mega-menu-wrapper *:not(.account-links) li a span, .mega-menu-wrapper *:not(.account-links) li a:focus span {
  color: #093a3d;
  background-color: transparent;
}
@media (any-pointer) {
  .mega-menu-wrapper *:not(.account-links) li a.hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  .mega-menu-wrapper *:not(.account-links) li a.hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .mega-menu-wrapper *:not(.account-links) li a, .mega-menu-wrapper *:not(.account-links) li a:hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  a:hover .mega-menu-wrapper *:not(.account-links) li a span, .mega-menu-wrapper *:not(.account-links) li a:hover span {
    color: #013d00;
  }
}
a:focus-visible .mega-menu-wrapper *:not(.account-links) li a, .mega-menu-wrapper *:not(.account-links) li a:focus-visible, a:active .mega-menu-wrapper *:not(.account-links) li a, .mega-menu-wrapper *:not(.account-links) li a:active {
  color: #013d00;
  text-decoration: underline;
  text-decoration-color: #9cd19b;
}
a:focus-visible .mega-menu-wrapper *:not(.account-links) li a span, .mega-menu-wrapper *:not(.account-links) li a:focus-visible span, a:active .mega-menu-wrapper *:not(.account-links) li a span, .mega-menu-wrapper *:not(.account-links) li a:active span {
  color: #013d00;
}
.bg-dark .mega-menu-wrapper *:not(.account-links) li a, a:focus .bg-dark .mega-menu-wrapper *:not(.account-links) li a, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:focus, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a, a:focus .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:focus {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
.bg-dark .mega-menu-wrapper *:not(.account-links) li a span, a:focus .bg-dark .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:focus span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a span, a:focus .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .mega-menu-wrapper *:not(.account-links) li a.hover, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a.hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  .bg-dark .mega-menu-wrapper *:not(.account-links) li a.hover span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a.hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .mega-menu-wrapper *:not(.account-links) li a, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:hover, a:hover .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  a:hover .bg-dark .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:hover span, a:hover .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .mega-menu-wrapper *:not(.account-links) li a, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:focus-visible, a:active .bg-dark .mega-menu-wrapper *:not(.account-links) li a, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:active, a:focus-visible .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:focus-visible, a:active .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:active {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
a:focus-visible .bg-dark .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:focus-visible span, a:active .bg-dark .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark .mega-menu-wrapper *:not(.account-links) li a:active span, a:focus-visible .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:focus-visible span, a:active .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a span, .bg-dark-inner .mega-menu-wrapper *:not(.account-links) li a:active span {
  color: #013d00 !important;
}

@media (min-width: 75rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(1) {
    grid-row: 1;
    grid-column: 1;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(6) {
    grid-row: 1;
    grid-column: 2;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(11) {
    grid-row: 1;
    grid-column: 3;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(2) {
    grid-row: 2;
    grid-column: 1;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(7) {
    grid-row: 2;
    grid-column: 2;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(12) {
    grid-row: 2;
    grid-column: 3;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(3) {
    grid-row: 3;
    grid-column: 1;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(8) {
    grid-row: 3;
    grid-column: 2;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(13) {
    grid-row: 3;
    grid-column: 3;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(4) {
    grid-row: 4;
    grid-column: 1;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(9) {
    grid-row: 4;
    grid-column: 2;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(14) {
    grid-row: 4;
    grid-column: 3;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(5) {
    grid-row: 5;
    grid-column: 1;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(10) {
    grid-row: 5;
    grid-column: 2;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-child(15) {
    grid-row: 5;
    grid-column: 3;
    margin-left: 2rem;
  }
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(1) .mega-menu-wrapper {
    left: clamp(1.25rem, -15.3571428571rem + 21.4285714286vw, 5rem);
  }
}
@media (min-width: 75rem) and (min-width: 105rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(1) .mega-menu-wrapper {
    left: clamp(5rem, -47.5rem + 50vw, 32.5rem);
  }
}
@media (min-width: 75rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(2) .mega-menu-wrapper {
    left: clamp(3.4375rem, -42.2321428571rem + 58.9285714286vw, 13.75rem);
  }
}
@media (min-width: 75rem) and (min-width: 105rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(2) .mega-menu-wrapper {
    left: clamp(13.75rem, -38.75rem + 50vw, 41.25rem);
  }
}
@media (min-width: 75rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(3) .mega-menu-wrapper {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 75rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(4) .mega-menu-wrapper {
    right: clamp(3.4375rem, -42.2321428571rem + 58.9285714286vw, 13.75rem);
  }
}
@media (min-width: 75rem) and (min-width: 105rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(4) .mega-menu-wrapper {
    right: clamp(13.75rem, -38.75rem + 50vw, 41.25rem);
  }
}
@media (min-width: 75rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(5) .mega-menu-wrapper {
    right: clamp(1.25rem, -15.3571428571rem + 21.4285714286vw, 5rem);
  }
}
@media (min-width: 75rem) and (min-width: 105rem) {
  .main-header__desktop *:not(.menu .menu) .menu-item:nth-of-type(5) .mega-menu-wrapper {
    right: clamp(5rem, -47.5rem + 50vw, 32.5rem);
  }
}

/* Main Header Mobile */
.btn-hamburger {
  position: relative;
  width: 1.5rem;
  height: 1rem;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.btn-hamburger.active {
  z-index: 99;
}
.btn-hamburger.active span:nth-child(1) {
  top: 0.4375rem;
  transform: rotate(45deg);
}
.btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.btn-hamburger.active span:nth-child(3) {
  top: 0.4375rem;
  transform: rotate(-45deg);
}
.btn-hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--blockColor, #093a3d);
  transform-origin: center;
  transition: all 0.2s linear;
}
.btn-hamburger span:nth-child(1) {
  top: 0;
}
.btn-hamburger span:nth-child(2) {
  top: 0.4375rem;
}
.btn-hamburger span:nth-child(3) {
  top: 0.875rem;
}

.main-header__nav-mobile {
  font-size: 1.125rem;
  line-height: 2rem;
}
.main-header__nav-mobile--wrapper {
  position: fixed;
  top: var(--header-height);
  left: 0;
  bottom: env(safe-area-inset-bottom, 0);
  z-index: 99;
  display: none;
  width: 100%;
  background: #fffbf5;
}
.main-header__nav-mobile--wrapper.active {
  display: block;
  border-top: 1px solid #eadfce;
}
@media (min-width: 75rem) {
  .main-header__nav-mobile--wrapper.active {
    display: none;
  }
}
.main-header__nav-mobile--wrapper nav li {
  display: block;
}
.main-header__nav-mobile > .menu > li {
  position: relative;
  margin: 0;
}
.main-header__nav-mobile > .menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
}
.main-header__nav-mobile > .menu > li > a::after {
  font-size: 1.5rem;
  transform: rotate(-90deg);
}
.main-header__nav-mobile > .menu > li > a.active {
  position: absolute;
  top: calc(-1 * var(--header-height) + var(--alert-height));
  justify-content: center;
  width: calc(100% - 3rem);
  padding-left: 4.25rem;
  background-color: #fffbf5;
}
.main-header__nav-mobile > .menu > li > a.active::before {
  position: absolute;
  left: 3rem;
  content: "All";
  font-size: 1.125rem;
}
.main-header__nav-mobile > .menu > li > a.active::after {
  position: absolute;
  left: 1.25rem;
  transform: rotate(90deg);
}
@media (max-width: 74.98rem) {
  .main-header .mobile-menu {
    margin-bottom: auto;
  }
}
.main-header .mobile-top {
  padding: 0 1.25rem;
  background-color: #7ac7cc;
}
.main-header .mobile-top .main-header-top__nav__mobile > .menu {
  display: flex;
  flex-wrap: wrap;
}
.main-header .mobile-top .main-header-top__nav__mobile > .menu > li {
  width: 33.3333333333%;
  margin: 0;
}
@media (min-width: 48rem) and (max-width: 74.98rem) {
  .main-header .mobile-top .main-header-top__nav__mobile > .menu > li {
    width: 16.6666666667%;
  }
}
@media (min-width: 36rem) and (max-width: 74.98rem) {
  .main-header .mobile-top .main-header-top__nav__mobile > .menu > li > a {
    justify-content: center;
  }
}
.main-header .mobile-top .main-header-top__nav__mobile > .menu > li > a {
  font-weight: var(--nav-3-font-weight);
  font-size: var(--nav-3-font-size);
  font-family: var(--nav-3-font-family);
  line-height: var(--nav-3-line-height);
  padding: 1.25rem 0;
}
.main-header .mobile-top .main-header-top__nav__mobile > .menu > li > a::after {
  display: none;
}
.main-header .mobile-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 1.25rem;
}
@media (max-width: 47.98rem) {
  .main-header .mobile-bottom {
    justify-content: space-between;
  }
}
@media (max-width: 47.98rem) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile {
    width: calc(50% - 0.375rem);
  }
}
@media (min-width: 48rem) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child {
    margin-right: 0.75rem;
  }
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a::before, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a::after {
  transition: background-color 0.2s linear;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, a:focus .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus-visible, a:active .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a.hover, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:hover, a:hover .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus-visible, a:active .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:active, a:focus-visible .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus-visible, a:active .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a {
    width: 100%;
  }
}
.bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, a:focus .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:focus-visible, a:active .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:first-child a[target=_blank]::after {
  display: none;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a::before, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a::after {
  transition: background-color 0.2s linear;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, a:focus .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus-visible, a:active .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a.hover, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:hover, a:hover .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus-visible, a:active .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:active, a:focus-visible .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus-visible, a:active .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-dark-inner .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a {
    width: 100%;
  }
}
.bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, a:focus .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:focus-visible, a:active .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a, .bg-white .main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.main-header .mobile-bottom .main-header__cta-wrapper--mobile:last-child a[target=_blank]::after {
  display: none;
}
@media (max-width: 47.98rem) {
  .main-header .mobile-bottom .main-header__cta-wrapper--mobile a {
    width: 100%;
  }
}
.main-header .mobile-header-scroll {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.main-header .mobile-header-scroll.active .main-header__nav-mobile > .menu > .menu-item:not(.active) {
  display: none;
}
.main-header .mobile-header-scroll.active .main-header__nav-mobile > .menu > .menu-item.active {
  display: block;
}
.main-header .mobile-header-scroll.active .main-header__nav-mobile > .menu > .menu-item.active > a::before {
  transform: translateX(-0.625rem);
}
.main-header .mobile-header-scroll.active .main-header__nav-mobile > .menu > .menu-item.active > a::after {
  transform: translateX(-0.625rem) rotate(90deg);
}

.main-footer {
  position: relative;
  padding: 4.5rem 0;
  border-top: 0.0625rem solid #eadfce;
  background: linear-gradient(180deg, #fffbf5 0%, #f5ede1 100%);
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  .main-footer {
    padding: 3rem 0 2.5rem 0;
  }
}
.main-footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-footer p {
  margin: 0;
}
.main-footer a {
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  position: relative;
  display: inline-block;
}
.main-footer a:hover, .main-footer a:focus {
  text-decoration: none;
}
.main-footer__top-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .main-footer__top-wrapper {
    flex-direction: row;
  }
}
@media (min-width: 62rem) {
  .main-footer__top-wrapper > [class*=-wrapper]:not(:first-child):not(:last-child) {
    margin-right: clamp(0.9375rem, -8.9752906977rem + 15.988372093vw, 7.8125rem);
    margin-left: clamp(0.9375rem, -10.6875rem + 18.75vw, 9rem);
  }
}
.main-footer__top-wrapper .footer-menu--1 {
  margin-right: clamp(0.625rem, -12.0813953488rem + 20.4941860465vw, 9.4375rem);
}
@media (max-width: 61.98rem) {
  .main-footer__top-wrapper .footer-menu--1 {
    margin-top: 3rem;
  }
}
.main-footer__top-wrapper .footer-menu--1 > * {
  margin-right: clamp(-3.125rem, 4.5058139535rem + -7.2674418605vw, 0rem);
}
.main-footer__top-wrapper .footer-menu--1 > *:first-child {
  width: calc(100% + clamp(0rem, -9.011627907rem + 14.5348837209vw, 6.25rem));
}
.main-footer__top-wrapper .footer-menu--1 > *:not(:first-child) > * {
  width: calc(100% + clamp(0rem, -4.5058139535rem + 7.2674418605vw, 3.125rem));
}
.main-footer__top-wrapper .footer-menu--2 {
  margin-right: clamp(0.625rem, -9.648255814rem + 16.5697674419vw, 7.75rem);
}
@media (max-width: 61.98rem) {
  .main-footer__top-wrapper .footer-menu--2 {
    margin-top: 3rem;
  }
}
.main-footer__top-wrapper .footer-menu--2 > * {
  margin-right: clamp(-3.125rem, 4.5058139535rem + -7.2674418605vw, 0rem);
}
.main-footer__top-wrapper .footer-menu--2 > *:first-child {
  width: calc(100% + clamp(0rem, -9.011627907rem + 14.5348837209vw, 6.25rem));
}
.main-footer__top-wrapper .footer-menu--2 > *:not(:first-child) > * {
  width: calc(100% + clamp(0rem, -4.5058139535rem + 7.2674418605vw, 3.125rem));
}
.main-footer__top-wrapper .footer-menu--3 {
  margin-top: auto;
  margin-left: clamp(0.625rem, -5.1424418605rem + 9.3023255814vw, 4.625rem);
}
.main-footer__top-wrapper .footer-menu--3 > *:not(:first-child) > * {
  width: calc(100% + clamp(0rem, -1.8023255814rem + 2.9069767442vw, 1.25rem));
}
.main-footer__top-wrapper .footer-menu--1 [class*=overline], .main-footer__top-wrapper .footer-menu--2 [class*=overline], .main-footer__top-wrapper .footer-menu--3 [class*=overline] {
  color: #706351;
}
@media (max-width: 61.98rem) {
  .main-footer__top-wrapper .footer-menu--1 ul, .main-footer__top-wrapper .footer-menu--2 ul, .main-footer__top-wrapper .footer-menu--3 ul {
    display: flex;
    flex-wrap: wrap;
  }
  .main-footer__top-wrapper .footer-menu--1 ul li, .main-footer__top-wrapper .footer-menu--2 ul li, .main-footer__top-wrapper .footer-menu--3 ul li {
    width: calc(50% - 0.46875rem);
  }
  .main-footer__top-wrapper .footer-menu--1 ul li:nth-child(odd), .main-footer__top-wrapper .footer-menu--2 ul li:nth-child(odd), .main-footer__top-wrapper .footer-menu--3 ul li:nth-child(odd) {
    margin-right: 0.46875rem;
  }
  .main-footer__top-wrapper .footer-menu--1 ul li:nth-child(even), .main-footer__top-wrapper .footer-menu--2 ul li:nth-child(even), .main-footer__top-wrapper .footer-menu--3 ul li:nth-child(even) {
    margin-left: 0.46875rem;
  }
}
.main-footer__top-wrapper .footer-menu--1 a, .main-footer__top-wrapper .footer-menu--2 a, .main-footer__top-wrapper .footer-menu--3 a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  position: relative;
  display: inline;
  padding: 0;
  text-align: left;
  text-decoration: none;
  border: none;
  text-underline-offset: 0.375rem !important;
  text-decoration-thickness: 0.125rem !important;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.2s linear;
  color: #093a3d;
  text-transform: capitalize;
}
.main-footer__top-wrapper .footer-menu--1 a::before, .main-footer__top-wrapper .footer-menu--1 a::after, .main-footer__top-wrapper .footer-menu--2 a::before, .main-footer__top-wrapper .footer-menu--2 a::after, .main-footer__top-wrapper .footer-menu--3 a::before, .main-footer__top-wrapper .footer-menu--3 a::after {
  transition: background-color 0.2s linear;
}
.main-footer__top-wrapper .footer-menu--1 a, a:focus .main-footer__top-wrapper .footer-menu--1 a, .main-footer__top-wrapper .footer-menu--1 a:focus, .main-footer__top-wrapper .footer-menu--2 a, a:focus .main-footer__top-wrapper .footer-menu--2 a, .main-footer__top-wrapper .footer-menu--2 a:focus, .main-footer__top-wrapper .footer-menu--3 a, a:focus .main-footer__top-wrapper .footer-menu--3 a, .main-footer__top-wrapper .footer-menu--3 a:focus {
  color: #093a3d;
}
.main-footer__top-wrapper .footer-menu--1 a span, a:focus .main-footer__top-wrapper .footer-menu--1 a span, .main-footer__top-wrapper .footer-menu--1 a:focus span, .main-footer__top-wrapper .footer-menu--2 a span, a:focus .main-footer__top-wrapper .footer-menu--2 a span, .main-footer__top-wrapper .footer-menu--2 a:focus span, .main-footer__top-wrapper .footer-menu--3 a span, a:focus .main-footer__top-wrapper .footer-menu--3 a span, .main-footer__top-wrapper .footer-menu--3 a:focus span {
  color: #093a3d;
  background-color: transparent;
}
@media (any-pointer) {
  .main-footer__top-wrapper .footer-menu--1 a.hover, .main-footer__top-wrapper .footer-menu--2 a.hover, .main-footer__top-wrapper .footer-menu--3 a.hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  .main-footer__top-wrapper .footer-menu--1 a.hover span, .main-footer__top-wrapper .footer-menu--2 a.hover span, .main-footer__top-wrapper .footer-menu--3 a.hover span {
    color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-footer__top-wrapper .footer-menu--1 a, .main-footer__top-wrapper .footer-menu--1 a:hover, a:hover .main-footer__top-wrapper .footer-menu--2 a, .main-footer__top-wrapper .footer-menu--2 a:hover, a:hover .main-footer__top-wrapper .footer-menu--3 a, .main-footer__top-wrapper .footer-menu--3 a:hover {
    color: #013d00;
    text-decoration: underline;
    text-decoration-color: #9cd19b;
  }
  a:hover .main-footer__top-wrapper .footer-menu--1 a span, .main-footer__top-wrapper .footer-menu--1 a:hover span, a:hover .main-footer__top-wrapper .footer-menu--2 a span, .main-footer__top-wrapper .footer-menu--2 a:hover span, a:hover .main-footer__top-wrapper .footer-menu--3 a span, .main-footer__top-wrapper .footer-menu--3 a:hover span {
    color: #013d00;
  }
}
a:focus-visible .main-footer__top-wrapper .footer-menu--1 a, .main-footer__top-wrapper .footer-menu--1 a:focus-visible, a:active .main-footer__top-wrapper .footer-menu--1 a, .main-footer__top-wrapper .footer-menu--1 a:active, a:focus-visible .main-footer__top-wrapper .footer-menu--2 a, .main-footer__top-wrapper .footer-menu--2 a:focus-visible, a:active .main-footer__top-wrapper .footer-menu--2 a, .main-footer__top-wrapper .footer-menu--2 a:active, a:focus-visible .main-footer__top-wrapper .footer-menu--3 a, .main-footer__top-wrapper .footer-menu--3 a:focus-visible, a:active .main-footer__top-wrapper .footer-menu--3 a, .main-footer__top-wrapper .footer-menu--3 a:active {
  color: #013d00;
  text-decoration: underline;
  text-decoration-color: #9cd19b;
}
a:focus-visible .main-footer__top-wrapper .footer-menu--1 a span, .main-footer__top-wrapper .footer-menu--1 a:focus-visible span, a:active .main-footer__top-wrapper .footer-menu--1 a span, .main-footer__top-wrapper .footer-menu--1 a:active span, a:focus-visible .main-footer__top-wrapper .footer-menu--2 a span, .main-footer__top-wrapper .footer-menu--2 a:focus-visible span, a:active .main-footer__top-wrapper .footer-menu--2 a span, .main-footer__top-wrapper .footer-menu--2 a:active span, a:focus-visible .main-footer__top-wrapper .footer-menu--3 a span, .main-footer__top-wrapper .footer-menu--3 a:focus-visible span, a:active .main-footer__top-wrapper .footer-menu--3 a span, .main-footer__top-wrapper .footer-menu--3 a:active span {
  color: #013d00;
}
.bg-dark .main-footer__top-wrapper .footer-menu--1 a, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--1 a, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:focus, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:focus, .bg-dark .main-footer__top-wrapper .footer-menu--2 a, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--2 a, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:focus, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:focus, .bg-dark .main-footer__top-wrapper .footer-menu--3 a, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--3 a, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:focus, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:focus {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
.bg-dark .main-footer__top-wrapper .footer-menu--1 a span, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:focus span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a span, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:focus span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a span, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:focus span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a span, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:focus span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a span, a:focus .bg-dark .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:focus span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a span, a:focus .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:focus span {
  color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-footer__top-wrapper .footer-menu--1 a.hover, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a.hover, .bg-dark .main-footer__top-wrapper .footer-menu--2 a.hover, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a.hover, .bg-dark .main-footer__top-wrapper .footer-menu--3 a.hover, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a.hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  .bg-dark .main-footer__top-wrapper .footer-menu--1 a.hover span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a.hover span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a.hover span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a.hover span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a.hover span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a.hover span {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-footer__top-wrapper .footer-menu--1 a, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:hover, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:hover, a:hover .bg-dark .main-footer__top-wrapper .footer-menu--2 a, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:hover, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:hover, a:hover .bg-dark .main-footer__top-wrapper .footer-menu--3 a, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:hover, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:hover {
    color: #013d00 !important;
    text-decoration-color: #013d00 !important;
  }
  a:hover .bg-dark .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:hover span, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:hover span, a:hover .bg-dark .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:hover span, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:hover span, a:hover .bg-dark .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:hover span, a:hover .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:hover span {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--1 a, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:focus-visible, a:active .bg-dark .main-footer__top-wrapper .footer-menu--1 a, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:active, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:focus-visible, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:active, a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--2 a, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:focus-visible, a:active .bg-dark .main-footer__top-wrapper .footer-menu--2 a, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:active, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:focus-visible, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:active, a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--3 a, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:focus-visible, a:active .bg-dark .main-footer__top-wrapper .footer-menu--3 a, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:active, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:focus-visible, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:active {
  color: #013d00 !important;
  text-decoration-color: #013d00 !important;
}
a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:focus-visible span, a:active .bg-dark .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark .main-footer__top-wrapper .footer-menu--1 a:active span, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:focus-visible span, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--1 a:active span, a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:focus-visible span, a:active .bg-dark .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark .main-footer__top-wrapper .footer-menu--2 a:active span, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:focus-visible span, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--2 a:active span, a:focus-visible .bg-dark .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:focus-visible span, a:active .bg-dark .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark .main-footer__top-wrapper .footer-menu--3 a:active span, a:focus-visible .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:focus-visible span, a:active .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a span, .bg-dark-inner .main-footer__top-wrapper .footer-menu--3 a:active span {
  color: #013d00 !important;
}
.main-footer__top-wrapper .footer-menu--1 a::before, .main-footer__top-wrapper .footer-menu--2 a::before, .main-footer__top-wrapper .footer-menu--3 a::before {
  display: none;
}
.main-footer__top-wrapper .footer-menu--1 a:hover, .main-footer__top-wrapper .footer-menu--1 a:focus, .main-footer__top-wrapper .footer-menu--2 a:hover, .main-footer__top-wrapper .footer-menu--2 a:focus, .main-footer__top-wrapper .footer-menu--3 a:hover, .main-footer__top-wrapper .footer-menu--3 a:focus {
  color: #013d00;
}
.main-footer__logo img {
  height: 3.125rem;
}
.main-footer__address {
  margin-block: 1.5rem;
}
.main-footer__address p {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
}
.main-footer__address [href^="tel:"],
.main-footer__address [href^="mailto:"] {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  color: #093a3d;
}
.main-footer__address [href^="tel:"]:hover, .main-footer__address [href^="tel:"]:focus,
.main-footer__address [href^="mailto:"]:hover,
.main-footer__address [href^="mailto:"]:focus {
  text-decoration: underline;
}
.main-footer__contact a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
}
.main-footer__contact a::before, .main-footer__contact a::after {
  transition: background-color 0.2s linear;
}
.main-footer__contact a, a:focus .main-footer__contact a, .main-footer__contact a:focus {
  color: #013d00;
  background-color: transparent;
}
.main-footer__contact a::before, a:focus .main-footer__contact a::before, .main-footer__contact a:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .main-footer__contact a.hover {
    color: #013d00;
  }
  .main-footer__contact a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .main-footer__contact a, .main-footer__contact a:hover {
    color: #013d00;
  }
  a:hover .main-footer__contact a::before, .main-footer__contact a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .main-footer__contact a, .main-footer__contact a:focus-visible, a:active .main-footer__contact a, .main-footer__contact a:active {
  color: #013d00;
}
a:focus-visible .main-footer__contact a::before, .main-footer__contact a:focus-visible::before, a:active .main-footer__contact a::before, .main-footer__contact a:active::before {
  background-color: #013d00;
}
.bg-dark .main-footer__contact a, a:focus .bg-dark .main-footer__contact a, .bg-dark .main-footer__contact a:focus, .bg-dark-inner .main-footer__contact a, a:focus .bg-dark-inner .main-footer__contact a, .bg-dark-inner .main-footer__contact a:focus {
  color: #013d00 !important;
}
.bg-dark .main-footer__contact a::before, a:focus .bg-dark .main-footer__contact a::before, .bg-dark .main-footer__contact a:focus::before, .bg-dark-inner .main-footer__contact a::before, a:focus .bg-dark-inner .main-footer__contact a::before, .bg-dark-inner .main-footer__contact a:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .main-footer__contact a.hover, .bg-dark-inner .main-footer__contact a.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .main-footer__contact a, .bg-dark .main-footer__contact a:hover, a:hover .bg-dark-inner .main-footer__contact a, .bg-dark-inner .main-footer__contact a:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .main-footer__contact a, .bg-dark .main-footer__contact a:focus-visible, a:active .bg-dark .main-footer__contact a, .bg-dark .main-footer__contact a:active, a:focus-visible .bg-dark-inner .main-footer__contact a, .bg-dark-inner .main-footer__contact a:focus-visible, a:active .bg-dark-inner .main-footer__contact a, .bg-dark-inner .main-footer__contact a:active {
  color: #013d00 !important;
}
.main-footer__contact a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .main-footer__contact a, a:focus .bg-white .main-footer__contact a, .bg-white .main-footer__contact a:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .main-footer__contact a.hover {
    color: #013d00;
  }
  .bg-white .main-footer__contact a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .main-footer__contact a, .bg-white .main-footer__contact a:hover {
    color: #013d00;
  }
  a:hover .bg-white .main-footer__contact a::before, .bg-white .main-footer__contact a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .main-footer__contact a, .bg-white .main-footer__contact a:focus-visible, a:active .bg-white .main-footer__contact a, .bg-white .main-footer__contact a:active {
  color: #013d00;
}
a:focus-visible .bg-white .main-footer__contact a::before, .bg-white .main-footer__contact a:focus-visible::before, a:active .bg-white .main-footer__contact a::before, .bg-white .main-footer__contact a:active::before {
  background-color: #013d00;
}
.main-footer__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
@media (max-width: 61.98rem) {
  .main-footer__menu {
    flex-direction: column;
  }
  .main-footer__menu > [class*=footer-menu--] {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}
@media (max-width: 61.98rem) {
  .main-footer__menu-wrapper {
    width: 100%;
  }
}
.main-footer__menu li {
  margin-top: 1.5rem;
}
.main-footer__menu li a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: all 0.2s linear;
}
.main-footer__menu li a:hover {
  text-decoration: none;
}
.main-footer__menu li a:hover::before {
  background-color: #9cd19b;
}
.main-footer__text {
  max-width: 41.375rem;
  margin-inline: auto;
  margin-bottom: 2rem;
  color: #042629;
  text-align: center;
}
@media (max-width: 61.98rem) {
  .main-footer__text {
    margin-inline-start: 0;
    text-align: left;
  }
}
.main-footer__text p {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
}
@media (max-width: 61.98rem) {
  .main-footer__affliate {
    margin-top: 3rem;
  }
}
.main-footer__affliate .affliates {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 1.5rem;
  grid-column-gap: 2.8125rem;
}
@media (min-width: 62rem) {
  .main-footer__affliate .affliates {
    grid-row-gap: clamp(0rem, -1.7142857143rem + 3.5714285714vw, 1.5rem);
    grid-column-gap: clamp(0rem, -3.2142857143rem + 6.6964285714vw, 2.8125rem);
  }
}
.main-footer__affliate .affliates .menu-item:nth-child(1) {
  margin-top: 0.1875rem;
  margin-left: 0.1875rem;
}
.main-footer__affliate .affliates .menu-item:nth-child(2) {
  margin-right: 0.6875rem;
  margin-left: auto;
}
.main-footer__affliate .affliates .menu-item:nth-child(3) {
  margin-bottom: 0.0625rem;
  margin-left: 0.9375rem;
}
.main-footer__affliate .affliates .menu-item:nth-child(4) {
  margin-right: 0.6875rem;
  margin-left: auto;
}
.main-footer__bottom-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.main-footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 61.98rem) {
  .main-footer__links {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.main-footer__copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-footer__copyright--icon {
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.25rem;
  background-image: url(../images/copyright-icon.png);
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 61.98rem) {
  .main-footer__copyright {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.main-footer__copyright li {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  color: #042629;
  text-align: right;
}
@media (max-width: 61.98rem) {
  .main-footer__copyright li {
    margin-bottom: 0.5rem;
  }
}
.main-footer__copyright li:first-child {
  display: inline-flex;
  align-items: center;
}
.main-footer__copyright li:not(:last-child) {
  margin-right: 0.75rem;
}
.main-footer__copyright li a {
  font-weight: var(--subtitle-3-underline-font-weight);
  font-size: var(--subtitle-3-underline-font-size);
  font-family: var(--subtitle-3-underline-font-family);
  line-height: var(--subtitle-3-underline-line-height);
  text-decoration: var(--subtitle-3-underline-text-decoration);
  color: #042629;
  text-decoration: none;
}
.main-footer__copyright li a:hover, .main-footer__copyright li a:focus, .main-footer__copyright li a:focus-visible {
  text-decoration: underline;
}
.main-footer__social {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 61.98rem) {
  .main-footer__social {
    margin-bottom: 1.25rem !important;
  }
}
.main-footer__social li {
  margin: 0;
}
.main-footer__social li + li {
  margin-left: 0.75rem;
}

.cookie-bar {
  position: fixed;
  left: 1.25rem;
  bottom: clamp(1.25rem, -3.0357142857rem + 8.9285714286vw, 5rem);
  right: clamp(1.25rem, -3.0357142857rem + 8.9285714286vw, 5rem);
  z-index: 150;
  padding: 1.5rem 1.25rem 2rem 1.25rem;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
}
@media (min-width: 36rem) {
  .cookie-bar {
    left: unset;
    width: 23.4375rem;
  }
}
.cookie-bar #cookie-bar-block p:first-child {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: 0.75rem;
  text-transform: capitalize;
}
.cookie-bar #cookie-bar-block p:not(:first-child) {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  color: #093a3d;
}
.cookie-bar__accept {
  width: 100%;
}

body.search:not(.lock-scroll) .main-header {
  background-color: #faf4eb;
}
body.search #page .container-wrapper {
  position: relative;
}
body.search #page .container-wrapper .search-hero {
  margin: 0;
  background-color: #faf4eb;
}
body.search #page .container-wrapper .search-hero.search-empty .no-result-text {
  display: none;
}
body.search #page .container-wrapper .search-hero__search-form {
  margin-bottom: 0rem;
  padding: 4.5rem 0rem 4.5rem 0rem;
}
@media (min-width: 62rem) {
  body.search #page .container-wrapper .search-hero__search-form {
    padding: 8rem 0rem 4.5rem 0rem;
  }
}
body.search #page .container-wrapper .search-hero #search-form .search-field {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
  padding-bottom: 0rem;
  border: none;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__input {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 0rem;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: #093a3d;
  text-transform: none;
  border: 0;
  border: 0.0625rem solid #e0d0b8;
  border-radius: 1.125rem;
  appearance: none;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__input:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__input:last-child {
  margin-bottom: 0;
}
@media (min-width: 62rem) {
  body.search #page .container-wrapper .search-hero #search-form .search-field__input {
    margin-bottom: 0rem;
  }
}
body.search #page .container-wrapper .search-hero #search-form .search-field__input:focus {
  border: 0.0625rem solid #9cd19b;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__clear {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  z-index: 999;
  display: none;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  color: #fffbf5;
  border: 0;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}
body.search #page .container-wrapper .search-hero #search-form .search-field__clear .icon-close {
  display: block;
  color: #706351;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__clear .icon-close::before {
  content: "\ea17";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.search #page .container-wrapper .search-hero #search-form .search-field__clear.active {
  display: block;
}
body.search #page .container-wrapper .search-hero #search-form .search-field .icon-search {
  position: absolute;
  top: 50%;
  left: 0.875rem;
  color: #706351;
  font-size: 1.25rem;
  transform: translateY(-50%);
}
body.search #page .container-wrapper .search-hero .no-result-text p,
body.search #page .container-wrapper .search-hero .result-found-text p {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: var(--subtitle-2-margin-bottom);
  color: #093a3d;
  text-decoration: none;
}
body.search #page .container-wrapper .search-hero .no-result-text p:first-child,
body.search #page .container-wrapper .search-hero .result-found-text p:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-hero .no-result-text p:last-child,
body.search #page .container-wrapper .search-hero .result-found-text p:last-child {
  margin-bottom: 0;
}
body.search #page .container-wrapper .search-no-results .no-result {
  padding: 5.5rem 1.25rem 6rem 1.25rem;
  text-align: center;
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
@media (min-width: 48rem) {
  body.search #page .container-wrapper .search-no-results .no-result {
    padding: 8rem 0rem 9rem 0rem;
  }
}
body.search #page .container-wrapper .search-no-results .no-result__heading {
  margin: 0;
  padding-bottom: 1rem;
  color: #005f66;
}
body.search #page .container-wrapper .search-no-results .no-result__para {
  margin: 0;
  padding-bottom: 2rem;
}
body.search #page .container-wrapper .search-no-results .no-result__para p {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  margin-bottom: var(--body-2-margin-bottom);
  color: #093a3d;
}
body.search #page .container-wrapper .search-no-results .no-result__para p:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-no-results .no-result__para p:last-child {
  margin-bottom: 0;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-bottom: var(--link-1-margin-bottom);
  width: auto;
  margin: 0rem 0.5rem 0rem 0.5rem;
  padding: 0;
  color: #013d00;
  text-decoration: none;
  border: 0;
  border-color: #9cd19b !important;
  border-bottom: 0.125rem solid;
  background-color: transparent;
  transition: border-color 0.2s linear;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn:last-child {
  margin-bottom: 0;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn:hover, body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn:focus {
  border-color: #013d00 !important;
}
body.search #page .container-wrapper .search-no-results .no-result__buttons .no-result-btn a {
  padding: 0;
  border: 0;
  background-color: transparent;
}
body.search #page .container-wrapper .search-content .search-results {
  margin-top: 4.5rem;
}
body.search #page .container-wrapper .search-content .search-results .search-result {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 3rem 0rem 3rem 0rem;
  border-bottom: 0.0625rem solid #e0d0b8;
}
@media (min-width: 48rem) {
  body.search #page .container-wrapper .search-content .search-results .search-result {
    flex-direction: row;
  }
}
body.search #page .container-wrapper .search-content .search-results .search-result:first-child {
  padding-top: 0;
}
body.search #page .container-wrapper .search-content .search-results .search-result:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 62rem) {
  body.search #page .container-wrapper .search-content .search-results .search-result:last-child {
    padding-bottom: 3rem;
  }
}
body.search #page .container-wrapper .search-content .search-results .search-result__text {
  width: 100%;
  padding-right: 0rem;
}
@media (min-width: 48rem) {
  body.search #page .container-wrapper .search-content .search-results .search-result__text {
    width: calc(100% - 16.9375rem);
    padding-right: 4rem;
  }
}
body.search #page .container-wrapper .search-content .search-results .search-result__post-type {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  display: inline-block;
  margin-bottom: 0.5rem;
  color: #706351;
  text-decoration: none;
  word-break: break-word;
}
body.search #page .container-wrapper .search-content .search-results .search-result__image {
  width: 100%;
  height: 11.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 48rem) {
  body.search #page .container-wrapper .search-content .search-results .search-result__image {
    width: 16.9375rem;
    height: 9.5rem;
    margin-top: 0rem;
  }
}
body.search #page .container-wrapper .search-content .search-results .search-result__image img {
  width: 100%;
  height: 100%;
  border-radius: 1.125rem;
  object-fit: cover;
  object-position: center;
}
body.search #page .container-wrapper .search-content .search-results .search-result__title {
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}
body.search #page .container-wrapper .search-content .search-results .search-result__title a {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  margin-bottom: var(--title-2-margin-bottom);
  color: #093a3d;
  text-transform: capitalize;
  text-decoration: none;
}
body.search #page .container-wrapper .search-content .search-results .search-result__title a:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-content .search-results .search-result__title a:last-child {
  margin-bottom: 0;
}
body.search #page .container-wrapper .search-content .search-results .search-result__title a:hover {
  text-decoration: underline;
}
body.search #page .container-wrapper .search-content .search-results .search-result__excerpt p {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  color: #093a3d;
  text-decoration: none;
}
body.search #page .container-wrapper .search-content .search-results .search-result__excerpt p:first-child {
  margin-top: 0;
}
body.search #page .container-wrapper .search-content .search-results .search-result__excerpt p:last-child {
  margin-bottom: 0;
}
body.search #page .container-wrapper .search-content .search-results .search-result.no-pagination {
  padding-bottom: 6rem;
}
@media (min-width: 62rem) {
  body.search #page .container-wrapper .search-content .search-results .search-result.no-pagination {
    padding-bottom: 9rem;
  }
}
body.search #page .container-wrapper .search-content .search-results .search-result.no-image .search-result__text {
  width: 100%;
  padding-right: 0;
}
body.search #page .container-wrapper .search-content .search-pagination {
  padding-top: 6rem;
}
@media (min-width: 62rem) {
  body.search #page .container-wrapper .search-content .search-pagination {
    padding-top: 0rem;
  }
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--current .pagination__link {
  color: #013d00 !important;
  border-radius: 50%;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--current .pagination__link:hover {
  color: #013d00;
  background-color: #013d00;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--ellipses {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  margin-bottom: 0.1875rem;
  color: #000e0f;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--prev .pagination__link, body.search #page .container-wrapper .search-content .search-pagination .pagination__item--next .pagination__link {
  padding-bottom: 0;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--prev .pagination__link:hover, body.search #page .container-wrapper .search-content .search-pagination .pagination__item--next .pagination__link:hover {
  color: #013d00;
  background-color: transparent !important;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item--prev .pagination__link ::before, body.search #page .container-wrapper .search-content .search-pagination .pagination__item--next .pagination__link ::before {
  display: block;
  max-width: 1.5rem;
  max-height: 1.5rem;
  font-size: 1.5rem;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item .pagination__link {
  color: #000e0f;
  transition: background-color 0.2s linear;
}
body.search #page .container-wrapper .search-content .search-pagination .pagination__item .pagination__link:hover {
  background-color: #e0d0b8;
}
body.search #page .container-wrapper.empty-search .search-content__wrapper {
  padding-top: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) !important;
}
body.search #page .container-wrapper.empty-search .search-content__wrapper .empty-search {
  padding: 5.5rem 0rem 6rem 0rem;
  text-align: center;
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
@media (min-width: 48rem) {
  body.search #page .container-wrapper.empty-search .search-content__wrapper .empty-search {
    padding: 8rem 0rem 9rem 0rem;
  }
}
body.search #page .container-wrapper.empty-search .search-content__wrapper .empty-search__heading {
  color: #005f66;
  text-align: center;
}
body.search #page .container-wrapper.empty-search .search-hero #search-form .search-field {
  margin-bottom: 0 !important;
}
body.search #page .container-wrapper.empty-search .search-hero #search-form .search-field__input {
  border: 0.0625rem solid #ad0322;
}
body.search-results .container-wrapper .search-content__wrapper {
  padding-top: 0 !important;
}

.archive-hero__title {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  margin-bottom: var(--display-margin-bottom);
  color: #005f66;
}
.archive-hero__title:first-child {
  margin-top: 0;
}
.archive-hero__title:last-child {
  margin-bottom: 0;
}
.bg-dark .archive-hero__title {
  color: #faf4eb;
}
.archive-hero + .container {
  background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
  max-width: none;
  margin: 0;
  padding: 0;
}

.tribe-hours {
  max-width: 90rem;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem) clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
@media (min-width: 62rem) {
  .tribe-hours {
    padding-top: 0;
  }
}
.tribe-hours__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
@media (min-width: 48rem) {
  .tribe-hours__accordion-content {
    display: flex;
    justify-content: space-between;
  }
}
.tribe-hours__accordion-item {
  margin-bottom: clamp(0.75rem, 0.4642857143rem + 0.5952380952vw, 1rem);
  padding-right: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  padding-left: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  background-color: #fffbf5;
}
.tribe-hours__accordion-item:hover {
  border-color: #9cd19b;
}
.tribe-hours__accordion-item.active-accordion {
  padding-bottom: clamp(2.25rem, 1.3928571429rem + 1.7857142857vw, 3rem);
}
.tribe-hours__accordion-title {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
  color: #005f66;
  position: relative;
  width: 100%;
  margin-bottom: 0;
  padding-top: 1.5rem;
  padding-right: 2.8125rem;
  padding-bottom: 2rem;
  padding-left: 0;
  text-align: left;
  border: none;
  border-radius: 1.125rem;
  background-color: #fffbf5;
  outline: none;
  transition: all 0.3s ease-out;
}
.tribe-hours__accordion-title:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-title:last-child {
  margin-bottom: 0;
}
.bg-dark .tribe-hours__accordion-title {
  color: #faf4eb;
}
@media (min-width: 62rem) {
  .tribe-hours__accordion-title {
    padding-top: 2.25rem;
    padding-bottom: 2.5rem;
  }
}
.tribe-hours__accordion-title::after {
  content: "\ea2f";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 50%;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  color: #013d00;
  border: 0;
  border-radius: 3.125rem;
  background-color: #9cd19b;
  transform: translateY(-55%);
  transition: 0.2s linear;
}
.tribe-hours__accordion-title:hover::after {
  background-color: #b8e5b8;
}
.tribe-hours__accordion-title.active::after {
  content: "\ea33";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
.tribe-hours__accordion-left {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 0;
}
@media (min-width: 75rem) {
  .tribe-hours__accordion-left {
    justify-content: flex-start;
    width: 50%;
  }
}
.tribe-hours__accordion-right {
  padding: 0;
}
.tribe-hours__accordion-right .tribe-hours__accordion-image {
  max-width: 39.375rem;
}
.tribe-hours__accordion-right .tribe-hours__accordion-image img {
  border-radius: 1.125rem;
}
.tribe-hours__accordion-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 48rem) {
  .tribe-hours__accordion-row {
    flex-direction: row;
    margin-right: 2rem;
  }
}
.tribe-hours__accordion-block {
  width: 100%;
  margin-bottom: clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
}
.tribe-hours__accordion-block .detail-link {
  font-weight: var(--subtitle-1-underline-font-weight);
  font-size: var(--subtitle-1-underline-font-size);
  font-family: var(--subtitle-1-underline-font-family);
  line-height: var(--subtitle-1-underline-line-height);
  text-decoration: var(--subtitle-1-underline-text-decoration);
  margin-bottom: var(--subtitle-1-underline-margin-bottom);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 0.5rem;
}
.tribe-hours__accordion-block .detail-link:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-block .detail-link:last-child {
  margin-bottom: 0;
}
.tribe-hours__accordion-block .detail-link .icon {
  margin-right: 0.625rem;
}
.tribe-hours__accordion-block h3 {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  margin-bottom: var(--title-2-margin-bottom);
  margin-bottom: 0.75rem;
  color: #093a3d;
}
.tribe-hours__accordion-block h3:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-block h3:last-child {
  margin-bottom: 0;
}
.tribe-hours__accordion-details {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}
@media (min-width: 48rem) {
  .tribe-hours__accordion-details {
    flex-direction: column;
  }
}
@media (min-width: 62rem) {
  .tribe-hours__accordion-details {
    flex-direction: row;
  }
}
.tribe-hours__accordion-details .detail-day {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  width: 6rem;
  margin-right: 1rem;
  margin-bottom: 0;
}
.tribe-hours__accordion-details .detail-day:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-details .detail-day:last-child {
  margin-bottom: 0;
}
.tribe-hours__accordion-details .detail-hour {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  text-align: left;
}
.tribe-hours__accordion-details .detail-hour:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-details .detail-hour:last-child {
  margin-bottom: 0;
}
.tribe-hours__accordion-details a:last-child {
  font-weight: var(--subtitle-1-underline-font-weight);
  font-size: var(--subtitle-1-underline-font-size);
  font-family: var(--subtitle-1-underline-font-family);
  line-height: var(--subtitle-1-underline-line-height);
  text-decoration: var(--subtitle-1-underline-text-decoration);
  margin-bottom: var(--subtitle-1-underline-margin-bottom);
}
.tribe-hours__accordion-details a:last-child:first-child {
  margin-top: 0;
}
.tribe-hours__accordion-details a:last-child:last-child {
  margin-bottom: 0;
}
.tribe-hours__accordion-details p {
  font-size: 1rem;
}

.people-archive__top {
  padding: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) 0 clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem) 0;
  background-color: #f5ede1;
}
.people-archive__top .people-archive__head {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  color: #005f66;
  color: #005f66;
  text-align: center;
}
.bg-dark .people-archive__top .people-archive__head {
  color: #faf4eb;
}

.people-archive__content.archive-content {
  padding: 0;
}
.people-archive__content.archive-content,
.people-archive__content.archive-content .people-arcive-page {
  flex-wrap: nowrap;
  margin: 0;
}
.people-archive__content.archive-content .eight29-sidebar {
  width: 100% !important;
  margin-bottom: clamp(0rem, -5.1428571429rem + 10.7142857143vw, 4.5rem);
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content {
  top: env(safe-area-inset-top);
  bottom: env(safe-area-inset-bottom);
  min-height: 100%;
  padding: 0;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child {
  z-index: 999;
  padding: 1rem 1.25rem;
  background: #fffbf5;
  box-shadow: 0 0 0.5rem rgba(10, 10, 10, 0.12);
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child {
    display: none;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  margin: 0;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters::before, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters::after {
  transition: background-color 0.2s linear;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, a:focus .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus-visible, a:active .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters.hover, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:hover, a:hover .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus-visible, a:active .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:active, a:focus-visible .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus-visible, a:active .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters {
    width: 100%;
  }
}
.bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, a:focus .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:focus-visible, a:active .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > div:last-child .apply-filters[target=_blank]::after {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background-color: #f5ede1;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > span {
    display: none;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > span span {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  color: #093a3d;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content > span .eight29-sidebar-close {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0 0.625rem;
  color: #093a3d;
  border-radius: 100%;
  background: #fffbf5;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group {
  display: block;
  height: calc(100% - 9.0625rem);
  margin-bottom: 0;
  padding: 1.5rem 1.25rem 0rem 1.25rem;
  overflow: auto;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group {
    display: flex;
    height: auto;
    padding: 0;
    overflow: visible;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .eight29-filter-list {
  display: block;
  margin-bottom: 0.75rem;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .eight29-filter-list {
    display: flex;
    flex: 1;
    flex-wrap: wrap;
  }
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .eight29-filter-list.left-content {
    width: 100%;
    margin-bottom: 0;
  }
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .eight29-filter-list.right-content {
    justify-content: end;
    width: 100%;
    margin-bottom: 0;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby {
  margin: 0;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container {
  position: static;
  z-index: 1;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  background: transparent;
  overflow: visible;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container {
    position: absolute;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current {
  display: flex;
  border: 0;
  background-color: transparent !important;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    border: 0;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 1.3125rem;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #013d00;
  background: none;
  transform: translateY(-50%);
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current::after {
    content: "\ea1b";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 1.1875rem;
    right: 0rem;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current .dropdown-poeple-sort-label {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current .dropdown-poeple-sort-label {
    font-weight: var(--title-3-font-weight);
    font-size: var(--title-3-font-size);
    font-family: var(--title-3-font-family);
    line-height: var(--title-3-line-height);
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current .dropdown-poeple-label {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
  border: 0;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .dropdown-current .dropdown-poeple-label {
    font-weight: var(--subtitle-2-font-weight);
    font-size: var(--subtitle-2-font-size);
    font-family: var(--subtitle-2-font-family);
    line-height: var(--subtitle-2-line-height);
    padding: 0rem 1.5625rem 0.25rem 0rem;
    border-bottom: 0.125rem solid #9cd19b;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper .simplebar-mask {
  overflow: visible;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input {
  padding: 0rem 0rem 1.25rem 0rem;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input {
    padding: 0;
    border: 0.0625rem solid #f5ede1;
    border-radius: 1.125rem;
    background-color: #fffbf5;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input li {
  height: auto;
  padding: 0;
  border: 0;
  transition: 0.2s linear;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input li:hover {
  background-color: #faf4eb;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input li button {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  color: #093a3d;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input li button:hover {
  text-decoration: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container .simplebar-content-wrapper #filter-orderby-input li button.active {
  background-color: #faf4eb;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container.open .simplebar-content-wrapper {
  display: block;
  overflow: visible !important;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container.open .dropdown-current::after {
  content: "\ea13";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group .filter-orderby .dropdown-container.open .dropdown-current::after {
    content: "\ea1c";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search {
  margin-bottom: 1.5rem;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search {
    margin: 0 1rem 0 0;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input {
  width: 100%;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2.625rem;
  border: 0.0625rem solid #eadfce !important;
  background: #fffbf5 url(../images/icons/search.svg) no-repeat 0.75rem center;
}
@media (min-width: 75rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input {
    width: 19.25rem;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input:focus {
  border-color: #9cd19b !important;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input::-webkit-search-decoration, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input::-webkit-search-cancel-button, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input::-webkit-search-results-button, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search-input::-webkit-search-results-decoration {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search .clear-search {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 3rem;
  height: 3rem;
  padding: 0;
  background-position: center right 0.875rem;
  opacity: 1;
  overflow: visible;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
  transition: 0.3s ease-in-out all;
}
@media (prefers-reduced-motion) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search .clear-search {
    transition: none;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search .clear-search:hover {
  text-decoration: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search .clear-search.visible {
  background: url(../images/icons/clear-search.svg) no-repeat;
  background-position: center right 0.875rem;
  -webkit-user-select: auto;
  user-select: auto;
  pointer-events: auto;
  touch-action: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-search .clear-search span {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container {
  position: static;
  z-index: 1;
  margin-bottom: 0.75rem !important;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  background-color: transparent;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container {
    position: absolute;
    border: 0;
    border-radius: 0;
    overflow: visible;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .dropdown-current {
  padding-right: 1.875rem;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .dropdown-current::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 1.3125rem;
  right: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  color: #013d00;
  background: none;
  transform: translateY(-50%);
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .dropdown-current::after {
    content: "\ea1b";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 0.9375rem;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .dropdown-current .dropdown-poeple-label {
  color: #013d00;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .dropdown-current .dropdown-poeple-sort-label {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container > button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #000e0f;
  border: 0;
  border-radius: 1.125rem;
  background-color: #fffbf5;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container > button {
    border: 0.0625rem solid #eadfce;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container.open .dropdown-current::after {
  content: "\ea13";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container.open .dropdown-current::after {
    content: "\ea1c";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container:not(.open) [data-simplebar] {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #people_category-empty {
  background-color: #faf4eb;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input {
  padding: 0rem 0rem 1.25rem 0rem;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input {
    margin-top: 0.5rem;
    padding: 0;
    border: 0.0625rem solid #f5ede1;
    border-radius: 1.125rem;
    background-color: #fffbf5;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input li {
  height: auto;
  padding: 0;
  border: 0;
  transition: 0.2s linear;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input li:hover {
  background-color: #faf4eb;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input li button {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  color: #093a3d;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input li button:hover {
  text-decoration: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-content .eight29-filter-group #filter-people_category .dropdown-container .simplebar-content-wrapper #filter-people_category-input li button.active {
  background-color: #faf4eb;
}
.people-archive__content.archive-content .eight29-sidebar.modal-active .eight29-sidebar-content {
  background-color: #fffbf5;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  margin: 0 0 1rem;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open::before, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open::after {
  transition: background-color 0.2s linear;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, a:focus .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus-visible, a:active .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open.hover, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:hover, a:hover .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus-visible, a:active .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:active, a:focus-visible .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus-visible, a:active .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-dark-inner .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open {
    width: 100%;
  }
}
.bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, a:focus .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:focus-visible, a:active .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open, .bg-white .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open[target=_blank]::after {
  display: none;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open {
    display: none !important;
  }
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open svg {
  display: none;
}
.people-archive__content.archive-content .eight29-sidebar .eight29-sidebar-open span {
  margin-left: 0.3125rem;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts {
  grid-template-columns: 1fr;
  grid-row-gap: 3rem;
  grid-column-gap: 2rem;
  margin-bottom: 0;
}
@media (min-width: 36rem) {
  .people-archive__content.archive-content .eight29-posts-container .people-posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48rem) {
  .people-archive__content.archive-content .eight29-posts-container .people-posts {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-posts-container .people-posts {
    grid-row-gap: 4.5rem;
  }
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__featured-image {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__featured-image figure {
  padding-bottom: 92%;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__post-body {
  padding-top: 0.5rem;
}
@media (min-width: 36rem) {
  .people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__post-body {
    padding-top: 1rem;
  }
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__post-title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: clamp(0.25rem, -0.0357142857rem + 0.5952380952vw, 0.5rem);
  color: #093a3d;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__post-title:hover {
  color: #013d00;
  text-decoration: none;
  border-bottom: 0.125rem solid #b8e5b8;
}
.people-archive__content.archive-content .eight29-posts-container .people-posts .people-card__post-position {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-top: 0.5rem;
  color: #093a3d;
}
.people-archive__content.archive-content .eight29-posts-container .clear-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-posts-container .clear-filters {
    display: none;
  }
}
.people-archive__content.archive-content .eight29-posts-container .clear-filters span {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  color: #093a3d;
  text-decoration: none;
}
.people-archive__content.archive-content .eight29-posts-container .clear-filters .clear-filters-btn {
  font-weight: var(--link-2-underline-font-weight);
  font-size: var(--link-2-underline-font-size);
  font-family: var(--link-2-underline-font-family);
  line-height: var(--link-2-underline-line-height);
  text-decoration: var(--link-2-underline-text-decoration);
  margin-bottom: var(--link-2-underline-margin-bottom);
  display: none;
  color: #013d00;
  border: 0;
  box-shadow: none;
}
.people-archive__content.archive-content .eight29-posts-container .clear-filters .clear-filters-btn:first-child {
  margin-top: 0;
}
.people-archive__content.archive-content .eight29-posts-container .clear-filters .clear-filters-btn:last-child {
  margin-bottom: 0;
}
.filter-selected .people-archive__content.archive-content .eight29-posts-container .clear-filters .clear-filters-btn {
  display: inline-flex;
}
.people-archive__content.archive-content .eight29-posts-container .load-more {
  padding: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) 0 0 0;
}
.people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary::before, .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary::after {
  transition: background-color 0.2s linear;
}
.people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, a:focus .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary.hover, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:hover, a:hover .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:active, a:focus-visible .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary {
    width: 100%;
  }
}
.bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, a:focus .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.people-archive__content.archive-content .eight29-posts-container .load-more .c-btn-secondary[target=_blank]::after {
  display: none;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.75rem 0 4.5rem;
  text-align: center;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search {
    padding: 5.5rem 0 6rem;
  }
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search > :first-child {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  color: #005f66;
  margin-bottom: 1.5rem;
}
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search > :first-child {
  color: #faf4eb;
}
@media (min-width: 62rem) {
  .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search > :first-child {
    margin-bottom: 2.25rem;
  }
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper {
  display: block;
  margin: 0;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
  margin: 0 0.5rem;
  text-decoration: none;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::after,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::after {
  transition: background-color 0.2s linear;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, a:focus .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
a:focus .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00;
  background-color: transparent;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, a:focus .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
a:focus .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00;
  }
  .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00;
  }
  a:hover .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover::before,
a:hover .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00;
}
a:focus-visible .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible::before, a:active .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active::before,
a:focus-visible .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible::before,
a:active .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active::before {
  background-color: #013d00;
}
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00 !important;
}
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, a:focus .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus::before, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, a:focus .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus::before,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
a:focus .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus::before,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
a:focus .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover, a:hover .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover,
a:hover .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active, a:focus-visible .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active,
a:focus-visible .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00 !important;
}
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before,
.people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00;
  }
  .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button.hover::before,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00;
  }
  a:hover .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:hover::before,
a:hover .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00;
}
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:focus-visible::before, a:active .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper button:active::before,
a:focus-visible .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:focus-visible::before,
a:active .bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .people-archive__content.archive-content .eight29-posts-container .no-results .error-in-search .c-btn-wrapper a:active::before {
  background-color: #013d00;
}

.people-taxonomy .people-taxonomy-hero__details .c-btn--back__wrapper {
  width: 100%;
  margin: 0;
  padding: 1.5rem 0 clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.people-taxonomy .people-taxonomy-hero__details .c-btn--back__wrapper a {
  color: #013d00;
  border-bottom: 0.125rem solid #9cd19b;
  transition: 0.2s linear;
}
.people-taxonomy .people-taxonomy-hero__details .c-btn--back__wrapper a::before {
  font-size: 1rem;
}
.people-taxonomy .people-taxonomy-hero__details .c-btn--back__wrapper a::after {
  display: none;
}
.people-taxonomy .people-taxonomy-hero__details .c-btn--back__wrapper a:hover {
  border-color: #013d00;
}
.people-taxonomy .people-taxonomy-hero__category {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: 0.5rem;
  color: #093a3d;
}
.people-taxonomy .people-taxonomy-hero__head {
  margin-top: 0;
}
.people-taxonomy__content .people-taxonomy-inner {
  flex-wrap: nowrap;
}
.people-taxonomy__content .people-taxonomy-inner:first-child {
  margin: 0;
}
.people-taxonomy__content .eight29-posts-container .clear-filters {
  display: none;
}
.people-taxonomy__content .eight29-posts-container .people-posts {
  grid-template-columns: 1fr;
  grid-row-gap: 3rem;
  grid-column-gap: 2rem;
  margin-top: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
  margin-bottom: 0;
}
@media (min-width: 36rem) {
  .people-taxonomy__content .eight29-posts-container .people-posts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 48rem) {
  .people-taxonomy__content .eight29-posts-container .people-posts {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (min-width: 62rem) {
  .people-taxonomy__content .eight29-posts-container .people-posts {
    grid-row-gap: 4.5rem;
  }
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__featured-image {
  position: relative;
  border-radius: 0.625rem;
  overflow: hidden;
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__featured-image figure {
  padding-bottom: 92%;
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__post-body {
  padding-top: 0.5rem;
}
@media (min-width: 36rem) {
  .people-taxonomy__content .eight29-posts-container .people-posts .people-card__post-body {
    padding-top: 1rem;
  }
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__post-title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: clamp(0.25rem, -0.0357142857rem + 0.5952380952vw, 0.5rem);
  color: #093a3d;
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__post-title:hover {
  color: #013d00;
  text-decoration: none;
  border-bottom: 0.125rem solid #b8e5b8;
}
.people-taxonomy__content .eight29-posts-container .people-posts .people-card__post-position {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-top: 0.5rem;
  color: #093a3d;
}
.people-taxonomy__content .eight29-posts-container .load-more {
  padding: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) 0 0 0;
}
.people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary::before, .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary::after {
  transition: background-color 0.2s linear;
}
.people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, a:focus .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary.hover, .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:hover, a:hover .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:active, a:focus-visible .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-dark-inner .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary {
    width: 100%;
  }
}
.bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, a:focus .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:focus-visible, a:active .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary, .bg-white .people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.people-taxonomy__content .eight29-posts-container .load-more .c-btn-secondary[target=_blank]::after {
  display: none;
}

.people-post.content-wrapper > *:not(section):not(.tribe-events):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
  width: 100%;
  max-width: 90rem;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
}
.people-post .people-post-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.people-post .people-post-section .c-btn--back::before {
  top: 0.125rem;
}
.people-post .people-post-section .c-btn--back::after {
  transition: all 0.2s linear;
}
.people-post .people-post-section .c-btn--back:hover::after {
  background-color: #013d00;
}
.people-post .people-post-section .c-btn--back__wrapper {
  width: 100%;
  margin: 0;
  padding: 1.5rem 0 clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.people-post .block-cta-standard {
  margin: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem) 0 0 0;
  border-radius: 1.125rem;
}
.people-post .block-cta-standard .container {
  margin-bottom: 0;
}
.people-post__left {
  width: 100%;
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .people-post__left {
    width: 23.171%;
  }
}
.people-post__right {
  width: 100%;
}
@media (min-width: 48rem) {
  .people-post__right {
    width: 65.85%;
  }
}
.people-post__right h1 {
  margin-bottom: 1rem;
}
@media (min-width: 48rem) {
  .people-post__right h1 {
    margin-bottom: 1.5rem;
  }
}
.people-post__right p {
  margin-bottom: 2rem;
}
@media (max-width: 47.98rem) {
  .people-post__details {
    display: none;
  }
}
.people-post__details-mobile {
  margin: 2rem 0rem;
}
@media (min-width: 48rem) {
  .people-post__details-mobile {
    display: none;
  }
}
.people-post__profile-image {
  margin-bottom: 2rem;
}
.people-post__profile-image figure {
  padding-bottom: 100%;
}
.people-post__profile-image img {
  border-radius: 1.125rem;
}
.people-post .people-post-social-icons {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.people-post .people-post-social-icons__social-icon-list {
  margin-right: 1rem;
  padding: 0.65rem;
  line-height: 0;
  border: 0.125rem solid #9cd19b;
  border-radius: 50%;
  transition: 0.2s linear;
}
.people-post .people-post-social-icons__social-icon-list:hover {
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.people-post .people-post-qualification {
  margin-bottom: 1.5rem;
}
.people-post .people-post-qualification__qualification-title {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: 0.5rem;
}
.people-post .people-post-qualification__qualification-list {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
}
.people-post .people-post-affiliation__affiliation-title {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: 0.5rem;
}
.people-post .people-post-affiliation__affiliation-inner-list {
  padding-left: 0.9375rem;
}
.people-post .people-post-affiliation__affiliation-list {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  display: flex;
  align-items: center;
  list-style: none;
}
.people-post .people-post-affiliation__affiliation-list:first-child {
  margin-top: 0;
}
.people-post .people-post-affiliation__affiliation-list:last-child {
  margin-bottom: 0;
}
.people-post .people-post-affiliation__affiliation-list::before {
  content: "";
  display: inline-block;
  width: 0.3125rem;
  height: 0.3125rem;
  margin-right: 0.625rem;
  border-radius: 50%;
  background-color: #093a3d;
}
@media (min-width: 48rem) {
  .people-post__position {
    margin-bottom: 3rem;
  }
}
.people-post__position .people-post__position-head {
  margin-bottom: 0 !important;
}
.people-post__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
}
.people-post__navigation > div a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-bottom: var(--link-1-margin-bottom);
  display: flex;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  color: #013d00;
  text-decoration: none;
  border-bottom: 0.125rem solid #9cd19b;
  transition: 0.2s linear;
}
.people-post__navigation > div a:first-child {
  margin-top: 0;
}
.people-post__navigation > div a:last-child {
  margin-bottom: 0;
}
.people-post__navigation > div a:hover, .people-post__navigation > div a:focus {
  text-decoration: none;
  border-color: #013d00;
}
.people-post__navigation > div a i {
  font-size: 1.25rem;
}

body.post-type-archive-people.filter-selected .people-archive__content #people_category-empty {
  background-color: transparent !important;
}
body.post-type-archive-people.lock-scroll-people {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.post-type-archive .archive-hero {
  background-color: #f5ede1;
}
.post-type-archive .archive-hero .container {
  margin-right: auto;
  margin-left: auto;
  padding: clamp(3rem, -0.1428571429rem + 6.5476190476vw, 5.75rem) clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem) clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem) clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
.post-type-archive .archive-hero .container .row {
  align-items: center;
}
.post-type-archive .archive-hero .custom-col {
  text-align: center;
}
@media (min-width: 62rem) {
  .post-type-archive .archive-hero .custom-col {
    text-align: right;
  }
}
.post-type-archive .archive-hero__title {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  color: #005f66;
  margin-bottom: 1.5rem;
  text-align: center;
}
.bg-dark .post-type-archive .archive-hero__title {
  color: #faf4eb;
}
@media (min-width: 62rem) {
  .post-type-archive .archive-hero__title {
    margin-bottom: 0;
    text-align: left;
  }
}
.post-type-archive .archive-hero__nav {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 0;
  padding: 0.75rem;
  border-radius: 1.125rem;
  background-color: #fffbf5;
}
@media (max-width: 35.98rem) {
  .post-type-archive .archive-hero__nav {
    width: 100%;
  }
  .post-type-archive .archive-hero__nav-item {
    flex: 1;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
  }
}
.post-type-archive .archive-hero__nav-item {
  padding: 0.75rem 1rem;
  text-align: center;
  list-style: none;
}
@media (min-width: 36rem) {
  .post-type-archive .archive-hero__nav-item {
    min-width: 6.9375rem;
  }
}
@media screen and (max-width: 23.375rem) {
  .post-type-archive .archive-hero__nav-item {
    padding: 0.75rem clamp(0.5rem, -11.5rem + 53.3333333333vw, 1rem);
  }
}
.post-type-archive .archive-hero__nav-item .archive-hero__nav-link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
}
.post-type-archive .archive-hero__nav-item.active {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  padding: 0.75rem 1rem;
}
.post-type-archive .archive-hero__nav-item.active::before, .post-type-archive .archive-hero__nav-item.active::after {
  transition: background-color 0.2s linear;
}
.post-type-archive .archive-hero__nav-item.active, a:focus .post-type-archive .archive-hero__nav-item.active, .post-type-archive .archive-hero__nav-item.active:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive .archive-hero__nav-item.active.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive .archive-hero__nav-item.active, .post-type-archive .archive-hero__nav-item.active:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive .archive-hero__nav-item.active, .post-type-archive .archive-hero__nav-item.active:focus-visible, a:active .post-type-archive .archive-hero__nav-item.active, .post-type-archive .archive-hero__nav-item.active:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive .archive-hero__nav-item.active, .bg-dark-inner .post-type-archive .archive-hero__nav-item.active {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive .archive-hero__nav-item.active.hover, .bg-dark-inner .post-type-archive .archive-hero__nav-item.active.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive .archive-hero__nav-item.active, .bg-dark .post-type-archive .archive-hero__nav-item.active:hover, a:hover .bg-dark-inner .post-type-archive .archive-hero__nav-item.active, .bg-dark-inner .post-type-archive .archive-hero__nav-item.active:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive .archive-hero__nav-item.active, .bg-dark .post-type-archive .archive-hero__nav-item.active:focus-visible, a:active .bg-dark .post-type-archive .archive-hero__nav-item.active, .bg-dark .post-type-archive .archive-hero__nav-item.active:active, a:focus-visible .bg-dark-inner .post-type-archive .archive-hero__nav-item.active, .bg-dark-inner .post-type-archive .archive-hero__nav-item.active:focus-visible, a:active .bg-dark-inner .post-type-archive .archive-hero__nav-item.active, .bg-dark-inner .post-type-archive .archive-hero__nav-item.active:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive .archive-hero__nav-item.active {
    width: 100%;
  }
}
.bg-white .post-type-archive .archive-hero__nav-item.active, a:focus .bg-white .post-type-archive .archive-hero__nav-item.active, .bg-white .post-type-archive .archive-hero__nav-item.active:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive .archive-hero__nav-item.active.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive .archive-hero__nav-item.active, .bg-white .post-type-archive .archive-hero__nav-item.active:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive .archive-hero__nav-item.active, .bg-white .post-type-archive .archive-hero__nav-item.active:focus-visible, a:active .bg-white .post-type-archive .archive-hero__nav-item.active, .bg-white .post-type-archive .archive-hero__nav-item.active:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive .archive-hero__nav-item.active[target=_blank]::after {
  display: none;
}

.single-tribe_events #tribe-events-pg-template {
  max-width: 100%;
  padding: 0;
  background-color: #fffbf5;
}
.single-tribe_events #tribe-events-pg-template .block-content-section,
.single-tribe_events #tribe-events-pg-template .block-featured-team-members {
  padding-top: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem);
  padding-bottom: 0;
}
.single-tribe_events #tribe-events-pg-template .block-trex-upcoming-events {
  padding-top: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem);
}
.single-tribe_events .block-hero-events {
  position: relative;
  padding-top: 1.5rem;
  background-color: #faf4eb;
  overflow: hidden;
}
.single-tribe_events .block-hero-events::after {
  position: absolute;
  bottom: clamp(-9.5625rem, 0.75rem + -11.4583333333vw, -4.75rem);
  right: clamp(-8.75rem, -10.4642857143rem + 3.5714285714vw, -7.25rem);
  content: "";
  width: clamp(21.25rem, 4.5357142857rem + 34.8214285714vw, 35.875rem);
  height: clamp(21.375rem, 4.5892857143rem + 34.9702380952vw, 36.0625rem);
  background-image: url(../images/magnifying-glass.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}
.single-tribe_events .block-hero-events__image-col {
  position: relative;
  z-index: 2;
}
.single-tribe_events .block-hero-events__image-col .block-hero-events__image-container {
  position: relative;
}
@media (max-width: 47.98rem) {
  .single-tribe_events .block-hero-events__image-col .block-hero-events__image-container {
    width: calc(100% - 1.4375rem);
    margin-right: auto;
    margin-left: auto;
  }
}
.single-tribe_events .block-hero-events__image-col .block-hero-events__image-container::before {
  position: absolute;
  bottom: clamp(-1.25rem, 0.0892857143rem + -1.4880952381vw, -0.625rem);
  right: clamp(-1.25rem, 0.0892857143rem + -1.4880952381vw, -0.625rem);
  content: "";
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  background-color: #faf4eb;
}
.single-tribe_events .block-hero-events__back-wrapper {
  padding-bottom: clamp(3rem, 0.7142857143rem + 4.7619047619vw, 5rem);
}
.single-tribe_events .block-hero-events__back-wrapper .c-btn--back {
  display: inline-flex;
  color: #013d00;
  border-bottom: 0.125rem solid #9cd19b;
  transition: 0.2s linear;
}
.single-tribe_events .block-hero-events__back-wrapper .c-btn--back::before {
  font-size: 1rem;
}
.single-tribe_events .block-hero-events__back-wrapper .c-btn--back:hover {
  border-color: #013d00;
}
.single-tribe_events .block-hero-events__row {
  align-items: center;
}
.single-tribe_events .block-hero-events__content-col .block-hero-events__content-col-inner {
  max-width: 100%;
  padding: 0;
}
@media (min-width: 48rem) {
  .single-tribe_events .block-hero-events__content-col .block-hero-events__content-col-inner {
    max-width: 31rem;
    padding-right: 4rem;
  }
}
.single-tribe_events .block-hero-events__title {
  margin: 0;
}
.single-tribe_events .block-hero-events__image-container {
  margin-top: 3rem;
}
@media (min-width: 48rem) {
  .single-tribe_events .block-hero-events__image-container {
    margin-top: 0rem;
  }
}
.single-tribe_events .block-hero-events__image-container img {
  border-radius: 1.125rem;
}
.single-tribe_events .block-hero-events.block-hero-events-content-right {
  position: relative;
}
.single-tribe_events .block-hero-events.block-hero-events-content-right::after {
  position: absolute;
  top: -9.5rem;
  right: -9.75rem;
  content: "";
  z-index: 2;
  width: 17.8125rem;
  height: 17.9375rem;
  background-image: url(../images/magnifying-glass-old.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  transform: rotate(-90deg);
}
@media (min-width: 48rem) {
  .single-tribe_events .block-hero-events.block-hero-events-content-right::after {
    top: unset;
    bottom: -18.8125rem;
    right: -18.5625rem;
    width: clamp(28.75rem, 20.6071428571rem + 16.9642857143vw, 35.875rem);
    height: clamp(28.875rem, 20.6607142857rem + 17.1130952381vw, 36.0625rem);
    transform: none;
  }
}
.single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events__row {
  align-items: flex-start;
}
.single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events-details-wrapper {
  max-width: 100%;
}
@media (min-width: 48rem) {
  .single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events-details-wrapper {
    max-width: 33rem;
  }
}
.single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events-details-inner {
  margin-top: 3rem;
}
@media (min-width: 48rem) {
  .single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events-details-inner {
    margin-top: 0;
  }
}
.single-tribe_events .block-hero-events.block-hero-events-content-right .block-hero-events__form {
  margin-top: 2rem;
}

.post-type-archive-tribe_programs .event-card__categories,
.post-type-archive-tribe_programs .program-card__category, .post-type-archive-tribe_programs__categories,
.post-type-archive-tribe_events .event-card__categories,
.post-type-archive-tribe_events .program-card__category,
.post-type-archive-tribe_events__categories,
.block-trex-upcoming-events .event-card__categories,
.block-trex-upcoming-events .program-card__category,
.block-trex-upcoming-events__categories,
.block-hero-events .event-card__categories,
.block-hero-events .program-card__category,
.block-hero-events__categories {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.post-type-archive-tribe_programs .event-card__categories li,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category,
.post-type-archive-tribe_programs .program-card__category li,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category, .post-type-archive-tribe_programs__categories li,
.post-type-archive-tribe_programs__categories .block-hero-events__category,
.post-type-archive-tribe_events .event-card__categories li,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category,
.post-type-archive-tribe_events .program-card__category li,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category,
.post-type-archive-tribe_events__categories li,
.post-type-archive-tribe_events__categories .block-hero-events__category,
.block-trex-upcoming-events .event-card__categories li,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category,
.block-trex-upcoming-events .program-card__category li,
.block-trex-upcoming-events .program-card__category .block-hero-events__category,
.block-trex-upcoming-events__categories li,
.block-trex-upcoming-events__categories .block-hero-events__category,
.block-hero-events .event-card__categories li,
.block-hero-events .event-card__categories .block-hero-events__category,
.block-hero-events .program-card__category li,
.block-hero-events .program-card__category .block-hero-events__category,
.block-hero-events__categories li,
.block-hero-events__categories .block-hero-events__category {
  margin-right: 0.625rem;
  margin-bottom: 0.375rem;
  line-height: 0;
  border: 0.125rem solid transparent;
  border-radius: 1.5625rem;
  background-color: #f5e8d5;
  transition: 0.2s linear;
}
.post-type-archive-tribe_programs .event-card__categories li a,
.post-type-archive-tribe_programs .event-card__categories li span,
.post-type-archive-tribe_programs .event-card__categories li strong,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category a,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category span,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category strong,
.post-type-archive-tribe_programs .program-card__category li a,
.post-type-archive-tribe_programs .program-card__category li span,
.post-type-archive-tribe_programs .program-card__category li strong,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category a,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category span,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category strong, .post-type-archive-tribe_programs__categories li a,
.post-type-archive-tribe_programs__categories li span,
.post-type-archive-tribe_programs__categories li strong,
.post-type-archive-tribe_programs__categories .block-hero-events__category a,
.post-type-archive-tribe_programs__categories .block-hero-events__category span,
.post-type-archive-tribe_programs__categories .block-hero-events__category strong,
.post-type-archive-tribe_events .event-card__categories li a,
.post-type-archive-tribe_events .event-card__categories li span,
.post-type-archive-tribe_events .event-card__categories li strong,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category a,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category span,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category strong,
.post-type-archive-tribe_events .program-card__category li a,
.post-type-archive-tribe_events .program-card__category li span,
.post-type-archive-tribe_events .program-card__category li strong,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category a,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category span,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category strong,
.post-type-archive-tribe_events__categories li a,
.post-type-archive-tribe_events__categories li span,
.post-type-archive-tribe_events__categories li strong,
.post-type-archive-tribe_events__categories .block-hero-events__category a,
.post-type-archive-tribe_events__categories .block-hero-events__category span,
.post-type-archive-tribe_events__categories .block-hero-events__category strong,
.block-trex-upcoming-events .event-card__categories li a,
.block-trex-upcoming-events .event-card__categories li span,
.block-trex-upcoming-events .event-card__categories li strong,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category a,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category span,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category strong,
.block-trex-upcoming-events .program-card__category li a,
.block-trex-upcoming-events .program-card__category li span,
.block-trex-upcoming-events .program-card__category li strong,
.block-trex-upcoming-events .program-card__category .block-hero-events__category a,
.block-trex-upcoming-events .program-card__category .block-hero-events__category span,
.block-trex-upcoming-events .program-card__category .block-hero-events__category strong,
.block-trex-upcoming-events__categories li a,
.block-trex-upcoming-events__categories li span,
.block-trex-upcoming-events__categories li strong,
.block-trex-upcoming-events__categories .block-hero-events__category a,
.block-trex-upcoming-events__categories .block-hero-events__category span,
.block-trex-upcoming-events__categories .block-hero-events__category strong,
.block-hero-events .event-card__categories li a,
.block-hero-events .event-card__categories li span,
.block-hero-events .event-card__categories li strong,
.block-hero-events .event-card__categories .block-hero-events__category a,
.block-hero-events .event-card__categories .block-hero-events__category span,
.block-hero-events .event-card__categories .block-hero-events__category strong,
.block-hero-events .program-card__category li a,
.block-hero-events .program-card__category li span,
.block-hero-events .program-card__category li strong,
.block-hero-events .program-card__category .block-hero-events__category a,
.block-hero-events .program-card__category .block-hero-events__category span,
.block-hero-events .program-card__category .block-hero-events__category strong,
.block-hero-events__categories li a,
.block-hero-events__categories li span,
.block-hero-events__categories li strong,
.block-hero-events__categories .block-hero-events__category a,
.block-hero-events__categories .block-hero-events__category span,
.block-hero-events__categories .block-hero-events__category strong {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  color: #b04900;
  text-decoration: none;
}
.post-type-archive-tribe_programs .event-card__categories li a:hover,
.post-type-archive-tribe_programs .event-card__categories li span:hover,
.post-type-archive-tribe_programs .event-card__categories li strong:hover,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category a:hover,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category span:hover,
.post-type-archive-tribe_programs .event-card__categories .block-hero-events__category strong:hover,
.post-type-archive-tribe_programs .program-card__category li a:hover,
.post-type-archive-tribe_programs .program-card__category li span:hover,
.post-type-archive-tribe_programs .program-card__category li strong:hover,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category a:hover,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category span:hover,
.post-type-archive-tribe_programs .program-card__category .block-hero-events__category strong:hover, .post-type-archive-tribe_programs__categories li a:hover,
.post-type-archive-tribe_programs__categories li span:hover,
.post-type-archive-tribe_programs__categories li strong:hover,
.post-type-archive-tribe_programs__categories .block-hero-events__category a:hover,
.post-type-archive-tribe_programs__categories .block-hero-events__category span:hover,
.post-type-archive-tribe_programs__categories .block-hero-events__category strong:hover,
.post-type-archive-tribe_events .event-card__categories li a:hover,
.post-type-archive-tribe_events .event-card__categories li span:hover,
.post-type-archive-tribe_events .event-card__categories li strong:hover,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category a:hover,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category span:hover,
.post-type-archive-tribe_events .event-card__categories .block-hero-events__category strong:hover,
.post-type-archive-tribe_events .program-card__category li a:hover,
.post-type-archive-tribe_events .program-card__category li span:hover,
.post-type-archive-tribe_events .program-card__category li strong:hover,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category a:hover,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category span:hover,
.post-type-archive-tribe_events .program-card__category .block-hero-events__category strong:hover,
.post-type-archive-tribe_events__categories li a:hover,
.post-type-archive-tribe_events__categories li span:hover,
.post-type-archive-tribe_events__categories li strong:hover,
.post-type-archive-tribe_events__categories .block-hero-events__category a:hover,
.post-type-archive-tribe_events__categories .block-hero-events__category span:hover,
.post-type-archive-tribe_events__categories .block-hero-events__category strong:hover,
.block-trex-upcoming-events .event-card__categories li a:hover,
.block-trex-upcoming-events .event-card__categories li span:hover,
.block-trex-upcoming-events .event-card__categories li strong:hover,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category a:hover,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category span:hover,
.block-trex-upcoming-events .event-card__categories .block-hero-events__category strong:hover,
.block-trex-upcoming-events .program-card__category li a:hover,
.block-trex-upcoming-events .program-card__category li span:hover,
.block-trex-upcoming-events .program-card__category li strong:hover,
.block-trex-upcoming-events .program-card__category .block-hero-events__category a:hover,
.block-trex-upcoming-events .program-card__category .block-hero-events__category span:hover,
.block-trex-upcoming-events .program-card__category .block-hero-events__category strong:hover,
.block-trex-upcoming-events__categories li a:hover,
.block-trex-upcoming-events__categories li span:hover,
.block-trex-upcoming-events__categories li strong:hover,
.block-trex-upcoming-events__categories .block-hero-events__category a:hover,
.block-trex-upcoming-events__categories .block-hero-events__category span:hover,
.block-trex-upcoming-events__categories .block-hero-events__category strong:hover,
.block-hero-events .event-card__categories li a:hover,
.block-hero-events .event-card__categories li span:hover,
.block-hero-events .event-card__categories li strong:hover,
.block-hero-events .event-card__categories .block-hero-events__category a:hover,
.block-hero-events .event-card__categories .block-hero-events__category span:hover,
.block-hero-events .event-card__categories .block-hero-events__category strong:hover,
.block-hero-events .program-card__category li a:hover,
.block-hero-events .program-card__category li span:hover,
.block-hero-events .program-card__category li strong:hover,
.block-hero-events .program-card__category .block-hero-events__category a:hover,
.block-hero-events .program-card__category .block-hero-events__category span:hover,
.block-hero-events .program-card__category .block-hero-events__category strong:hover,
.block-hero-events__categories li a:hover,
.block-hero-events__categories li span:hover,
.block-hero-events__categories li strong:hover,
.block-hero-events__categories .block-hero-events__category a:hover,
.block-hero-events__categories .block-hero-events__category span:hover,
.block-hero-events__categories .block-hero-events__category strong:hover {
  text-decoration: none;
}
.post-type-archive-tribe_programs .event-card-detail,
.post-type-archive-tribe_programs .program-card-detail,
.post-type-archive-tribe_programs .block-hero-events-details,
.post-type-archive-tribe_events .event-card-detail,
.post-type-archive-tribe_events .program-card-detail,
.post-type-archive-tribe_events .block-hero-events-details,
.block-trex-upcoming-events .event-card-detail,
.block-trex-upcoming-events .program-card-detail,
.block-trex-upcoming-events .block-hero-events-details,
.block-hero-events .event-card-detail,
.block-hero-events .program-card-detail,
.block-hero-events .block-hero-events-details {
  display: flex;
  align-items: center;
  margin-bottom: 0.375rem;
}
.post-type-archive-tribe_programs .event-card-detail__icon, .post-type-archive-tribe_programs .event-card-detail__content-detail-icon,
.post-type-archive-tribe_programs .program-card-detail__icon,
.post-type-archive-tribe_programs .program-card-detail__content-detail-icon,
.post-type-archive-tribe_programs .block-hero-events-details__icon,
.post-type-archive-tribe_programs .block-hero-events-details__content-detail-icon,
.post-type-archive-tribe_events .event-card-detail__icon,
.post-type-archive-tribe_events .event-card-detail__content-detail-icon,
.post-type-archive-tribe_events .program-card-detail__icon,
.post-type-archive-tribe_events .program-card-detail__content-detail-icon,
.post-type-archive-tribe_events .block-hero-events-details__icon,
.post-type-archive-tribe_events .block-hero-events-details__content-detail-icon,
.block-trex-upcoming-events .event-card-detail__icon,
.block-trex-upcoming-events .event-card-detail__content-detail-icon,
.block-trex-upcoming-events .program-card-detail__icon,
.block-trex-upcoming-events .program-card-detail__content-detail-icon,
.block-trex-upcoming-events .block-hero-events-details__icon,
.block-trex-upcoming-events .block-hero-events-details__content-detail-icon,
.block-hero-events .event-card-detail__icon,
.block-hero-events .event-card-detail__content-detail-icon,
.block-hero-events .program-card-detail__icon,
.block-hero-events .program-card-detail__content-detail-icon,
.block-hero-events .block-hero-events-details__icon,
.block-hero-events .block-hero-events-details__content-detail-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.5rem;
  padding: 0.375rem;
  border-radius: 50%;
  background-color: #f2ebf1;
}
.post-type-archive-tribe_programs .event-card-detail__icon i, .post-type-archive-tribe_programs .event-card-detail__content-detail-icon i,
.post-type-archive-tribe_programs .program-card-detail__icon i,
.post-type-archive-tribe_programs .program-card-detail__content-detail-icon i,
.post-type-archive-tribe_programs .block-hero-events-details__icon i,
.post-type-archive-tribe_programs .block-hero-events-details__content-detail-icon i,
.post-type-archive-tribe_events .event-card-detail__icon i,
.post-type-archive-tribe_events .event-card-detail__content-detail-icon i,
.post-type-archive-tribe_events .program-card-detail__icon i,
.post-type-archive-tribe_events .program-card-detail__content-detail-icon i,
.post-type-archive-tribe_events .block-hero-events-details__icon i,
.post-type-archive-tribe_events .block-hero-events-details__content-detail-icon i,
.block-trex-upcoming-events .event-card-detail__icon i,
.block-trex-upcoming-events .event-card-detail__content-detail-icon i,
.block-trex-upcoming-events .program-card-detail__icon i,
.block-trex-upcoming-events .program-card-detail__content-detail-icon i,
.block-trex-upcoming-events .block-hero-events-details__icon i,
.block-trex-upcoming-events .block-hero-events-details__content-detail-icon i,
.block-hero-events .event-card-detail__icon i,
.block-hero-events .event-card-detail__content-detail-icon i,
.block-hero-events .program-card-detail__icon i,
.block-hero-events .program-card-detail__content-detail-icon i,
.block-hero-events .block-hero-events-details__icon i,
.block-hero-events .block-hero-events-details__content-detail-icon i {
  color: #8e3a80;
}
.post-type-archive-tribe_programs .event-card-detail__icon i::before, .post-type-archive-tribe_programs .event-card-detail__content-detail-icon i::before,
.post-type-archive-tribe_programs .program-card-detail__icon i::before,
.post-type-archive-tribe_programs .program-card-detail__content-detail-icon i::before,
.post-type-archive-tribe_programs .block-hero-events-details__icon i::before,
.post-type-archive-tribe_programs .block-hero-events-details__content-detail-icon i::before,
.post-type-archive-tribe_events .event-card-detail__icon i::before,
.post-type-archive-tribe_events .event-card-detail__content-detail-icon i::before,
.post-type-archive-tribe_events .program-card-detail__icon i::before,
.post-type-archive-tribe_events .program-card-detail__content-detail-icon i::before,
.post-type-archive-tribe_events .block-hero-events-details__icon i::before,
.post-type-archive-tribe_events .block-hero-events-details__content-detail-icon i::before,
.block-trex-upcoming-events .event-card-detail__icon i::before,
.block-trex-upcoming-events .event-card-detail__content-detail-icon i::before,
.block-trex-upcoming-events .program-card-detail__icon i::before,
.block-trex-upcoming-events .program-card-detail__content-detail-icon i::before,
.block-trex-upcoming-events .block-hero-events-details__icon i::before,
.block-trex-upcoming-events .block-hero-events-details__content-detail-icon i::before,
.block-hero-events .event-card-detail__icon i::before,
.block-hero-events .event-card-detail__content-detail-icon i::before,
.block-hero-events .program-card-detail__icon i::before,
.block-hero-events .program-card-detail__content-detail-icon i::before,
.block-hero-events .block-hero-events-details__icon i::before,
.block-hero-events .block-hero-events-details__content-detail-icon i::before {
  font-size: 1rem;
}
.post-type-archive-tribe_programs .event-card-detail__content, .post-type-archive-tribe_programs .event-card-detail__content-detail,
.post-type-archive-tribe_programs .program-card-detail__content,
.post-type-archive-tribe_programs .program-card-detail__content-detail,
.post-type-archive-tribe_programs .block-hero-events-details__content,
.post-type-archive-tribe_programs .block-hero-events-details__content-detail,
.post-type-archive-tribe_events .event-card-detail__content,
.post-type-archive-tribe_events .event-card-detail__content-detail,
.post-type-archive-tribe_events .program-card-detail__content,
.post-type-archive-tribe_events .program-card-detail__content-detail,
.post-type-archive-tribe_events .block-hero-events-details__content,
.post-type-archive-tribe_events .block-hero-events-details__content-detail,
.block-trex-upcoming-events .event-card-detail__content,
.block-trex-upcoming-events .event-card-detail__content-detail,
.block-trex-upcoming-events .program-card-detail__content,
.block-trex-upcoming-events .program-card-detail__content-detail,
.block-trex-upcoming-events .block-hero-events-details__content,
.block-trex-upcoming-events .block-hero-events-details__content-detail,
.block-hero-events .event-card-detail__content,
.block-hero-events .event-card-detail__content-detail,
.block-hero-events .program-card-detail__content,
.block-hero-events .program-card-detail__content-detail,
.block-hero-events .block-hero-events-details__content,
.block-hero-events .block-hero-events-details__content-detail {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  flex-grow: 1;
}
.post-type-archive-tribe_programs .event-card-details-wrapper,
.post-type-archive-tribe_events .event-card-details-wrapper,
.block-trex-upcoming-events .event-card-details-wrapper,
.block-hero-events .event-card-details-wrapper {
  margin: 1rem 0rem;
}
.post-type-archive-tribe_programs .program-card-details-wrapper,
.post-type-archive-tribe_events .program-card-details-wrapper,
.block-trex-upcoming-events .program-card-details-wrapper,
.block-hero-events .program-card-details-wrapper {
  margin: 1.125rem 0rem;
}
.post-type-archive-tribe_programs .block-hero-events-details-inner,
.post-type-archive-tribe_events .block-hero-events-details-inner,
.block-trex-upcoming-events .block-hero-events-details-inner,
.block-hero-events .block-hero-events-details-inner {
  margin: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem) 0 1rem 0;
}
.post-type-archive-tribe_programs .event-card__title,
.post-type-archive-tribe_programs .program-card__title,
.post-type-archive-tribe_events .event-card__title,
.post-type-archive-tribe_events .program-card__title,
.block-trex-upcoming-events .event-card__title,
.block-trex-upcoming-events .program-card__title,
.block-hero-events .event-card__title,
.block-hero-events .program-card__title {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  color: var(--blockColor, #093a3d);
}
.bg-dark .post-type-archive-tribe_programs .event-card__title,
.bg-dark .post-type-archive-tribe_programs .program-card__title,
.bg-dark .post-type-archive-tribe_events .event-card__title,
.bg-dark .post-type-archive-tribe_events .program-card__title,
.bg-dark .block-trex-upcoming-events .event-card__title,
.bg-dark .block-trex-upcoming-events .program-card__title,
.bg-dark .block-hero-events .event-card__title,
.bg-dark .block-hero-events .program-card__title {
  color: #fffbf5;
}
.post-type-archive-tribe_programs .event-card__excerpt p,
.post-type-archive-tribe_programs .program-card__excerpt p,
.post-type-archive-tribe_programs .block-hero-events__excerpt p,
.post-type-archive-tribe_events .event-card__excerpt p,
.post-type-archive-tribe_events .program-card__excerpt p,
.post-type-archive-tribe_events .block-hero-events__excerpt p,
.block-trex-upcoming-events .event-card__excerpt p,
.block-trex-upcoming-events .program-card__excerpt p,
.block-trex-upcoming-events .block-hero-events__excerpt p,
.block-hero-events .event-card__excerpt p,
.block-hero-events .program-card__excerpt p,
.block-hero-events .block-hero-events__excerpt p {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
}
.post-type-archive-tribe_programs .program-card__excerpt,
.post-type-archive-tribe_programs .block-hero-events__excerpt,
.post-type-archive-tribe_events .program-card__excerpt,
.post-type-archive-tribe_events .block-hero-events__excerpt,
.block-trex-upcoming-events .program-card__excerpt,
.block-trex-upcoming-events .block-hero-events__excerpt,
.block-hero-events .program-card__excerpt,
.block-hero-events .block-hero-events__excerpt {
  margin-bottom: 1.5rem;
}
.post-type-archive-tribe_programs .event-card__excerpt,
.post-type-archive-tribe_events .event-card__excerpt,
.block-trex-upcoming-events .event-card__excerpt,
.block-hero-events .event-card__excerpt {
  margin-bottom: 1.5rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .event-card__excerpt,
.post-type-archive-tribe_events .event-card__excerpt,
.block-trex-upcoming-events .event-card__excerpt,
.block-hero-events .event-card__excerpt {
    margin-bottom: 0rem;
  }
}

@media (max-width: 47.98rem) {
  .block-hero-events__left .block-hero-events__form {
    display: none;
  }
}
@media (min-width: 48rem) {
  .block-hero-events__right .block-hero-events__form {
    display: none;
  }
}

.trex-block__header {
  gap: clamp(1rem, 0.4285714286rem + 1.1904761905vw, 1.5rem);
}
.trex-block__header .wp-block-button.c-btn--tertiary::after {
  content: "\ea08";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 0.25rem;
}

.post-type-archive-tribe_events .tribe-events,
.block-trex-upcoming-events .tribe-events {
  padding-top: 0rem;
}
.post-type-archive-tribe_events .tribe-events .events-archive-custom-container,
.block-trex-upcoming-events .tribe-events .events-archive-custom-container {
  padding-top: 1.5rem;
  background: #fffbf5;
}
.post-type-archive-tribe_events .tribe-events .events-archive-custom-container.container,
.block-trex-upcoming-events .tribe-events .events-archive-custom-container.container {
  max-width: none;
  margin: 0;
  padding: 1.5rem 0 0 0;
}
.post-type-archive-tribe_events .tribe-events .events-archive-custom-container > .container,
.block-trex-upcoming-events .tribe-events .events-archive-custom-container > .container {
  max-width: 90rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
  padding-left: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header,
.block-trex-upcoming-events .tribe-events .tribe-events-header {
  display: block;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar {
  margin-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__nav .tribe-common-c-btn-icon:not(:disabled) .tribe-common-c-btn-icon__icon-svg path,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__nav .tribe-common-c-btn-icon:not(:disabled) .tribe-common-c-btn-icon__icon-svg path {
  fill: #093a3d;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button:focus,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button:focus {
  outline: none;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__today-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__today-button {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  margin-right: 1.5rem;
  color: #013d00;
  border: 0.125rem solid #e0d0b8;
  border-radius: 0.75rem;
  background-color: transparent;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__today-button:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__today-button:hover {
  border-color: #9cd19b;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown {
  margin: 0;
  margin-top: -0.9375rem;
  border: none;
  border-radius: 1.125rem;
  background-color: #fffbf5;
  box-shadow: 0 0 0.5rem rgba(10, 10, 10, 0.12);
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .datepicker-switch,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .datepicker-switch {
  font-weight: var(--title-3-font-weight);
  font-size: var(--title-3-font-size);
  font-family: var(--title-3-font-family);
  line-height: var(--title-3-line-height);
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .datepicker-switch:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .datepicker-switch:hover {
  background-color: transparent;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .dow,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .dow {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  padding: 0rem 0rem 0.84375rem 0rem;
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .old.day.past,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .old.day.past {
  color: #706351;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day.past,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .new.day,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day.past,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .new.day,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  padding: 0.84375rem 0rem;
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day.past:hover,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .new.day:hover,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day.past:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .new.day:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .day:hover {
  border-radius: 50%;
  background-color: #9cd19b;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .active.day,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .active.day {
  border-radius: 50%;
  background-color: #9cd19b;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .next:hover,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .prev:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .next:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .prev:hover {
  background-color: transparent;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .next svg path,
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .prev svg path,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .next svg path,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .datepicker-dropdown .prev svg path {
  fill: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button-icon-svg path,
.block-trex-upcoming-events .tribe-events .tribe-events-header__top-bar .tribe-events-c-top-bar__datepicker-button-icon-svg path {
  fill: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar {
  display: block;
  margin-bottom: clamp(1.5rem, -1.9285714286rem + 7.1428571429vw, 4.5rem);
  border: 0;
  background-color: transparent;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar {
    display: flex;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-bar--active,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-bar--active {
  display: block !important;
  background-color: #fffbf5 !important;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  display: block;
  width: 100%;
  margin: 0;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button::before, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, a:focus .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
a:focus .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover,
a:hover .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible, a:active .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active,
a:focus-visible .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible,
a:active .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover, a:hover .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover,
a:hover .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover,
a:hover .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible, a:active .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active,
a:focus-visible .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible,
a:active .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active,
a:focus-visible .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible,
a:active .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, a:focus .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
a:focus .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible, a:active .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:focus-visible,
a:active .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button[target=_blank]::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button[target=_blank]::after {
  display: none;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__custom-search-button {
    display: none;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container {
  padding: 0;
  background-color: transparent;
}
@media (max-width: 61.98rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    display: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-events-bar__filters,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-events-bar__filters {
  display: block;
  height: calc(100% - 4.375rem);
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-events-bar__filters,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-events-bar__filters {
    display: flex;
    flex: auto;
    height: auto;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  background-color: #f5ede1;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header {
    display: none;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header__text,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header__text {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  color: #093a3d;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header__btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .filter-mobile-header__btn {
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0 0.625rem;
  color: #093a3d;
  line-height: 0;
  border: 0;
  border-radius: 100%;
  background: #fffbf5;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search {
  display: block;
  height: calc(100% - 4.875rem);
  padding: 0rem 1.25rem;
  overflow: auto;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search {
    display: flex;
    flex: auto;
    align-items: center;
    height: auto;
    padding: 0.75rem;
    border: 0.0625rem solid #eadfce;
    border-radius: 1.125rem;
    background-color: #fffbf5;
    overflow: visible;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search > [class*=tribe-events-c],
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search > [class*=tribe-events-c] {
  flex: 1;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search .tribe-events-c-top-bar__actions,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search .tribe-events-c-top-bar__actions {
  display: block !important;
  margin-top: 1.5rem;
  visibility: visible;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search .tribe-events-c-top-bar__actions,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search .tribe-events-c-top-bar__actions {
    display: none !important;
    margin-top: 0;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group {
  position: relative;
  margin: 1.5rem 0rem;
  color: #013d00;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group {
    flex: 0 0 18%;
    margin: 0;
    border-right: 0.0625rem solid #eadfce;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .icon-search,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .icon-search {
  position: absolute;
  top: 0;
  left: 0.625rem;
  bottom: 0;
  font-size: 1.25rem;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .tribe-bar-search-input,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .tribe-bar-search-input {
  padding: 0.75rem 0.75rem 0.75rem 2.375rem;
  color: #013d00;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .tribe-bar-search-input,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__input-group .tribe-bar-search-input {
    border: 0 !important;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__select-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__select-group {
  margin: 0.75rem 0rem;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  cursor: pointer;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__select-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__select-group {
    position: relative;
    flex: 0 0 20%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: flex;
  align-items: center;
  color: #013d00;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger {
    padding: 0.75rem 0.6875rem 0.75rem 1rem;
    border-right: 0.0625rem solid #eadfce;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger.open::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger.open::after {
  content: "\ea13";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger .dropdown-trigger-head,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown-trigger .dropdown-trigger-head {
  flex-grow: 1;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown {
  z-index: 1;
  display: none;
  padding: 0.75rem 0rem;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown {
    position: absolute;
    top: 3.6875rem;
    left: 0;
    width: 100%;
    background-color: #fffbf5;
    box-shadow: 0 0 0.5rem 0 rgba(10, 10, 10, 0.12);
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown li,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown li {
  padding: 0.5rem 0rem;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown li,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown li {
    padding: 0.5rem 0.75rem;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown.active,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown.active {
  display: block;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox],
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox] {
  position: absolute;
  left: 0;
  width: 1.25rem;
  height: 1.25rem;
  opacity: 0;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox] + label,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox] + label {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 0 0 1.375rem;
  color: #013d00;
  cursor: pointer;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox] + label::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox] + label::before {
  position: absolute;
  top: 49%;
  left: 0;
  content: "";
  display: inline-block;
  width: 0.9375rem;
  height: 0.9375rem;
  margin-right: 0.625rem;
  vertical-align: middle;
  border: 0.125rem solid #706351;
  border-radius: 0.125rem;
  background-color: #fffbf5;
  transform: translateY(-50%);
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked + label::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked + label::before {
  border-color: #013d00;
  background-color: #013d00 !important;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked + label::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked + label::after {
  content: "\ea12";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 49%;
  left: 0;
  color: #fffbf5;
  font-size: 0.9375rem;
  transform: translateY(-50%);
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked:hover + label::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__dropdown input[type=checkbox]:checked:hover + label::after {
  width: auto;
  height: auto;
  opacity: 1;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group {
  display: flex;
  flex-grow: 1;
  align-items: center;
}
@media (max-width: 61.98rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    padding: 1rem 1.25rem;
    background: #fffbf5;
    box-shadow: 0 0 0.5rem rgba(10, 10, 10, 0.12);
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: flex;
  align-items: center;
  padding: 0.6875rem 1.5rem;
  color: #013d00;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem 0rem 0rem 1.125rem;
  background-color: transparent;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn {
    border-color: transparent;
    border-radius: 0;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn .filter-reset-btn-text,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-reset-btn .filter-reset-btn-text {
  margin-right: 0.25rem;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn::before, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, a:focus .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
a:focus .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover,
a:hover .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible, a:active .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active,
a:focus-visible .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible,
a:active .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover, a:hover .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover,
a:hover .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover,
a:hover .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible, a:active .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active,
a:focus-visible .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible,
a:active .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active,
a:focus-visible .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible,
a:active .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, a:focus .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
a:focus .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible, a:active .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:focus-visible,
a:active .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn[target=_blank]::after,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn[target=_blank]::after {
  display: none;
}
@media (max-width: 61.98rem) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-events-bar__search-container .tribe-events-c-search__button-group .filter-submit-btn {
    border-radius: 0rem 1.125rem 1.125rem 0rem;
  }
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__label,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__label {
  font-weight: var(--title-2-font-weight);
  font-size: var(--title-2-font-size);
  font-family: var(--title-2-font-family);
  line-height: var(--title-2-line-height);
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input {
  width: 3.5rem;
  height: 2rem;
  border-radius: 1.5625rem;
  background-color: #f5ede1;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input:checked + label::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input:checked + label::before {
  border-color: #e0d0b8;
  background-color: #e0d0b8;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input + label::before,
.block-trex-upcoming-events .tribe-events .tribe-events-header .tribe-events-c-top-bar__actions .tribe-common-form-control-toggle__input + label::before {
  top: 0.54375rem;
  left: 0.3125rem;
  width: 1.5625rem;
  height: 1.5625rem;
  border-color: #9cd19b;
  background-color: #9cd19b;
  box-shadow: none;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages {
  display: block;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message {
  padding: clamp(3.75rem, 1.75rem + 4.1666666667vw, 5.5rem) clamp(1.25rem, -7.6071428571rem + 18.4523809524vw, 9rem) clamp(4.5rem, 2.7857142857rem + 3.5714285714vw, 6rem) clamp(1.25rem, -7.6071428571rem + 18.4523809524vw, 9rem);
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results {
  max-width: 40rem;
  text-align: center;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
  margin-right: 1rem;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::after,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, a:focus .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
a:focus .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus {
  color: #013d00;
  background-color: transparent;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, a:focus .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
a:focus .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover {
    color: #013d00;
  }
  .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover,
a:hover .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover {
    color: #013d00;
  }
  a:hover .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover::before,
a:hover .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible, a:active .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active,
a:focus-visible .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible,
a:active .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active {
  color: #013d00;
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible::before, a:active .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active::before,
a:focus-visible .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible::before,
a:active .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active::before {
  background-color: #013d00;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, a:focus .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, a:focus .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
a:focus .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
a:focus .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus {
  color: #013d00 !important;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, a:focus .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, a:focus .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
a:focus .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
a:focus .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover, a:hover .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover,
a:hover .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover,
a:hover .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible, a:active .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active,
a:focus-visible .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible,
a:active .bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active,
a:focus-visible .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible,
a:active .bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active {
  color: #013d00 !important;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, a:focus .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
a:focus .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover {
    color: #013d00;
  }
  .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover::before,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover {
    color: #013d00;
  }
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover::before,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible, a:active .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible,
a:active .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active {
  color: #013d00;
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible::before, a:active .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before, .bg-white .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active::before,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:focus-visible::before,
a:active .bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary::before,
.bg-white .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__message-no-results .wp-block-buttons .c-btn--tertiary:active::before {
  background-color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__no-result-head,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__no-result-head {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  color: #005f66;
  padding-bottom: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
}
.bg-dark .post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__no-result-head,
.bg-dark .block-trex-upcoming-events .tribe-events .tribe-events-calendar-list .tribe-events-c-messages__no-result-head {
  color: #faf4eb;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__month-separator-text,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list__month-separator-text {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  color: #093a3d;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__month-separator,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list__month-separator {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  line-height: 0;
  overflow: hidden;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-calendar-list__month-separator::after,
.block-trex-upcoming-events .tribe-events .tribe-events-calendar-list__month-separator::after {
  position: absolute;
  top: 50%;
  content: "";
  display: unset;
  width: 100%;
  height: 0.0625rem;
  margin-left: 0.75rem;
  background-color: #e0d0b8;
  opacity: 0.65;
}
.post-type-archive-tribe_events .tribe-events .event-card,
.block-trex-upcoming-events .tribe-events .event-card {
  position: relative;
  margin-bottom: clamp(1.25rem, 0.9642857143rem + 0.5952380952vw, 1.5rem);
  overflow: hidden;
  -webkit-mask-image: url(../images/corner-mask-mobile.svg);
  -webkit-mask-position: top -0.0625rem left -0.0625rem;
  -webkit-mask-repeat: no-repeat;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card,
.block-trex-upcoming-events .tribe-events .event-card {
    -webkit-mask-image: url(../images/corner-mask-desktop.svg);
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__date,
.block-trex-upcoming-events .tribe-events .event-card__date {
  position: absolute;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.75rem;
  height: 4rem;
  padding: 0;
  text-align: center;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__date,
.block-trex-upcoming-events .tribe-events .event-card__date {
    width: 4.875rem;
    height: 5.25rem;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__date::before,
.block-trex-upcoming-events .tribe-events .event-card__date::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5.25rem;
  height: 5.25rem;
  background-image: url(../images/corner-border-mobile.svg);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 5.25rem 5.25rem;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  touch-action: none;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__date::before,
.block-trex-upcoming-events .tribe-events .event-card__date::before {
    width: 7rem;
    height: 7rem;
    background-image: url(../images/corner-border-desktop.svg);
    background-size: 7rem 7rem;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__date .event-card__month,
.block-trex-upcoming-events .tribe-events .event-card__date .event-card__month {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  color: #093a3d;
}
.post-type-archive-tribe_events .tribe-events .event-card__date .event-card__day,
.block-trex-upcoming-events .tribe-events .event-card__date .event-card__day {
  color: #093a3d;
}
.post-type-archive-tribe_events .tribe-events .event-card__date .event-card__day h3,
.block-trex-upcoming-events .tribe-events .event-card__date .event-card__day h3 {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  color: var(--blockColor, #093a3d);
}
.bg-dark .post-type-archive-tribe_events .tribe-events .event-card__date .event-card__day h3,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__date .event-card__day h3 {
  color: #fffbf5;
}
.post-type-archive-tribe_events .tribe-events .event-card__container,
.block-trex-upcoming-events .tribe-events .event-card__container {
  padding: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem) clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem) clamp(1.5rem, -0.2142857143rem + 3.5714285714vw, 3rem) clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  background-color: #fffbf5;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__wrapper,
.block-trex-upcoming-events .tribe-events .event-card__wrapper {
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__content,
.block-trex-upcoming-events .tribe-events .event-card__content {
    flex-grow: 1;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__categories,
.block-trex-upcoming-events .tribe-events .event-card__categories {
  padding-right: clamp(0rem, -10.2857142857rem + 21.4285714286vw, 9rem);
  padding-left: 4.25rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__categories,
.block-trex-upcoming-events .tribe-events .event-card__categories {
    padding-left: 4.75rem;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__categories.no-category,
.block-trex-upcoming-events .tribe-events .event-card__categories.no-category {
  visibility: hidden;
}
.post-type-archive-tribe_events .tribe-events .event-card__content-inner,
.block-trex-upcoming-events .tribe-events .event-card__content-inner {
  position: relative;
  padding-top: 2.0625rem;
  padding-right: clamp(0rem, -10.2857142857rem + 21.4285714286vw, 9rem);
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__content-inner,
.block-trex-upcoming-events .tribe-events .event-card__content-inner {
    padding-top: 0;
    padding-left: 4.75rem;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons,
.block-trex-upcoming-events .tribe-events .event-card__buttons {
  min-width: 11.25rem;
  text-align: right;
}
@media (max-width: 47.98rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons,
.block-trex-upcoming-events .tribe-events .event-card__buttons {
    display: flex;
    align-items: center;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__btn {
  width: 100%;
  margin-right: 0.5rem;
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__btn {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__btn:last-child,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__btn:last-child {
  margin: 0;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  min-width: 9.25rem;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn::before, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn::after,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn::before,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, a:focus .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
a:focus .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover,
a:hover .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible, a:active .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active,
a:focus-visible .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible,
a:active .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover, a:hover .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover,
a:hover .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover,
a:hover .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible, a:active .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active,
a:focus-visible .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible,
a:active .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active,
a:focus-visible .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible,
a:active .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, a:focus .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
a:focus .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible, a:active .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:focus-visible,
a:active .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__details-btn .c-btn[target=_blank]::after,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__details-btn .c-btn[target=_blank]::after {
  display: none;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
  min-width: 9.25rem;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn::before, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn::after,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn::before,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, a:focus .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
a:focus .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover,
a:hover .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible, a:active .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active,
a:focus-visible .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible,
a:active .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover, a:hover .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover,
a:hover .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover,
a:hover .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible, a:active .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-dark-inner .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active,
a:focus-visible .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible,
a:active .bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active,
a:focus-visible .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible,
a:active .bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-dark-inner .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, a:focus .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
a:focus .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover,
a:hover .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible, a:active .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn, .bg-white .post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active,
a:focus-visible .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:focus-visible,
a:active .bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn,
.bg-white .block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_events .tribe-events .event-card__buttons .event-card__register-btn .c-btn[target=_blank]::after,
.block-trex-upcoming-events .tribe-events .event-card__buttons .event-card__register-btn .c-btn[target=_blank]::after {
  display: none;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav {
  margin: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) 0 0 0;
  padding-top: 1.5rem;
  border-color: #e0d0b8;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item {
  align-items: center;
  width: auto;
  border-bottom: 0.125rem solid #9cd19b;
  transition: 0.2s linear;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item--today,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item--today {
  display: none;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item--prev::before,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item--prev::before {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item--next::after,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item--next::after {
  content: "\ea16";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item:hover,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item:hover {
  border-color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item .c-btn,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item .c-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
}
.post-type-archive-tribe_events .tribe-events .tribe-events-c-nav__list-item.nav-disabled,
.block-trex-upcoming-events .tribe-events .tribe-events-c-nav__list-item.nav-disabled {
  visibility: hidden;
}

.tribe-events-c-events-bar__lock-scroll {
  overflow: hidden;
}

.trex-filters-content {
  position: relative;
}
.trex-filters-content:empty::before {
  position: absolute;
  content: "";
  z-index: 2;
  height: 17.125rem;
  background-image: url(../images/loader.gif);
  background-repeat: no-repeat;
  background-position: top center;
}
.trex-filters-content:empty + .trex-filters-pagination-wrapper {
  display: none;
}

.post-type-archive-tribe_programs .trex-filters-container {
  grid-column-gap: 0;
  padding-right: 0;
  padding-bottom: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
  background-color: #fffbf5;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container {
    grid-column-gap: 4rem;
    padding-right: 1.25rem;
  }
}
@media (min-width: 75rem) {
  .post-type-archive-tribe_programs .trex-filters-container {
    padding-right: 6rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  grid-row: 7;
  position: relative;
  left: 0;
  z-index: 1;
  width: auto;
  max-width: unset;
  margin: 0rem 1.25rem 5.25rem 1.25rem;
  color: #000e0f;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
  transform: none;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort {
    font-weight: var(--subtitle-2-font-weight);
    font-size: var(--subtitle-2-font-size);
    font-family: var(--subtitle-2-font-family);
    line-height: var(--subtitle-2-line-height);
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }
}
@media (max-width: 61.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort {
    grid-row: 7;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title {
  position: relative;
  padding: 0;
  padding: 0.6875rem;
  color: #013d00;
  border: 0;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title {
    padding: 0;
    padding-right: 1.5625rem;
    border-bottom: 0.125rem solid #9cd19b;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 1.5625rem;
  right: 0.3125rem;
  background: none;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title::after {
    content: "\ea1b";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    top: 0.75rem;
    right: 0rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title span {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title.open::after {
  content: "\ea13";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-title.open::after {
    content: "\ea1c";
    font-weight: 400;
    font-size: 1.5rem;
    font-family: "iconfont-propel";
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-filter {
  position: static;
  width: 100%;
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background-color: #fffbf5;
  box-shadow: none;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-filter {
    position: absolute;
    top: 1.0625rem;
    width: 12.5rem;
    margin-top: 0.625rem;
    border-radius: 1.125rem;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-filter .trex-filters-sort-opt {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  padding: 0.5rem 0.75rem;
  color: #093a3d;
  transition: 0.2s linear;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-filter .trex-filters-sort-opt:hover, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort .trex-filters-sort-filter .trex-filters-sort-opt.active {
  background-color: #faf4eb;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort.mobile-show {
  display: block;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort.mobile-show {
    display: none;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort.desktop-show {
  display: none;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-sort.desktop-show {
    display: flex;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border: 0;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar {
    padding: 1.5rem 0rem 0rem 1.25rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button::before, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, a:focus .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus-visible, a:active .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button.hover, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:hover, a:hover .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus-visible, a:active .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, a:focus .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:focus-visible, a:active .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button[target=_blank]::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger button span {
  margin-left: 0.3125rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-mobile-trigger.opened + .trex-filters-filterbar-wrapper {
  display: block;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper {
  background-color: #fffbf5;
}
@media (max-width: 47.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper {
    padding: 0;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done {
  bottom: 0;
  width: 100%;
  padding: 0.75rem 1.25rem;
  background-color: #fffbf5;
  box-shadow: 0 0 0.5rem 0 rgba(10, 10, 10, 0.12);
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  width: 100%;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button::before, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, a:focus .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus-visible, a:active .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button.hover, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:hover, a:hover .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus-visible, a:active .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, a:focus .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:focus-visible, a:active .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters__action-done button[target=_blank]::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top {
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background-color: #f5ede1;
}
@media (max-width: 47.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top {
    position: fixed;
    top: env(safe-area-inset-top, 0);
    left: 0;
    right: 0;
    z-index: 3;
    width: 100%;
  }
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top + .trex-filters-search {
    margin-top: 5.5rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top .tribe-filter-bar__title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  color: #093a3d;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top .tribe-filter-bar__close {
  color: #013d00;
  background-color: #fffbf5;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top .tribe-filter-bar__close::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .tribe-filter-bar__top .tribe-filter-bar__close::before {
  content: "\ea18";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: inherit;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search {
  margin: 0rem 1.25rem 1.5rem 1.25rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search {
    margin: 0rem 0rem 2rem 0rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search input {
  padding: 0.75rem 0.75rem 0.75rem 2.5rem !important;
  border-color: #eadfce !important;
  background-image: url(../images/programs-search.svg);
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search input:focus-within {
  border-color: #9cd19b !important;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search__clear::after, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search__clear::before {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-search__clear.active {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("../images/icons/clear-search.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav {
  margin: 0rem 1.25rem 0.75rem 1.25rem;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav {
    margin: 0rem 0rem 0.75rem 0rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav:last-child {
  margin-bottom: 0;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-title {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  position: relative;
  color: #013d00;
  background: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-title::after {
  content: "\ea14";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 0.8125rem;
  right: 0.625rem;
  color: #013d00;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-title.open::after {
  content: "\ea13";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  color: #013d00;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term--has-subterm {
  right: 0.4375rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term:last-child {
  padding-bottom: 1.25rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term a {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  color: #013d00;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term a:hover {
  text-decoration: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term > a::after {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term > a::before {
  content: "\ea10";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0.75rem;
  width: auto;
  height: auto;
  border: none;
}
@media (min-width: 75rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term > a::before {
    top: 50%;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term:not(.active) > a::before {
  color: #706351;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-filterbar .trex-filters-filterbar-wrapper .trex-filters-nav .trex-filters-nav-filter .trex-term.active > a::before {
  content: "\ea0f";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #013d00;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper {
  grid-row: 1;
  align-items: center;
  margin-bottom: 3rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper {
    margin-top: 0.375rem;
    margin-bottom: 1.5rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-status {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  position: static;
  margin-right: 0.625rem;
  margin-bottom: 0;
  color: #093a3d;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-status::before {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-status span::before {
  display: none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-status span::after {
  content: "Results";
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-reset {
  position: static;
  margin-bottom: 0;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-reset button {
  font-weight: var(--link-2-underline-font-weight);
  font-size: var(--link-2-underline-font-size);
  font-family: var(--link-2-underline-font-family);
  line-height: var(--link-2-underline-line-height);
  text-decoration: var(--link-2-underline-text-decoration);
  padding: 0;
  color: #013d00;
  background: transparent none;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper .trex-filters-reset button::after {
  content: "All";
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper.mobile-show {
  display: flex;
  padding: 0rem 1.25rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper.mobile-show {
    display: none;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper.mobile-show .trex-filters-status {
  flex-grow: 1;
  margin: 0;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper.desktop-show {
  display: none;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-clear-wrapper.desktop-show {
    display: flex;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper {
  padding-top: 0;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper {
    padding-top: 1.5rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result {
  padding: clamp(3.75rem, 1.75rem + 4.1666666667vw, 5.5rem) clamp(1.25rem, -7.6071428571rem + 18.4523809524vw, 9rem) clamp(4.5rem, 2.7857142857rem + 3.5714285714vw, 6rem) clamp(1.25rem, -7.6071428571rem + 18.4523809524vw, 9rem);
  text-align: center;
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result p {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
  color: #005f66;
  margin: 0;
  color: #005f66;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result p:first-child {
  margin-top: 0;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result p:last-child {
  margin-bottom: 0;
}
.bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result p {
  color: #faf4eb;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result__cta {
  padding-top: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .no-result__cta .c-btn {
  margin-right: 1rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content {
  row-gap: 1.25rem;
  max-width: 100%;
  padding: 0rem 1.25rem;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content {
    padding: 0;
    padding-top: 1.5rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card {
  padding: 1.25rem;
  border: 0.0625rem solid #eadfce;
  border-radius: 1.125rem;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card {
    padding: 1.25rem 0rem 1.25rem 1.25rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__wrapper {
    grid-template-columns: 1fr 2fr;
  }
}
@media (min-width: 75rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__wrapper {
    grid-template-columns: 24rem 2fr;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__left {
  height: 100%;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__right {
  padding-top: 2.25rem;
  padding-bottom: 1rem;
}
@media (min-width: 62rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__right {
    padding: 2rem 7rem 2.5rem 2rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn {
  width: 100%;
  margin-top: 0.5rem;
  margin-right: 0;
}
@media (min-width: 48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn {
    width: auto;
    margin-right: 0.75rem;
    margin-bottom: 0;
  }
}
@media (min-width: 62rem) and (max-width: 77.48rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn:first-child {
    margin-bottom: 0.75rem;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn.wp-block-button {
  margin-bottom: 0;
}
@media (max-width: 47.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn.wp-block-button {
    width: 100%;
  }
}
@media (max-width: 47.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__buttons .c-btn.wp-block-button .wp-block-button__link {
    width: 100%;
  }
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__image-wrapper {
  padding-bottom: 91.2%;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-content .program-card__image-wrapper img {
  width: 100%;
  border-radius: 1.125rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper {
  margin: 0;
  padding: 0 clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  margin-top: 3rem;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination::before, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination::after {
  transition: background-color 0.2s linear;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, a:focus .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus-visible, a:active .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination.hover, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:hover, a:hover .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus-visible, a:active .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:active, a:focus-visible .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus-visible, a:active .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-dark-inner .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination {
    width: 100%;
  }
}
.bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, a:focus .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:focus-visible, a:active .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination, .bg-white .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination[target=_blank]::after {
  display: none;
}
@media (min-width: 75rem) {
  .post-type-archive-tribe_programs .trex-filters-container .trex-filters-content-wrapper .trex-filters-pagination-wrapper .trex-filters-pagination {
    margin-top: 4.5rem;
  }
}

.single-post-content .programs-single + .block-cta-grid {
  padding-top: 0;
}
.single-post-content .block-trex-overview {
  padding-top: clamp(3rem, -2.7142857143rem + 11.9047619048vw, 8rem);
  padding-bottom: clamp(5.5rem, 2.6428571429rem + 5.9523809524vw, 8rem);
}
.single-post-content .block-trex-overview .block-content ul {
  list-style-type: none;
}
.single-post-content .block-trex-overview .block-content ul li {
  position: relative;
  margin-bottom: 2rem;
}
.single-post-content .block-trex-overview .block-content ul li::before {
  content: "\ea12";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: -0.25rem;
  left: -2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0.375rem;
  border-radius: 3.125rem;
  background-color: #f2ebf1;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left {
  margin-bottom: 3rem;
}
@media (min-width: 62rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left {
    padding-right: 7rem;
  }
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left .block-trex-hours-rates__pre-heading {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left .block-trex-hours-rates__pre-heading:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left .block-trex-hours-rates__pre-heading:last-child {
  margin-bottom: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__left .block-trex-hours-rates__title {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table-title {
  margin-bottom: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table {
  width: 100%;
  margin-bottom: 1.5rem;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table thead {
  display: none;
  margin-bottom: 0.75rem;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table thead {
    display: contents;
  }
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table thead .block-trex-hours-rates__head-cell {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.5rem;
  vertical-align: baseline;
  border-bottom: 0.0625rem solid #eadfce;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table thead .block-trex-hours-rates__head-cell:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table thead .block-trex-hours-rates__head-cell:last-child {
  margin-bottom: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item {
  display: block;
  margin-bottom: 0.75rem;
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item {
    display: table-row;
  }
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  display: inline-grid;
  padding: 1.25rem;
  padding-bottom: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell {
    display: table-cell;
    padding: 1.5rem;
  }
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:first-child {
    border-top-left-radius: 1.125rem;
    border-bottom-left-radius: 1.125rem;
  }
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:last-child {
    border-top-right-radius: 1.125rem;
    border-bottom-right-radius: 1.125rem;
  }
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell::before {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
  content: attr(data-label);
  width: 100%;
  color: #093a3d;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell::before:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell::before:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell::before {
    display: none;
  }
}
.single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 62rem) {
  .single-post-content .block-trex-hours-rates .container .block-trex-hours-rates__right .block-trex-hours-rates__tables .block-trex-hours-rates__table-wrapper .block-trex-hours-rates__table tbody .block-trex-hours-rates__item .block-trex-hours-rates__cell:last-child {
    margin-bottom: 0;
  }
}
.single-post-content .block-trex-hours {
  padding-bottom: clamp(6rem, 2.5714285714rem + 7.1428571429vw, 9rem);
}
.single-post-content .block-trex-hours .container {
  max-width: 54rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours .container {
    padding: 0;
  }
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item {
  margin-bottom: 0.75rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1.125rem;
  background-color: #faf4eb;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item {
    display: flex;
    flex-direction: row;
  }
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-time {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 1.25rem;
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-time:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-time:last-child {
  margin-bottom: 0;
}
@media (min-width: 48rem) {
  .single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-time {
    min-width: 12.375rem;
    margin-bottom: 0;
  }
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-detail {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-detail:first-child {
  margin-top: 0;
}
.single-post-content .block-trex-hours .container .block-trex-hours__content .block-trex-hours__item .block-trex-hours__item-detail:last-child {
  margin-bottom: 0;
}

.blog-post__back-button {
  position: relative;
  z-index: 99;
}
.blog-post__back-button .c-btn--back::after {
  transition: all 0.2s linear;
}
.blog-post__back-button .c-btn--back:hover {
  color: #013d00;
}
.blog-post__back-button .c-btn--back:hover::before {
  color: #013d00;
}
.blog-post__back-button .c-btn--back:hover::after {
  background-color: #013d00;
}

.blog-archive-hero.locations {
  padding: 0rem;
  background-color: #f5ede1;
}
.blog-archive-hero.locations .container {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.blog-archive-hero.locations .container .c-btn--back__wrapper {
  display: none !important;
}
.blog-archive-hero.locations .container h1 {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  color: #005f66;
  margin-top: 0rem;
  text-align: center;
}
.bg-dark .blog-archive-hero.locations .container h1 {
  color: #faf4eb;
}

.locations-grid {
  padding-top: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
  background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
}
.locations-grid .eight29-sidebar {
  width: 100% !important;
  margin-bottom: 0rem !important;
}
.locations-grid .eight29-sidebar .dropdown-container {
  margin-bottom: 0rem !important;
}
.locations-grid .eight29-filter-list.left-content {
  margin-bottom: 0rem;
}
.locations-grid .eight29-filter.filter-button-group .button-wrap {
  border-bottom: 0.0625rem solid #eadfce !important;
}
.locations-grid .eight29-filter.filter-button-group .button-wrap button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  margin-right: 2rem;
  margin-bottom: -0.0625rem;
  padding: 0.75rem 0;
  color: #013d00 !important;
  border-bottom: 0.125rem solid transparent;
  border-radius: 0;
  transition-timing-function: ease-out;
  transition-duration: 0.5s;
}
.locations-grid .eight29-filter.filter-button-group .button-wrap button:hover:not(.active) {
  border-bottom-color: #013d00;
}
.locations-grid .eight29-filter.filter-button-group .button-wrap button:hover:not(.active)::after {
  display: none;
}
.locations-grid .eight29-filter.filter-button-group .button-wrap button.active {
  position: relative;
  padding-left: 0.75rem;
  border-color: #9cd19b !important;
}
.locations-grid .eight29-posts-container {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem) !important;
}
.locations-grid .eight29-posts-container .eight29-posts {
  display: grid;
  transition-timing-function: ease-out;
  transition-duration: 0.5s;
}
@media (min-width: 48rem) {
  .locations-grid .eight29-posts-container .eight29-posts {
    display: block;
  }
}
@media (min-width: 62rem) {
  .locations-grid .eight29-posts-container .eight29-posts {
    display: grid;
  }
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card {
  display: flex;
}
@media (min-width: 48rem) {
  .locations-grid .eight29-posts-container .eight29-posts .eight29-post-card {
    display: block;
    float: left;
    width: 48%;
    margin: 0.625rem 0.3125rem;
  }
}
@media (min-width: 62rem) {
  .locations-grid .eight29-posts-container .eight29-posts .eight29-post-card {
    display: flex;
    width: 100%;
    margin: 0;
  }
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card:hover .image-wrapper img {
  transform: scale(1.05);
}
@media (max-width: 47.98rem) {
  .locations-grid .eight29-posts-container .eight29-posts .eight29-post-card.eight29-post {
    padding: 0.75rem;
  }
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-post-categories:empty {
  display: none;
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-featured-image .image-wrapper {
  padding-bottom: 63.7%;
}
@media (min-width: 62rem) {
  .locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-featured-image .image-wrapper {
    padding-bottom: 60%;
  }
}
@media (min-width: 90rem) {
  .locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-featured-image .image-wrapper {
    padding-bottom: 67%;
  }
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-featured-image .image-wrapper img {
  border-radius: 1.125rem;
}
.locations-grid .eight29-posts-container .eight29-posts .eight29-post-card .eight29-post-title {
  margin-bottom: 0 !important;
}
.locations-grid .eight29-posts-container .eight29-posts.loading-active {
  transition-timing-function: ease-in;
  transition-duration: 0.5s;
}
.locations-grid .eight29-posts .loader-image {
  display: none;
}
.locations-grid .eight29-posts.loading-active {
  display: block;
  opacity: 1;
}
.locations-grid .eight29-posts.loading-active .loader-image {
  position: relative;
  z-index: 9;
  display: block;
  height: 17.125rem;
}
.locations-grid .eight29-posts.loading-active .loader-image img {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
}
.locations-grid .eight29-posts.loading-active article,
.locations-grid .eight29-posts.loading-active + .load-more {
  display: none !important;
}

.single-locations #page [class*=hero].acf-block + .block-content-section.acf-block > .content-wrapper {
  max-width: 62rem;
  margin: 0 auto;
  padding-right: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
  padding-left: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
.single-locations #page [class*=hero].acf-block + .block-content-section.acf-block > .content-wrapper > * {
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.location-texonomy .container .c-btn--back__wrapper {
  margin: 0rem !important;
  padding-top: 1.5rem;
  padding-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.location-texonomy .container .c-btn--back__wrapper .c-btn--back {
  color: #000e0f;
}
.location-texonomy .container .c-btn--back__wrapper .c-btn--back::after {
  transition: all 0.2s linear;
}
.location-texonomy .container h1 {
  font-weight: var(--t1-font-weight);
  font-size: var(--t1-font-size);
  font-family: var(--t1-font-family);
  line-height: var(--t1-line-height);
  color: #005f66;
  padding-bottom: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
}
.bg-dark .location-texonomy .container h1 {
  color: #faf4eb;
}
.location-texonomy .eight29-post-card:hover .image-wrapper img {
  transform: scale(1.05);
}
.location-texonomy .eight29-post-card .eight29-featured-image .image-wrapper {
  padding-bottom: 63.7%;
}
@media (min-width: 62rem) {
  .location-texonomy .eight29-post-card .eight29-featured-image .image-wrapper {
    padding-bottom: 60%;
  }
}
@media (min-width: 90rem) {
  .location-texonomy .eight29-post-card .eight29-featured-image .image-wrapper {
    padding-bottom: 67%;
  }
}
.location-texonomy .eight29-post-card .eight29-featured-image .image-wrapper img {
  border-radius: 1.125rem;
}
.location-texonomy .eight29-post-card .eight29-post-body > .eight29-post-title {
  margin-bottom: 0 !important;
}
.location-texonomy .loader-image {
  display: none;
}

/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.wp-block-button {
  margin-top: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
  margin-bottom: clamp(1.5rem, 0.6428571429rem + 1.7857142857vw, 2.25rem);
  line-height: 0;
}
.wp-block-button--icon-left .wp-block-button__link::after {
  content: "";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--buttonIcon);
  order: -1;
  display: block !important;
  margin-right: 0.25rem;
  font-size: 1.25em;
}
.wp-block-button--icon-right .wp-block-button__link::after {
  content: "";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: var(--buttonIcon);
  display: block !important;
  margin-left: 0.25rem;
  font-size: 1.25em;
}
.wp-block-buttons .wp-block-button {
  margin-top: auto;
  margin-bottom: auto;
}
.wp-block-button.aligncenter {
  text-align: center;
}
.wp-block-button.alignleft {
  text-align: left;
}
.wp-block-button.alignright {
  text-align: right;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link::before, .wp-block-button:not([class*=is-style-]) .wp-block-button__link::after, .wp-block-button.is-style-primary .wp-block-button__link::before, .wp-block-button.is-style-primary .wp-block-button__link::after {
  transition: background-color 0.2s linear;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link, a:focus .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus, .wp-block-button.is-style-primary .wp-block-button__link, a:focus .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, .wp-block-button.is-style-primary .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, a:hover .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus-visible, a:active .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button:not([class*=is-style-]) .wp-block-button__link:active, a:focus-visible .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link:focus-visible, a:active .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
  background-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, .bg-dark .wp-block-button.is-style-primary .wp-block-button__link.hover, .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, a:hover .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, a:hover .bg-dark .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark .wp-block-button.is-style-primary .wp-block-button__link:hover, a:hover .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus-visible, a:active .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark .wp-block-button:not([class*=is-style-]) .wp-block-button__link:active, a:focus-visible .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus-visible, a:active .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-dark-inner .wp-block-button:not([class*=is-style-]) .wp-block-button__link:active, a:focus-visible .bg-dark .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark .wp-block-button.is-style-primary .wp-block-button__link:focus-visible, a:active .bg-dark .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark .wp-block-button.is-style-primary .wp-block-button__link:active, a:focus-visible .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link:focus-visible, a:active .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-primary .wp-block-button__link:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link {
    width: 100%;
  }
}
.bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, a:focus .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus, .bg-white .wp-block-button.is-style-primary .wp-block-button__link, a:focus .bg-white .wp-block-button.is-style-primary .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: #9cd19b;
}
@media (any-pointer) {
  .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link.hover, .bg-white .wp-block-button.is-style-primary .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:hover, a:hover .bg-white .wp-block-button.is-style-primary .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:focus-visible, a:active .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .bg-white .wp-block-button:not([class*=is-style-]) .wp-block-button__link:active, a:focus-visible .bg-white .wp-block-button.is-style-primary .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:focus-visible, a:active .bg-white .wp-block-button.is-style-primary .wp-block-button__link, .bg-white .wp-block-button.is-style-primary .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.wp-block-button:not([class*=is-style-]) .wp-block-button__link[target=_blank]::after, .wp-block-button.is-style-primary .wp-block-button__link[target=_blank]::after {
  display: none;
}
.wp-block-button.is-style-secondary .wp-block-button__link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.wp-block-button.is-style-secondary .wp-block-button__link::before, .wp-block-button.is-style-secondary .wp-block-button__link::after {
  transition: background-color 0.2s linear;
}
.wp-block-button.is-style-secondary .wp-block-button__link, a:focus .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .wp-block-button.is-style-secondary .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link:focus-visible, a:active .wp-block-button.is-style-secondary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link {
  color: #013d00 !important;
  border-color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link.hover, .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link.hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link:hover, a:hover .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link:hover {
    color: #013d00 !important;
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
}
a:focus-visible .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link:focus-visible, a:active .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark .wp-block-button.is-style-secondary .wp-block-button__link:active, a:focus-visible .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link:focus-visible, a:active .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-secondary .wp-block-button__link:active {
  color: #013d00 !important;
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
@media (max-width: 35.98rem) {
  .wp-block-button.is-style-secondary .wp-block-button__link {
    width: 100%;
  }
}
.bg-white .wp-block-button.is-style-secondary .wp-block-button__link, a:focus .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:focus {
  color: #013d00;
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
@media (any-pointer) {
  .bg-white .wp-block-button.is-style-secondary .wp-block-button__link.hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
@media (any-hover) {
  a:hover .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:hover {
    color: #013d00;
    border-color: #b8e5b8;
    background-color: #b8e5b8;
  }
}
a:focus-visible .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:focus-visible, a:active .bg-white .wp-block-button.is-style-secondary .wp-block-button__link, .bg-white .wp-block-button.is-style-secondary .wp-block-button__link:active {
  color: #013d00;
  border-color: #b8e5b8;
  background-color: #b8e5b8;
}
.wp-block-button.is-style-secondary .wp-block-button__link[target=_blank]::after {
  display: none;
}
.wp-block-button.is-style-tertiary {
  margin-top: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  margin-bottom: clamp(1.25rem, -0.75rem + 4.1666666667vw, 3rem);
}
.wp-block-button.is-style-tertiary:first-child {
  margin-top: 0;
}
.wp-block-button.is-style-tertiary:last-child {
  margin-bottom: 0;
}
.wp-block-buttons .wp-block-button.is-style-tertiary {
  margin-top: auto;
  margin-bottom: auto;
}
.wp-block-button.is-style-tertiary.wp-block-button--small .wp-block-button__link {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
}
.wp-block-button.is-style-tertiary .wp-block-button__link {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
}
.wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link::after {
  transition: background-color 0.2s linear;
}
.wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #013d00;
  background-color: transparent;
}
.wp-block-button.is-style-tertiary .wp-block-button__link::before, a:focus .wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .wp-block-button.is-style-tertiary .wp-block-button__link.hover {
    color: #013d00;
  }
  .wp-block-button.is-style-tertiary .wp-block-button__link.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button.is-style-tertiary .wp-block-button__link:hover {
    color: #013d00;
  }
  a:hover .wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible, a:active .wp-block-button.is-style-tertiary .wp-block-button__link, .wp-block-button.is-style-tertiary .wp-block-button__link:active {
  color: #013d00;
}
a:focus-visible .wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible::before, a:active .wp-block-button.is-style-tertiary .wp-block-button__link::before, .wp-block-button.is-style-tertiary .wp-block-button__link:active::before {
  background-color: #013d00;
}
.bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:focus, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #013d00 !important;
}
.bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link::before, a:focus .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link::before, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:focus::before, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link::before, a:focus .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link::before, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link.hover, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:hover, a:hover .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible, a:active .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark .wp-block-button.is-style-tertiary .wp-block-button__link:active, a:focus-visible .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible, a:active .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-tertiary .wp-block-button__link:active {
  color: #013d00 !important;
}
.wp-block-button.is-style-tertiary .wp-block-button__link::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .wp-block-button.is-style-tertiary .wp-block-button__link, a:focus .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link.hover {
    color: #013d00;
  }
  .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:hover {
    color: #013d00;
  }
  a:hover .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link::before, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible, a:active .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:active {
  color: #013d00;
}
a:focus-visible .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link::before, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:focus-visible::before, a:active .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link::before, .bg-white .wp-block-button.is-style-tertiary .wp-block-button__link:active::before {
  background-color: #013d00;
}
@media (max-width: 35.98rem) {
  .wp-block-button:not([class*=is-style-]), .wp-block-button.is-style-primary, .wp-block-button.is-style-secondary {
    width: 100%;
  }
}
@media (max-width: 35.98rem) {
  .wp-block-button:not([class*=is-style-]) .wp-block-button__link, .wp-block-button.is-style-primary .wp-block-button__link, .wp-block-button.is-style-secondary .wp-block-button__link {
    width: 100%;
  }
}
.wp-block-button:not([class*=is-style-]).wp-block-button--icon-left .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--icon-left .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--icon-left .wp-block-button__link {
  padding-left: 1.625rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--icon-right .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--icon-right .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--icon-right .wp-block-button__link {
  padding-right: 1.625rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--small .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--small .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--small .wp-block-button__link {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 1rem;
  border-radius: 0.75rem;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--hidden-label .wp-block-button__link, .wp-block-button.is-style-primary.wp-block-button--hidden-label .wp-block-button__link, .wp-block-button.is-style-secondary.wp-block-button--hidden-label .wp-block-button__link {
  width: 3rem;
  height: 3rem;
  padding: 0;
  font-size: 0;
  border-radius: 50%;
}
.wp-block-button:not([class*=is-style-]).wp-block-button--hidden-label .wp-block-button__link::after, .wp-block-button.is-style-primary.wp-block-button--hidden-label .wp-block-button__link::after, .wp-block-button.is-style-secondary.wp-block-button--hidden-label .wp-block-button__link::after {
  margin: auto;
  font-size: 1.25rem;
}
.wp-block-button.is-style-social .wp-block-button__link {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  font-size: 0;
  line-height: 0;
  text-align: center;
  border-radius: 100rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s linear, background-color 0.2s linear;
}
.wp-block-button.is-style-social .wp-block-button__link, a:focus .wp-block-button.is-style-social .wp-block-button__link, .wp-block-button.is-style-social .wp-block-button__link:focus {
  color: var(--blockColor, #093a3d);
  border: 0.125rem solid #9cd19b;
  background-color: transparent;
}
.wp-block-button.is-style-social .wp-block-button__link::after, a:focus .wp-block-button.is-style-social .wp-block-button__link::after, .wp-block-button.is-style-social .wp-block-button__link:focus::after {
  color: #013d00;
}
@media (any-pointer) {
  .wp-block-button.is-style-social .wp-block-button__link.hover {
    border-color: #9cd19b;
    background-color: #9cd19b;
  }
}
@media (any-hover) {
  a:hover .wp-block-button.is-style-social .wp-block-button__link, .wp-block-button.is-style-social .wp-block-button__link:hover {
    border-color: #9cd19b;
    background-color: #9cd19b;
  }
}
a:focus-visible .wp-block-button.is-style-social .wp-block-button__link, .wp-block-button.is-style-social .wp-block-button__link:focus-visible, a:active .wp-block-button.is-style-social .wp-block-button__link, .wp-block-button.is-style-social .wp-block-button__link:active {
  border-color: #9cd19b;
  background-color: #9cd19b;
}
.bg-dark .wp-block-button.is-style-social .wp-block-button__link, a:focus .bg-dark .wp-block-button.is-style-social .wp-block-button__link, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:focus, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link, a:focus .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:focus {
  border-color: #fffbf5 !important;
}
.bg-dark .wp-block-button.is-style-social .wp-block-button__link::after, a:focus .bg-dark .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:focus::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link::after, a:focus .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:focus::after {
  color: #fffbf5 !important;
}
@media (any-pointer) {
  .bg-dark .wp-block-button.is-style-social .wp-block-button__link.hover, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link.hover {
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
  .bg-dark .wp-block-button.is-style-social .wp-block-button__link.hover::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link.hover::after {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .wp-block-button.is-style-social .wp-block-button__link, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:hover, a:hover .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:hover {
    border-color: #b8e5b8 !important;
    background-color: #b8e5b8 !important;
  }
  a:hover .bg-dark .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:hover::after, a:hover .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:hover::after {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .wp-block-button.is-style-social .wp-block-button__link, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:focus-visible, a:active .bg-dark .wp-block-button.is-style-social .wp-block-button__link, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:active, a:focus-visible .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:focus-visible, a:active .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:active {
  border-color: #b8e5b8 !important;
  background-color: #b8e5b8 !important;
}
a:focus-visible .bg-dark .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:focus-visible::after, a:active .bg-dark .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark .wp-block-button.is-style-social .wp-block-button__link:active::after, a:focus-visible .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:focus-visible::after, a:active .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link::after, .bg-dark-inner .wp-block-button.is-style-social .wp-block-button__link:active::after {
  color: #013d00 !important;
}
.wp-block-button.is-style-social .wp-block-button__link::before, .wp-block-button.is-style-social .wp-block-button__link::after {
  transition: color 0.2s linear;
}
.wp-block-button.is-style-social .wp-block-button__link::after {
  margin: 0;
  font-size: 1.5rem;
  transform: none;
}
.block-editor-block-list__block .wp-block-button.is-style-social .wp-block-button__link {
  font-size: 0.875rem;
  line-height: 1.4;
}
.block-editor-block-list__block .wp-block-button.is-style-social .wp-block-button__link::before {
  content: "Screen Reader Label:" !important;
  display: block !important;
  font-size: 0.625rem;
}
.wp-block-button.is-style-social.wp-block-button--icon-left .wp-block-button__link::before {
  position: relative;
  left: auto;
  bottom: auto;
  content: var(--buttonIcon);
  width: auto;
  height: auto;
  background-color: transparent;
}
.wp-block-button.is-style-social.wp-block-button--icon-right .wp-block-button__link::before {
  display: none;
}
.wp-block-button__link.aligncenter {
  text-align: center;
}
.wp-block-button__link.alignleft {
  text-align: left;
}
.wp-block-button__link.alignright {
  text-align: right;
}

.blog-category-layout .eight29-posts,
.block-blog-cards-grid .eight29-posts {
  grid-row-gap: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  margin-bottom: 0;
}
@media (min-width: 48rem) and (max-width: 74.98rem) {
  .blog-category-layout .eight29-posts,
.block-blog-cards-grid .eight29-posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-category-layout .eight29-post,
.block-blog-cards-grid .eight29-post {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  padding: 0.75rem 0.75rem 1rem;
  color: var(--blockColor, #093a3d);
  border: 1px solid #eadfce;
  border-radius: 1.125rem;
  background: #fffbf5;
}
.blog-category-layout .eight29-post:hover, .blog-category-layout .eight29-post:focus,
.block-blog-cards-grid .eight29-post:hover,
.block-blog-cards-grid .eight29-post:focus {
  color: var(--blockHoverColor, #b8e5b8);
}
.blog-category-layout .eight29-post:hover .eight29-featured-image img,
.block-blog-cards-grid .eight29-post:hover .eight29-featured-image img {
  transform: scale(1.1);
}
.blog-category-layout .eight29-post .eight29-post-body,
.block-blog-cards-grid .eight29-post .eight29-post-body {
  justify-content: flex-end;
}
.blog-category-layout .eight29-post .eight29-post-categories,
.block-blog-cards-grid .eight29-post .eight29-post-categories {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  position: absolute;
  top: 0.75rem;
  left: 0.625rem;
  z-index: 2;
  border-radius: 0 6.25rem 6.25rem 0;
  background: #fffbf5;
}
.blog-category-layout .eight29-post .eight29-post-categories::before, .blog-category-layout .eight29-post .eight29-post-categories::after,
.block-blog-cards-grid .eight29-post .eight29-post-categories::before,
.block-blog-cards-grid .eight29-post .eight29-post-categories::after {
  position: absolute;
  content: "";
}
.blog-category-layout .eight29-post .eight29-post-categories::before,
.block-blog-cards-grid .eight29-post .eight29-post-categories::before {
  --leftSize: 18px;
  left: 0.125rem;
  bottom: calc(var(--leftSize) * -1);
  width: var(--leftSize);
  height: var(--leftSize);
  background-image: radial-gradient(circle at 100% 100%, transparent var(--leftSize), #fffbf5 calc(var(--leftSize) + 1px));
}
.blog-category-layout .eight29-post .eight29-post-categories::after,
.block-blog-cards-grid .eight29-post .eight29-post-categories::after {
  --rtSize: 16px;
  top: 0;
  right: calc(var(--rtSize) * -1);
  width: calc(var(--rtSize) * 2);
  height: var(--rtSize);
  background-image: radial-gradient(circle at 100% 100%, transparent var(--rtSize), #fffbf5 calc(var(--rtSize) + 1px));
}
.blog-category-layout .eight29-post .eight29-post-categories a,
.block-blog-cards-grid .eight29-post .eight29-post-categories a {
  position: relative;
  z-index: 2;
  display: block;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  color: #b04900;
  border-radius: 6.25rem;
}
.blog-category-layout .eight29-post .eight29-post-categories a:hover,
.block-blog-cards-grid .eight29-post .eight29-post-categories a:hover {
  color: #b04900;
  text-decoration: none;
  background-color: #f5e8d5;
}
.blog-category-layout .eight29-post .eight29-featured-image,
.block-blog-cards-grid .eight29-post .eight29-featured-image {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  min-height: clamp(11.75rem, 13.3591954023rem + -1.5325670498vw, 13rem);
  margin-bottom: 1rem;
  padding-bottom: 55.76923%;
  border-radius: 1.125rem;
  overflow: hidden;
}
.blog-category-layout .eight29-post .eight29-featured-image img,
.block-blog-cards-grid .eight29-post .eight29-featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1);
  object-fit: cover;
  transition: transform 0.2s linear;
}
.blog-category-layout .eight29-post .eight29-post-title,
.block-blog-cards-grid .eight29-post .eight29-post-title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.75rem !important;
}
.blog-category-layout .eight29-post .eight29-post-title:first-child,
.block-blog-cards-grid .eight29-post .eight29-post-title:first-child {
  margin-top: 0;
}
.blog-category-layout .eight29-post .eight29-post-title:last-child,
.block-blog-cards-grid .eight29-post .eight29-post-title:last-child {
  margin-bottom: 0;
}
.blog-category-layout .eight29-post .eight29-post-title a,
.block-blog-cards-grid .eight29-post .eight29-post-title a {
  position: relative;
  display: inline-block;
  color: #093a3d;
}
.blog-category-layout .eight29-post .eight29-post-title a::after,
.block-blog-cards-grid .eight29-post .eight29-post-title a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.blog-category-layout .eight29-post .eight29-post-title a:hover,
.block-blog-cards-grid .eight29-post .eight29-post-title a:hover {
  color: #013d00;
  text-decoration: none;
}
.blog-category-layout .eight29-post .eight29-post-title a:hover::after,
.block-blog-cards-grid .eight29-post .eight29-post-title a:hover::after {
  background-color: #9cd19b;
}
.blog-category-layout .eight29-post .eight29-post-details,
.block-blog-cards-grid .eight29-post .eight29-post-details {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
  margin-top: auto;
}
.blog-category-layout .eight29-post .eight29-post-details a,
.block-blog-cards-grid .eight29-post .eight29-post-details a {
  color: #093a3d;
}
.blog-category-layout .c-btn-wrapper .c-btn,
.block-blog-cards-grid .c-btn-wrapper .c-btn {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  width: 100%;
  height: 3rem;
  min-width: 9.1875rem;
  margin-top: 4.5rem;
  padding: 0.625rem 2rem;
  color: #013d00;
  border: 2px solid #9cd19b;
  border-radius: 1.125rem;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
@media (min-width: 48rem) {
  .blog-category-layout .c-btn-wrapper .c-btn,
.block-blog-cards-grid .c-btn-wrapper .c-btn {
    width: auto;
  }
}
.blog-category-layout .c-btn-wrapper .c-btn:hover,
.block-blog-cards-grid .c-btn-wrapper .c-btn:hover {
  border-color: #9cd19b;
  background-color: #9cd19b;
}
.blog-category-layout .eight29-filter.filter-button-group,
.block-blog-cards-grid .eight29-filter.filter-button-group {
  max-width: none;
}
.blog-category-layout .eight29-filter.filter-button-group .button-wrap,
.block-blog-cards-grid .eight29-filter.filter-button-group .button-wrap {
  display: flex;
  text-align: left;
  border-bottom: none;
}
.blog-category-layout .eight29-filter.filter-button-group button,
.block-blog-cards-grid .eight29-filter.filter-button-group button {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  position: relative;
  margin: 0;
  padding: 1rem 0.75rem;
  color: #013d00 !important;
  white-space: pre;
  text-align: left;
  word-break: normal;
  border: none;
  border-bottom: 2px solid #eadfce;
  background: transparent;
}
.blog-category-layout .eight29-filter.filter-button-group button::after,
.block-blog-cards-grid .eight29-filter.filter-button-group button::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 100%;
  background: transparent;
  transform: translateY(-50%);
}
.blog-category-layout .eight29-filter.filter-button-group button:hover,
.block-blog-cards-grid .eight29-filter.filter-button-group button:hover {
  text-decoration: none;
}
.blog-category-layout .eight29-filter.filter-button-group button:hover, .blog-category-layout .eight29-filter.filter-button-group button.active,
.block-blog-cards-grid .eight29-filter.filter-button-group button:hover,
.block-blog-cards-grid .eight29-filter.filter-button-group button.active {
  color: inherit;
  border-color: #9cd19b;
}
.blog-category-layout .eight29-filter.filter-button-group button:hover::after, .blog-category-layout .eight29-filter.filter-button-group button.active::after,
.block-blog-cards-grid .eight29-filter.filter-button-group button:hover::after,
.block-blog-cards-grid .eight29-filter.filter-button-group button.active::after {
  background-color: #9cd19b;
}
.blog-category-layout .eight29-filter .accordion-select > div,
.block-blog-cards-grid .eight29-filter .accordion-select > div {
  z-index: 2;
}

.block-blog-cards-grid {
  position: relative;
  background-color: #f5ede1;
}
.block-blog-cards-grid::after {
  background: linear-gradient(180deg, #f5ede1 0%, #fffbf5 100%);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 76.3%;
}
.block-blog-cards-grid .eight29-app {
  position: relative;
  z-index: 9;
}
.block-blog-cards-grid .eight29-posts {
  grid-row-gap: 3rem;
}

.eight29-sidebar .eight29-filter-list.right-content {
  margin-bottom: 0;
}
.eight29-sidebar .eight29-filter .dropdown-container {
  position: relative;
  margin-bottom: 3rem;
  border: none;
  background: none;
}
.eight29-sidebar .eight29-filter .dropdown-container .dropdown-current {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
  border: none;
  border-radius: 1.125rem;
  background: #fffbf5;
}
.eight29-sidebar .eight29-filter .dropdown-container .dropdown-current + div {
  border-radius: 0 0 1.125rem 1.125rem;
  overflow: hidden;
}
.eight29-sidebar .eight29-filter .dropdown-container .dropdown-current + div .simplebar-content-wrapper {
  overflow: auto !important;
}
.eight29-sidebar .eight29-filter .dropdown-container.open .dropdown-current {
  color: #093a3d;
  border-radius: 1.125rem 1.125rem 0 0;
}
@media (max-width: 61.98rem) {
  .eight29-sidebar #filter-category-input {
    padding: 0 1rem 2rem;
    border-radius: 0 0 1.125rem 1.125rem;
    background: #fffbf5;
  }
}
.eight29-sidebar #filter-category-input .dropdown-current {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  position: relative;
  margin: 0;
  padding: 1rem 0.75rem;
  color: #013d00;
  white-space: pre;
  text-align: left;
  word-break: normal;
  border: none;
  border-bottom: 2px solid #eadfce;
  background: transparent;
}
.eight29-sidebar #filter-category-input .dropdown-current::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 100%;
  background: transparent;
  transform: translateY(-50%);
}
.eight29-sidebar #filter-category-input .dropdown-current:hover {
  text-decoration: none;
}
.eight29-sidebar #filter-category-input .dropdown-current.selected {
  color: inherit;
  border-color: #9cd19b;
}
.eight29-sidebar #filter-category-input .dropdown-current.selected::after {
  background-color: #9cd19b;
}
.eight29-sidebar #filter-category-input.dropdown-list li {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
  border-bottom: 0.125rem solid #eadfce;
}
.eight29-sidebar #filter-category-input.dropdown-list li.selected {
  position: relative;
  border-bottom: 2px solid #9cd19b;
}
.eight29-sidebar #filter-category-input.dropdown-list li.selected::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 3.125rem;
  background-color: #9cd19b;
}
.eight29-sidebar #filter-category-input .eight29-category-children,
.eight29-sidebar #filter-category-input .child-toggle {
  display: none !important;
}

@media (min-width: 62rem) {
  .sidebar-left .eight29-sidebar {
    margin: 0 8.9375rem 0 0 !important;
  }

  .sidebar-right .eight29-sidebar {
    margin: 0 0 0 8.9375rem !important;
  }

  .eight29-sidebar {
    width: 12.0625rem !important;
  }
  .eight29-sidebar .eight29-filter-group {
    width: 100% !important;
  }
}
@media (max-width: 74.98rem) {
  .locations-grid .eight29-posts-container {
    padding-top: 0;
  }
}

.blog-category-layout .sidebar-top {
  flex-wrap: nowrap;
  margin-bottom: 0;
}
.blog-category-layout .eight29-sidebar {
  margin-bottom: 0;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container {
  border: 0;
  border-radius: 1.125rem;
  background-color: #fffbf5;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container.open {
  position: relative;
  padding-bottom: 2rem;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container.open .simplebar-content-wrapper {
  padding-right: 1rem;
  padding-left: 1rem;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container button.dropdown-current {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  padding: 0.75rem 1rem;
  border-bottom: 0rem;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container ul.dropdown-list li {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  color: #013d00;
  border-bottom: 0.125rem solid #eadfce;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container ul.dropdown-list li.selected {
  position: relative;
  border-bottom: 2px solid #9cd19b;
}
.blog-category-layout .eight29-sidebar .eight29-sidebar-content .right-content .filter-options .dropdown-container ul.dropdown-list li.selected::before {
  position: absolute;
  left: 0;
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 3.125rem;
  background-color: #9cd19b;
}
.blog-category-layout .eight29-app .sidebar-left:first-child {
  margin-bottom: 0;
}

.block-blog-cards-title {
  padding-top: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  padding-bottom: clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
  background-color: #f5ede1;
}

.block-blog-cards-grid {
  padding-top: 0 !important;
}

.c-btn--back__wrapper {
  display: block;
  margin: 0 0 clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}
.c-btn--back__wrapper .c-btn--back {
  position: relative;
  display: inline-block;
  padding-bottom: 0.125rem;
  color: #013d00;
}
.c-btn--back__wrapper .c-btn--back::before {
  position: relative;
  top: 0.0625rem;
  margin-right: 0.25rem;
  color: #093a3d;
  font-size: 0.875rem;
}
.c-btn--back__wrapper .c-btn--back::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
  background: #9cd19b;
}

.blog-archive-hero {
  padding: 1.5rem 0 clamp(4rem, 1.7142857143rem + 4.7619047619vw, 6rem);
}
.blog-archive-hero .blog-archive-hero__wrap h1 {
  padding-bottom: 0;
  text-transform: capitalize;
}
.blog-archive-hero .blog-archive-hero__wrap .c-btn--back__wrapper .c-btn--back {
  transition: 0.2s linear;
}
.blog-archive-hero .blog-archive-hero__wrap .c-btn--back__wrapper .c-btn--back:hover::after {
  background-color: #013d00;
}

.blog-archive-hero.location-texonomy {
  padding-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
}

.blog-post__hero h1 {
  max-width: 54rem;
  margin: 0 auto 2rem;
  text-align: center;
}
.blog-post__hero--team-header {
  width: 100% !important;
  max-width: 90rem !important;
  padding-top: 1.5rem !important;
  padding-right: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
  padding-left: clamp(1.25rem, -1.8928571429rem + 6.5476190476vw, 4rem);
}
.blog-post__hero--team-header + div.acf-block.acf-inline-block {
  padding-top: 0;
}
.blog-post__back-button .c-btn--back__wrapper {
  margin: 0 0 clamp(3rem, 1.1428571429rem + 3.869047619vw, 4.625rem);
}
.blog-post__profile-meta {
  display: inline-block;
  width: 100%;
  margin-bottom: -0.5rem;
  text-align: center;
  column-gap: 0.5rem;
}
.blog-post__profile-meta + h1 {
  margin-top: 1rem;
}
.blog-post__profile-meta .people-icon-list-items {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-post__profile-meta .people-icon-list-items + p {
  display: inline-block;
  margin-top: 0.5rem;
}
.blog-post__profile-meta .people-icon-list-items .people-icon-list-item {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.blog-post__profile-meta .people-icon-list-items a {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  display: block;
  padding: 0.5rem 0.75rem;
  color: #b04900;
  text-decoration: none;
  border: 0.125rem solid transparent;
  border-radius: 1.125rem;
  background-color: #f5e8d5;
  transition: 0.2s linear;
}
.blog-post__profile-meta .people-icon-list-items a:hover {
  border-color: #f5e8d5;
  background-color: transparent;
}
.blog-post__profile-meta p {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  color: #706351;
}
.blog-post__author-date {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  color: #093a3d;
  text-align: center;
  column-gap: 1.875rem;
}
.blog-post__date {
  position: relative;
}
.blog-post__date::after {
  position: absolute;
  top: 0;
  left: -0.9375rem;
  content: "";
  width: 0.0625rem;
  height: 1.25rem;
  background-color: #ccbca5;
}
.blog-post__profile-image,
.blog-post .wp-block-image {
  margin-bottom: clamp(3rem, 1.2857142857rem + 3.5714285714vw, 4.5rem);
  border-radius: 1.125rem;
  overflow: hidden;
}
.blog-post__profile-image img,
.blog-post .wp-block-image img {
  width: 100%;
}

.content-wrapper .wp-block-image {
  margin-bottom: clamp(4rem, 3.4285714286rem + 1.1904761905vw, 4.5rem);
  border-radius: 1.125rem;
  overflow: hidden;
}
.content-wrapper .wp-block-image img {
  width: 100%;
}

.no-results .error-in-search {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
  padding: 3.75rem 0 4.5rem;
  text-align: center;
}
@media (min-width: 62rem) {
  .no-results .error-in-search {
    padding: 5.5rem 0 6rem;
  }
}
.no-results .error-in-search h1 {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  color: #005f66;
  margin-bottom: 1.5rem;
}
.bg-dark .no-results .error-in-search h1 {
  color: #faf4eb;
}
@media (min-width: 62rem) {
  .no-results .error-in-search h1 {
    margin-bottom: 2.25rem;
  }
}
.no-results .error-in-search .c-btn-wrapper {
  display: block;
  margin: 0;
}
.no-results .error-in-search .c-btn-wrapper button,
.no-results .error-in-search .c-btn-wrapper a {
  font-weight: var(--link-1-font-weight);
  font-size: var(--link-1-font-size);
  font-family: var(--link-1-font-family);
  line-height: var(--link-1-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.625rem 2rem;
  text-align: center;
  border-radius: 1.125rem;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  position: relative;
  padding: 0 !important;
  border: none;
  height: auto;
  min-width: auto;
  margin: 0 0.5rem;
  text-transform: capitalize;
  text-decoration: none;
}
.no-results .error-in-search .c-btn-wrapper button::before, .no-results .error-in-search .c-btn-wrapper button::after,
.no-results .error-in-search .c-btn-wrapper a::before,
.no-results .error-in-search .c-btn-wrapper a::after {
  transition: background-color 0.2s linear;
}
.no-results .error-in-search .c-btn-wrapper button, a:focus .no-results .error-in-search .c-btn-wrapper button, .no-results .error-in-search .c-btn-wrapper button:focus,
.no-results .error-in-search .c-btn-wrapper a,
a:focus .no-results .error-in-search .c-btn-wrapper a,
.no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00;
  background-color: transparent;
}
.no-results .error-in-search .c-btn-wrapper button::before, a:focus .no-results .error-in-search .c-btn-wrapper button::before, .no-results .error-in-search .c-btn-wrapper button:focus::before,
.no-results .error-in-search .c-btn-wrapper a::before,
a:focus .no-results .error-in-search .c-btn-wrapper a::before,
.no-results .error-in-search .c-btn-wrapper a:focus::before {
  background-color: #9cd19b;
}
@media (any-pointer) {
  .no-results .error-in-search .c-btn-wrapper button.hover,
.no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00;
  }
  .no-results .error-in-search .c-btn-wrapper button.hover::before,
.no-results .error-in-search .c-btn-wrapper a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .no-results .error-in-search .c-btn-wrapper button, .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .no-results .error-in-search .c-btn-wrapper a,
.no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00;
  }
  a:hover .no-results .error-in-search .c-btn-wrapper button::before, .no-results .error-in-search .c-btn-wrapper button:hover::before,
a:hover .no-results .error-in-search .c-btn-wrapper a::before,
.no-results .error-in-search .c-btn-wrapper a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .no-results .error-in-search .c-btn-wrapper button, .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .no-results .error-in-search .c-btn-wrapper button, .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .no-results .error-in-search .c-btn-wrapper a,
.no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .no-results .error-in-search .c-btn-wrapper a,
.no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00;
}
a:focus-visible .no-results .error-in-search .c-btn-wrapper button::before, .no-results .error-in-search .c-btn-wrapper button:focus-visible::before, a:active .no-results .error-in-search .c-btn-wrapper button::before, .no-results .error-in-search .c-btn-wrapper button:active::before,
a:focus-visible .no-results .error-in-search .c-btn-wrapper a::before,
.no-results .error-in-search .c-btn-wrapper a:focus-visible::before,
a:active .no-results .error-in-search .c-btn-wrapper a::before,
.no-results .error-in-search .c-btn-wrapper a:active::before {
  background-color: #013d00;
}
.bg-dark .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-dark .no-results .error-in-search .c-btn-wrapper button, .bg-dark .no-results .error-in-search .c-btn-wrapper button:focus, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button:focus,
.bg-dark .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-dark .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .no-results .error-in-search .c-btn-wrapper a:focus,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-dark-inner .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00 !important;
}
.bg-dark .no-results .error-in-search .c-btn-wrapper button::before, a:focus .bg-dark .no-results .error-in-search .c-btn-wrapper button::before, .bg-dark .no-results .error-in-search .c-btn-wrapper button:focus::before, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button::before, a:focus .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button::before, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button:focus::before,
.bg-dark .no-results .error-in-search .c-btn-wrapper a::before,
a:focus .bg-dark .no-results .error-in-search .c-btn-wrapper a::before,
.bg-dark .no-results .error-in-search .c-btn-wrapper a:focus::before,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a::before,
a:focus .bg-dark-inner .no-results .error-in-search .c-btn-wrapper a::before,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a:focus::before {
  background-color: #013d00 !important;
}
@media (any-pointer) {
  .bg-dark .no-results .error-in-search .c-btn-wrapper button.hover, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button.hover,
.bg-dark .no-results .error-in-search .c-btn-wrapper a.hover,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00 !important;
  }
}
@media (any-hover) {
  a:hover .bg-dark .no-results .error-in-search .c-btn-wrapper button, .bg-dark .no-results .error-in-search .c-btn-wrapper button:hover, a:hover .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .bg-dark .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .no-results .error-in-search .c-btn-wrapper a:hover,
a:hover .bg-dark-inner .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00 !important;
  }
}
a:focus-visible .bg-dark .no-results .error-in-search .c-btn-wrapper button, .bg-dark .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-dark .no-results .error-in-search .c-btn-wrapper button, .bg-dark .no-results .error-in-search .c-btn-wrapper button:active, a:focus-visible .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button, .bg-dark-inner .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .bg-dark .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-dark .no-results .error-in-search .c-btn-wrapper a,
.bg-dark .no-results .error-in-search .c-btn-wrapper a:active,
a:focus-visible .bg-dark-inner .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-dark-inner .no-results .error-in-search .c-btn-wrapper a,
.bg-dark-inner .no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00 !important;
}
.no-results .error-in-search .c-btn-wrapper button::before,
.no-results .error-in-search .c-btn-wrapper a::before {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 100%;
  height: 0.125rem;
}
.bg-white .no-results .error-in-search .c-btn-wrapper button, a:focus .bg-white .no-results .error-in-search .c-btn-wrapper button, .bg-white .no-results .error-in-search .c-btn-wrapper button:focus,
.bg-white .no-results .error-in-search .c-btn-wrapper a,
a:focus .bg-white .no-results .error-in-search .c-btn-wrapper a,
.bg-white .no-results .error-in-search .c-btn-wrapper a:focus {
  color: #013d00;
}
@media (any-pointer) {
  .bg-white .no-results .error-in-search .c-btn-wrapper button.hover,
.bg-white .no-results .error-in-search .c-btn-wrapper a.hover {
    color: #013d00;
  }
  .bg-white .no-results .error-in-search .c-btn-wrapper button.hover::before,
.bg-white .no-results .error-in-search .c-btn-wrapper a.hover::before {
    background-color: #013d00;
  }
}
@media (any-hover) {
  a:hover .bg-white .no-results .error-in-search .c-btn-wrapper button, .bg-white .no-results .error-in-search .c-btn-wrapper button:hover,
a:hover .bg-white .no-results .error-in-search .c-btn-wrapper a,
.bg-white .no-results .error-in-search .c-btn-wrapper a:hover {
    color: #013d00;
  }
  a:hover .bg-white .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .no-results .error-in-search .c-btn-wrapper button:hover::before,
a:hover .bg-white .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .no-results .error-in-search .c-btn-wrapper a:hover::before {
    background-color: #013d00;
  }
}
a:focus-visible .bg-white .no-results .error-in-search .c-btn-wrapper button, .bg-white .no-results .error-in-search .c-btn-wrapper button:focus-visible, a:active .bg-white .no-results .error-in-search .c-btn-wrapper button, .bg-white .no-results .error-in-search .c-btn-wrapper button:active,
a:focus-visible .bg-white .no-results .error-in-search .c-btn-wrapper a,
.bg-white .no-results .error-in-search .c-btn-wrapper a:focus-visible,
a:active .bg-white .no-results .error-in-search .c-btn-wrapper a,
.bg-white .no-results .error-in-search .c-btn-wrapper a:active {
  color: #013d00;
}
a:focus-visible .bg-white .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .no-results .error-in-search .c-btn-wrapper button:focus-visible::before, a:active .bg-white .no-results .error-in-search .c-btn-wrapper button::before, .bg-white .no-results .error-in-search .c-btn-wrapper button:active::before,
a:focus-visible .bg-white .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .no-results .error-in-search .c-btn-wrapper a:focus-visible::before,
a:active .bg-white .no-results .error-in-search .c-btn-wrapper a::before,
.bg-white .no-results .error-in-search .c-btn-wrapper a:active::before {
  background-color: #013d00;
}

.home .acf-block.block-announcements.bg-neutral-11 {
  padding-bottom: 4rem;
}