@charset "UTF-8";
/*!
Theme Name: Clean Earth Challenge 2023
Theme URI: https://openbox9.com
Author: Openbox9 (Joe Tan)

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
:root {
  --font-base-size: 18px;
  --wrap-gutter: calc((100vw - 1400px) / 2);
  --gutter: calc((100vw - 1400px) / 2);
  --gutter-left: calc((100vw - 1400px) / 2);
  --gutter-right: calc((100vw - 1400px) / 2);
  --block-margin: 6rem;
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
}
@media screen and (max-width: 1544.8275862069px) {
  :root {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
    --gutter: 4.6875vw;
    --wrap-gutter: 4.6875vw;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --block-margin: 5.1rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --block-margin: 4.5rem;
  }
}

@keyframes loading {
  100% {
    background-position: 0px -570px;
  }
}
@keyframes loop {
  from {
    transform: translate(0%, 0%);
  }
  to {
    transform: translate(-50%, 0%);
  }
}
@keyframes pulse {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
/*
Author: Joe Tan (joetan54@gmail.com)

Copyright (c) 2018 Joe Tan
THIS CODE MAY NOT BE REDISTRIBUTED WITHOUT EXPLICIT PERMISSION
*/
/*
@mixin icon-char($what) {
    @if map-has-key($icons, $what) {

        content: make-icon(map-get($icons, $what));
    }
    @else {
        content: '???';
    }

}
@mixin icon-font($what) {
    font-family: $font-icon;
    font-weight: normal;
    text-rendering: auto; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
    text-transform:none !important;
    @if map-has-key($icons, $what) {
        @include icon-char($what);
    }
}
*/
xmp {
  margin: 0 0 1em;
  background: yellow;
  color: #000;
  overflow: hidden;
  font-size: 10px;
}

img.sample {
  background: #00aaee;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: Figtree, sans-serif;
  font-size: var(--font-base-size, 18px);
  font-weight: 300;
  line-height: 1.5;
  color: #212533;
  text-align: left;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

html {
  overflow-y: scroll;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  overflow-anchor: none;
}
body.rtl {
  direction: rtl;
  unicode-bidi: embed;
  text-align: right;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

em strong,
strong em {
  font-weight: 700;
  font-style: italic;
}

.hidden {
  display: block;
  position: absolute !important;
  top: -10000px !important;
  height: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

.entity {
  font-family: "Lucida Sans Unicode", "Arial Unicode MS", Arial, Helvetica, sans-serif;
}

.text-sans-serif {
  font-family: Figtree, sans-serif;
}

.text-serif {
  font-family: Georgia, serif;
}

.text-headline {
  font-family: Figtree, sans-serif;
}

.text-cursive {
  font-family: cursive;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

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

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

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

/*
.text-white         { color: $color-white;}
.text-black         { color: $color-black;}
.text-red           { color: $color-red;}
.text-green         { color: $color-green;}
.text-blue          { color: $color-blue;}
.text-light-blue    { color: $color-light-blue;}
.text-orange        { color: $color-orange;}
.text-yellow        { color: $color-yellow;}
.text-navy-blue     { color: $color-navy-blue;}
.text-teal          { color: $color-teal;}
.text-purple        { color: $color-purple;}
.text-gray          { color: $color-gray;}
.text-silver        { color: $color-silver;}
.text-dark-gray     { color: $color-dark-gray;}
*/
.text-nowrap {
  white-space: nowrap;
}

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

img[align=left],
img.alignleft {
  margin: 0 15px 15px 0;
}

img[align=right],
img.alignright {
  margin: 0 0 15px 15px;
}

img.aligncenter {
  display: block;
  margin: 0 auto 15px auto;
}

img.circle {
  border-radius: 50%;
}

img,
a > img {
  border: 0;
}

a {
  color: currentColor;
  transition: all 0.25s ease;
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
  text-decoration-color: var(--link-text-decoration-color-initial, currentColor);
  text-decoration-thickness: var(--link-text-decoration-thickness, auto);
  text-underline-offset: var(--link-text-underline-offset, auto);
}
a:hover {
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
}
a.more {
  white-space: nowrap;
}

.has-link-hover-underline {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
}

iframe {
  max-width: 100%;
}
.fb_iframe_widget iframe {
  max-width: none;
}

.clickable {
  cursor: pointer;
}

.anchor:before {
  content: "";
  display: block;
  height: 120px;
  margin: -120px 0 0;
}

th, td {
  border: 0;
}

.toggle {
  cursor: pointer;
}

address {
  font-style: normal;
}
address a {
  text-decoration: none;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .mobile-only, .desktop-hide {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .mobile-hide, .desktop-only {
    display: none !important;
  }
}
.fb_iframe_widget,
.fb_iframe_widget > span {
  max-width: 100%;
  width: 100%;
}

#wpadminbar {
  z-index: 1101;
}

/*
Styles loaded into backend Gutenberg admin and front end
*/
.has-padding-top {
  padding-top: calc(var(--block-margin, 6rem) * 1) !important;
}

.has-padding-bottom {
  padding-bottom: calc(var(--block-margin, 6rem) * 1) !important;
}

.has-no-padding-top {
  padding-top: 0 !important;
}

.has-no-padding-bottom {
  padding-bottom: 0 !important;
}

.has-no-padding {
  padding: 0 !important;
}

.has-margin-top {
  margin-top: calc(var(--block-margin, 6rem) * 1) !important;
}

.has-margin-bottom {
  margin-bottom: calc(var(--block-margin, 6rem) * 1) !important;
}

.has-half-margin-top {
  margin-top: calc(var(--block-margin, 6rem) * 0.5) !important;
}

.has-2_3-margin-top {
  margin-top: calc(var(--block-margin, 6rem) * 0.666) !important;
}

.has-half-margin-bottom {
  margin-bottom: calc(var(--block-margin, 6rem) * 0.5) !important;
}

.has-2_3-margin-bottom {
  margin-bottom: calc(var(--block-margin, 6rem) * 0.666) !important;
}

.has-neg-margin-top {
  margin-top: calc(var(--block-margin, 6rem) * -1) !important;
}

.has-neg-margin-bottom {
  margin-bottom: calc(var(--block-margin, 6rem) * -1) !important;
}

.has-neg-half-margin-top {
  margin-top: calc(var(--block-margin, 6rem) * -0.5) !important;
}

.has-neg-half-margin-bottom {
  margin-bottom: calc(var(--block-margin, 6rem) * -0.5) !important;
}

.has-no-margin-top {
  margin-top: 0 !important;
}

.has-no-margin-bottom {
  margin-bottom: 0 !important;
}

.has-auto-margin-horizontal {
  margin-left: auto !important;
  margin-right: auto !important;
}

.has-max-width-100 {
  max-width: 100px;
}
.has-max-width-100.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-200 {
  max-width: 200px;
}
.has-max-width-200.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-300 {
  max-width: 300px;
}
.has-max-width-300.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-400 {
  max-width: 400px;
}
.has-max-width-400.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-500 {
  max-width: 500px;
}
.has-max-width-500.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-600 {
  max-width: 600px;
}
.has-max-width-600.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-700 {
  max-width: 700px;
}
.has-max-width-700.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-800 {
  max-width: 800px;
}
.has-max-width-800.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-900 {
  max-width: 900px;
}
.has-max-width-900.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1000 {
  max-width: 1000px;
}
.has-max-width-1000.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1100 {
  max-width: 1100px;
}
.has-max-width-1100.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.has-max-width-1200 {
  max-width: 1200px;
}
.has-max-width-1200.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}

.query-posts {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  --gap: 3rem;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  --column-count: 1;
  --hentry-width: calc((100% / var(--column-count)) - ((var(--gap) * (var(--column-count) - 1)) / var(--column-count)));
  row-gap: var(--row-gap, var(--gap));
  -moz-column-gap: var(--column-gap, var(--gap));
       column-gap: var(--column-gap, var(--gap));
  justify-content: start;
  flex-wrap: wrap;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
}
.query-posts.grid {
  --row-gap: var(--gap);
}
.query-posts:last-child {
  margin-bottom: 0;
}
.query-posts .no-results {
  margin: calc(var(--block-margin, 6rem) * 0.5) auto;
  width: 100% !important;
  margin-left: 0 !important;
  text-align: center;
}
.query-posts .hentry.load-more {
  order: 100000;
}
.query-posts .hentry.empty.static {
  order: 10000 !important;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}

.query-posts.one-across {
  --gap: calc(var(--block-margin, 6rem) * 0.5);
  --column-count: 1;
  display: grid;
}

.query-posts.two-across {
  --column-count: 2;
  display: grid;
}
@media screen and (max-width: 1400px) {
  .query-posts.two-across {
    --gap: 4rem;
    --row-gap: 4.5rem ;
  }
}
@media screen and (min-width: 1025px) {
  .is-first-post-featured .query-posts.two-across > .hentry.excerpt:first-child {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.two-across {
    --column-count: 1;
    --gap: 3.5rem;
    --row-gap: 4rem ;
  }
}

.query-posts.three-across {
  --column-count: 3;
  display: grid;
}
.query-posts.three-across > .hentry:not(.promo-wide) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .query-posts.three-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    --column-count: 1;
  }
}
@media screen and (min-width: 768px) {
  .is-first-post-featured .query-posts.three-across {
    grid-template-rows: auto 1fr;
  }
  .is-first-post-featured .query-posts.three-across > .hentry.excerpt:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .is-first-post-featured .query-posts.three-across > .hentry.excerpt:first-child .thumbnail {
    padding-bottom: 100%;
  }
}

.query-posts.four-across {
  --column-count: 4;
  display: grid;
}
@media screen and (max-width: 1024px) {
  .query-posts.four-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.four-across {
    --column-count: 1;
  }
}
@media screen and (min-width: 768px) {
  .is-first-post-featured .query-posts.four-across {
    grid-template-rows: auto 1fr auto;
  }
  .is-first-post-featured .query-posts.four-across > .hentry.excerpt:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .is-first-post-featured .query-posts.four-across > .hentry.excerpt:first-child .thumbnail {
    padding-bottom: 85%;
  }
}

.query-posts.five-across {
  --gap: 1rem;
  --column-count: 5;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.five-across {
    --column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.five-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.five-across {
    --column-count: 1;
  }
}
@media screen and (min-width: 1025px) {
  .is-first-post-featured .query-posts.five-across {
    grid-template-rows: auto 1fr auto;
  }
  .is-first-post-featured .query-posts.five-across > .hentry.excerpt:first-child {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
  .is-first-post-featured .query-posts.five-across > .hentry.excerpt:first-child .thumbnail {
    padding-bottom: 100%;
  }
}

.query-posts.six-across {
  --gap: 1rem;
  --column-count: 6;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.six-across {
    --column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.six-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.six-across {
    --column-count: 1;
  }
}
@media screen and (min-width: 1025px) {
  .is-first-post-featured .query-posts.six-across > .hentry.excerpt:first-child {
    grid-column: 1/span 3;
    grid-row: 1/span 2;
  }
  .is-first-post-featured .query-posts.six-across > .hentry.excerpt:first-child .thumbnail {
    padding-bottom: 100%;
  }
}

.query-posts.location {
  --gap: 1rem;
  --row-gap: 1rem;
  --column-gap: 1rem;
}

.query-posts.search {
  --row-gap: calc(var(--block-margin, 6rem) * 2);
}

input[type=submit],
input[type=button],
button,
.button,
.btn {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: Figtree, sans-serif;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 0px;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  font-weight: 400;
  border: 1px solid #000;
  letter-spacing: 0;
  font-size: 0.9444444444rem;
  padding: 0.24rem 0.88rem;
  transition: all 0.2s linear;
  text-transform: uppercase;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.aligncenter,
button.center,
.button.aligncenter,
.button.center,
.btn.aligncenter,
.btn.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover,
.btn:hover {
  text-decoration: none;
  background: #000;
  color: #fff;
  border-color: #000;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.loading:after,
.button.loading:after,
.btn.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
input[type=submit].done,
input[type=button].done,
button.done,
.button.done,
.btn.done {
  cursor: default;
  color: #555;
  border-color: #555;
}
input[type=submit].done:hover,
input[type=button].done:hover,
button.done:hover,
.button.done:hover,
.btn.done:hover {
  color: #555;
  background: none;
}

button.unstyled,
.button.unstyled {
  padding: 3px 5px;
  background: none;
  color: #363636;
  font-size: 100%;
  font-family: arial, sans-serif;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
}

button.unstyled:hover {
  background: #eeeeee;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
textarea {
  line-height: 1;
  margin: 0;
  padding: 0.5rem;
  border: 1px solid #000;
  background: #fff;
  border-radius: 0;
  box-sizing: border-box;
  font-family: Figtree, sans-serif;
  font-size: 0.9444444444rem;
  font-weight: 400;
}

textarea {
  width: 100%;
}

.input.select {
  --input-icon-size: var(--icon-size, .8em);
  --input-padding: var(--padding, .5em);
  --input-font-size: var(--font-size, .833em);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0;
  background: #EBCC39;
  color: #212533;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.8888888889rem;
  font-weight: 700;
  line-height: 1;
}
.input.select .label {
  flex-grow: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  position: relative;
  z-index: 6;
  box-sizing: border-box;
  padding: 1em;
  text-transform: uppercase;
  border-radius: 0;
  background: var(--background-color, transparent) none;
  opacity: 1;
  transition: min-width 0.25s ease;
}
.input.select .label > .text {
  display: inline-block;
  min-width: 14.3em;
}
.input.select .label > .icon {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--icon-color, inherit);
  transition: 0.25s ease;
  transform-origin: 50% 50%;
  font-size: 20px;
  width: 1em;
  height: 1em;
}
.input.select .label > .icon:before {
  display: block;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f105";
  position: absolute;
  left: 25%;
  top: 10%;
  width: 50%;
  height: 50%;
  box-sizing: border-box;
  transform-origin: 50% 50%;
}
.input.select.on .label > .icon {
  transform: rotate(90deg);
}
.input.select .options {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0 0 0.5em;
  box-sizing: border-box;
  background: #EBCC39;
  color: #212533;
  line-height: 1;
  opacity: 0;
}
.input.select .options .optgroup {
  display: block;
  padding: 0.2em 0.8em;
  cursor: default;
  font-size: 0.8em;
  opacity: 0.6;
}
.input.select .options .option {
  position: relative;
  display: block;
  padding: 0.4em 1em;
  margin: 0;
  text-transform: uppercase;
  transition: background-color 0.25s ease;
}
.input.select .options .option.selected {
  font-weight: 700;
}
.input.select .options .option:last-child {
  margin-bottom: 0;
}
.input.select .options .option:hover {
  background-color: #212533;
  color: #fff;
}
.input.select.on .options {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  margin-top: -0.5em;
  padding-top: 0.5em;
}
.input.select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 0;
  background: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .input.select select {
    z-index: 7;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .input.select .options {
    display: none !important;
  }
}

/* Gravity Forms */
.gform_wrapper {
  margin-top: 3rem;
  /* Gravity Forms Required style */
}
.gform_wrapper .gform-body .gfield_label {
  text-transform: uppercase;
  font-weight: 600;
}
.has-dark-background-color .gform_wrapper .gform-body .gfield_label {
  color: #EBCC39;
}
.gform_wrapper .gform-body .gfield_label span {
  text-transform: initial;
}
.gform_wrapper .gform-body .comm-checkbox label {
  font-size: 16px;
  color: #cccccc;
  margin-top: -6px;
}
.has-dark-background-color .gform_wrapper .gform-body p {
  color: #fff;
}
.gform_wrapper.gform-theme--framework .gform-field-label > .gfield_required {
  font-size: 15px;
  color: #E03303;
  font-weight: 600;
}
.has-dark-background-color .gform_wrapper.gform-theme--framework .gform-field-label > .gfield_required {
  color: #EB5F39;
}

/* Gravity Forms button style */
.gform-theme.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  padding: 1rem 1.3rem 1rem 1.4rem;
  text-transform: uppercase;
  color: #212533;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
}
.gform-theme.gform-theme.gform-theme--framework.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework):not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):hover {
  background: #008453;
  color: #fff;
}

.posts-nav {
  grid-area: posts-nav;
  clear: both;
  margin: calc(var(--block-margin, 6rem) * 2.5) 0;
  white-space: nowrap;
}
.posts-nav.max-page-1 {
  display: none;
}
.posts-nav.no-ajax {
  visibility: visible;
}
.posts-nav.ajax-pager {
  visibility: visible;
  text-align: center;
}
.posts-nav:after {
  content: " ";
  display: block;
  clear: both;
}
.posts-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.posts-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
  color: #aaa;
}
.posts-nav ul li.page_info {
  display: none;
}
.posts-nav ul li a {
  display: block;
  padding: 0.5em 0.7em;
  line-height: normal;
  text-decoration: none;
  border: 0;
}
.posts-nav ul li a:hover {
  color: white;
  background: #767676;
}
.posts-nav ul li.active_page {
  color: white;
  background: #000;
}
.posts-nav ul li.active_page a {
  padding: 0.5em 1em;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .query-posts.mobile-carousel + .posts-nav {
    display: none;
  }
}

.hentry {
  position: relative;
}

.hentry.empty {
  opacity: 0;
  visibility: hidden;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hentry.excerpt .carousel {
  position: relative;
  margin: 0 0 1rem;
}
.hentry.excerpt .carousel .block-nav {
  display: flex !important;
}
.hentry.excerpt .carousel .block-nav.next {
  padding-right: 0;
  margin-right: calc(var(--arrow-size, 0) / -2);
}
.hentry.excerpt .carousel .block-nav.prev {
  padding-left: 0;
  margin-left: calc(var(--arrow-size, 0) / -2);
}
@media screen and (max-width: 500px) {
  .hentry.excerpt .carousel .block-nav {
    --arrow-size: 20px;
  }
}
.hentry.excerpt .thumbnail {
  display: block;
  position: relative;
  padding: 0 0 66.666%;
  margin: 0 0 1rem;
  background: rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.hentry.excerpt .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  transition: 0.5s ease-in-out;
  transform-origin: var(--focal-point, 50% 50%);
}
.hentry.excerpt .thumbnail:hover img {
  transform: scale(1.05, 1.05);
}
.hentry.excerpt .meta {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  color: #008453;
  font-size: 0.8333333333rem;
}
.has-background .hentry.excerpt .meta, .block-featured-posts .hentry.excerpt .meta {
  color: #007147;
}
.hentry.excerpt .title {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  font-size: clamp(1.222rem, 0.331vw + 1.151rem, 1.444rem);
}

.hentry.search:last-child {
  margin-bottom: 0;
}
.hentry.search .url {
  font-size: 0.8em;
  color: #767676;
}

p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 1em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.page-blocks > p {
  max-width: 740px;
}
p:last-child {
  margin-block-end: 0;
}

p.has-drop-cap:not(:focus)::first-letter {
  display: block;
  float: left;
  margin: 0.1em 0.05em 0 0;
  color: red;
  font-size: 3.5em;
  font-weight: 600;
  line-height: 0.7;
}

p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
p.has-text-align-center.has-x-large-font-size {
  max-width: 840px;
}
.wp-block-column p.has-text-align-center {
  max-width: 400px;
}

p.has-max-width-page-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

p.has-large-font-size,
p.has-x-large-font-size {
  line-height: 1.2;
}

p.is-style-intro {
  font-size: clamp(1.167rem, 0.165vw + 1.131rem, 1.278rem);
  font-weight: 600;
  line-height: 1.4;
}

.site-header,
#search-top {
  --logo-width: 275px;
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  --block-gutter: 2rem;
}
@media screen and (min-width: 1800px) {
  .site-header,
  #search-top {
    --block-gutter: calc((100vw - 1800px + 4rem) / 2);
  }
}
@media screen and (max-width: 1023px) {
  .site-header,
  #search-top {
    --block-gutter: var(--gutter);
  }
}

.site-header {
  box-sizing: border-box;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: var(--block-gutter) var(--logo-width) 1fr auto var(--block-gutter);
  grid-template-areas: ". logo . . ." ". logo top top ." ". logo nav toggle ." ". logo . . .";
  align-items: center;
  grid-template-rows: 0.7rem auto auto 2rem;
  background: var(--background-color, #fff);
  color: var(--color, #212533);
  transition: transform 0.5s ease-in-out, padding-top 0.5s ease-in-out;
  transform: translate(0%, 0%);
}
body.scrolled:not(.scroll-up, .menu-on) .site-header, body.scrolling .site-header {
  transform: translate(0, -100%);
}
body:not(.scrolled) .site-header {
  padding-top: var(--alert-height, 0px);
}
.site-header ul, .site-header li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header .block-logo {
  grid-area: logo;
  align-self: stretch;
  padding: 1rem 0 1.5rem;
  display: flex;
  align-items: center;
}
.site-header .block-logo a {
  display: block;
  width: 100%;
  height: calc(var(--logo-width) * 0.218);
}
.site-header .block-top {
  grid-area: top;
  font-size: 0.6666666667rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #767676;
  margin: 0 0 0.6rem;
}
.site-header .block-top > ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.site-header .block-top > ul > li {
  position: relative;
  padding-left: 2em;
}
.site-header .block-top > ul > li:before {
  content: " ";
  display: inline-block;
  position: absolute;
  left: 1em;
  top: 10%;
  width: 1px;
  height: 80%;
  background: #DCE1CD;
}
.site-header .block-top > ul > li:first-child:before {
  display: none;
}
.site-header .block-nav {
  --gap: 2rem;
  grid-area: nav;
  font-weight: 600;
  padding: 0 0;
}
.site-header .block-nav > ul {
  display: flex;
  align-items: center;
  justify-content: end;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
}
.site-header .block-nav > ul > li > a {
  position: relative;
  display: inline-block;
  padding: 0.5em 0;
  text-decoration: none;
}
.site-header .block-nav > ul > li > a:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0.4em;
  left: 0;
  width: 0%;
  height: 2px;
  background: #EBCC39;
  transition: 0.25s ease;
}
.site-header .block-nav > ul > li > a:hover:after {
  width: 100%;
}
.site-header .block-nav > ul > li.current-menu-item > a:after, .site-header .block-nav > ul > li.current-menu-ancestor > a:after {
  width: 100%;
}
.site-header .block-toggle {
  grid-area: toggle;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  gap: 1rem;
  --icon-size: 2rem;
}
.site-header .block-toggle .toggle.search {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  font-size: calc(var(--icon-size) * 0.45);
  text-align: center;
  background: #DCE1CD;
  border-radius: 50%;
  transition: 0.25s ease;
}
.site-header .block-toggle .toggle.search:hover {
  background-color: #6896A3;
  color: #D8EBF0;
}
.site-header .block-toggle .toggle.menu {
  --width: 25px;
  --height: 14px;
  --bar-thickness: 2px;
  display: none;
  position: relative;
  width: var(--width);
  height: 100%;
  margin: 0 auto;
  align-items: center;
  color: currentColor;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.site-header .block-toggle .toggle.menu .icon {
  display: block;
  position: relative;
  width: var(--width);
  height: var(--height);
  transition: transform 0.4s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  border: var(--bar-thickness) solid currentColor;
  border-width: var(--bar-thickness) 0;
  box-sizing: border-box;
}
.site-header .block-toggle .toggle.menu .icon:before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--bar-thickness);
  background: currentColor;
  transform: translate(0, -50%);
}
.site-header .block-toggle .toggle.menu:before, .site-header .block-toggle .toggle.menu:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  margin: calc(var(--bar-thickness) / -2) 0 0;
  transform-origin: 50% 50%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: rotate(0deg);
  opacity: 0;
  background: currentColor;
}
body.menu-on .site-header .block-toggle .toggle.menu:before, body.menu-on .site-header .block-toggle .toggle.menu:after {
  opacity: 1;
}
body.menu-on .site-header .block-toggle .toggle.menu:before {
  transform: rotate(-45deg);
}
body.menu-on .site-header .block-toggle .toggle.menu:after {
  transform: rotate(-135deg);
}
body.menu-on .site-header .block-toggle .toggle.menu .icon {
  opacity: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1200px) {
  .site-header .block-nav {
    --gap: 1em;
  }
}
@media screen and (max-width: 1023px) {
  .site-header {
    --logo-width:180px;
    grid-template-columns: var(--block-gutter) var(--logo-width) 1fr var(--block-gutter);
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: ". logo toggle ." "nav nav nav nav" "top top top top" ". . . .";
    overflow: auto;
    max-height: calc(100vh - var(--wp-admin--admin-bar--height, 0px));
  }
  .site-header .block-toggle {
    justify-self: end;
    margin-left: 1rem;
  }
  .site-header .block-toggle .toggle.menu {
    display: block;
  }
  .site-header .block-nav > ul,
  .site-header .block-top > ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .site-header .block-nav {
    font-size: 1.4444444444rem;
    padding: calc(var(--block-margin, 6rem) * 0.5) 0 0;
  }
  .site-header .block-top {
    margin: 0 auto;
    max-width: 30em;
    width: 100%;
    padding: calc(var(--block-margin, 6rem) * 0.5) 0 2rem;
    font-size: 0.8888888889rem;
    font-weight: 600;
  }
  .site-header .block-top > ul {
    row-gap: 0.5em;
  }
  .site-header .block-top > ul:before {
    content: " ";
    display: block;
    width: 80%;
    height: 1px;
    margin: 0 auto 1em;
    background: #DCE1CD;
  }
  .site-header .block-top > ul > li {
    padding-left: 0;
  }
  .site-header .block-top > ul > li:before {
    display: none;
  }
  .site-header .block-nav,
  .site-header .block-top {
    transition: 0.4s ease-in-out;
    opacity: 1;
    transform: translate(0, 0);
    max-height: 100vh;
  }
  body:not(.menu-on) .site-header .block-nav,
  body:not(.menu-on) .site-header .block-top {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translate(0, -2rem);
  }
  .site-header .block-logo {
    padding: 1rem 0;
  }
}

#search-top {
  --color: #fff;
  --padding: 1rem;
  --icon-size:2rem;
  position: fixed;
  z-index: 1101;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.75rem var(--block-gutter) 1rem var(--gutter-left);
  min-height: calc(var(--header-height) + 1px);
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  background: #6896A3;
  color: var(--color);
  transition: translate 0.4s ease-in-out, opacity 0.4s ease-in-out;
  translate: 0 -105%;
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}
body.search-on #search-top {
  translate: 0 0%;
  opacity: 1;
}
#search-top .field {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  border: 0;
  border-bottom: 2px solid var(--color);
  border-radius: 0px;
  color: var(--color);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#search-top .field input[type=text] {
  flex-grow: 1;
  background: none;
  border: 0;
  padding: 0.5em 0em;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  width: 100%;
  border: 0;
}
#search-top .field input[type=text]:focus-visible {
  outline: none;
}
#search-top .field button {
  display: inline-block;
  background: none;
  padding: 0 0 0 2em;
  margin: 0;
  border: 0;
  border-radius: 0;
  color: var(--color);
}
#search-top .field ::-webkit-input-placeholder {
  color: var(--color);
}
#search-top .field :-moz-placeholder {
  color: var(--color);
}
#search-top .field ::-moz-placeholder {
  color: var(--color);
}
#search-top .field :-ms-input-placeholder {
  color: var(--color);
}
#search-top:before {
  content: " ";
  display: block;
  width: var(--icon-size);
  height: 10px;
}
#search-top .toggle.search {
  --bar-thickness: 2px;
  width: var(--icon-size);
  padding: 0;
  height: 70px;
  margin: 0;
  transform-origin: 50% 50%;
  transition: 0.2s ease;
  transform: rotate(0deg);
}
#search-top .toggle.search:hover {
  transform: rotate(90deg);
}
#search-top .toggle.search:before, #search-top .toggle.search:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(50% - 10px);
  width: 20px;
  height: var(--bar-thickness);
  margin: calc(var(--bar-thickness) / -2) 0;
  transform-origin: 50% 50%;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  background: var(--color);
}
#search-top .toggle.search:before {
  transform: rotate(45deg);
}
#search-top .toggle.search:after {
  transform: rotate(-45deg);
}

#bottom-blocks {
  position: relative;
}
#bottom-blocks > .blocks .wp-block-cover:last-child {
  padding-bottom: calc(var(--block-margin, 6rem) * 2);
}

#footer {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "logo nav   social" "logo links social" "logo .     social" ".    address copyright";
  grid-template-rows: auto auto 1fr auto;
  padding: calc(var(--block-margin, 6rem) * 1) var(--gutter-right) calc(var(--block-margin, 6rem) * 1) var(--gutter-left);
  background: #212533;
  color: #fff;
}
#footer .block-tagline {
  grid-area: tagline;
  box-sizing: border-box;
  padding: 2em 0;
  background: #212533;
  color: #EBCC39;
  line-height: 1.2;
  font-size: clamp(0.889rem, 0.248vw + 0.835rem, 1.056rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 1025px) {
  #footer .block-tagline {
    position: absolute;
    z-index: 100;
    bottom: 100%;
    width: calc(100% + var(--gutter-right) + calc(var(--block-margin, 6rem) * 1.25));
    margin-left: calc(var(--block-margin, 6rem) * -1.25);
    grid-column: 2/-1;
    padding-right: var(--gutter-right);
    padding-left: calc(var(--block-margin, 6rem) * 1.25);
  }
}
#footer ul, #footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .block-logo {
  grid-area: logo;
  padding: 0 calc(var(--block-margin, 6rem) * 1) 0 0;
  max-width: 200px;
}
#footer .block-logo a, #footer .block-logo img {
  display: block;
  width: 100%;
}
#footer .block-logo .logo + .logo:before {
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  margin: 1.5em 0;
  background: currentColor;
}
#footer .block-nav {
  grid-area: nav;
  margin-bottom: 1em;
}
#footer .block-links {
  grid-area: links;
}
#footer ul.menu {
  --gap: .25em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}
#footer ul.menu a {
  font-weight: 600;
  text-transform: uppercase;
}
#footer ul.menu li + li:before {
  content: "•";
  margin: 0 var(--gap) 0 0;
}
#footer .block-social {
  --icon-size:40px;
  grid-area: social;
  text-transform: uppercase;
}
#footer .block-social ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 1em;
       column-gap: 1em;
}
#footer .block-social .heading {
  width: 100%;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-size: 0.8em;
  opacity: 0.7;
}
#footer .block-social .heading:first-child {
  font-size: 1em;
  opacity: 1;
  margin-top: 0;
  margin-bottom: 0;
}
#footer .block-social .johnson-outdoors {
  --icon-color: #6896A3;
  --icon-text-color: #fff;
}
#footer .block-social a {
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  font-size: calc(var(--icon-size) * 0.6);
  text-align: center;
  background: var(--icon-color, #008453);
  color: var(--icon-text-color, #fff);
  border-radius: 50%;
}
#footer .block-social a:hover {
  background-color: var(--icon-text-color, #fff);
  color: var(--icon-color, #008453);
}
#footer .block-social a .icon.fa-x-twitter {
  font-size: calc(var(--icon-size) * 0.55);
}
#footer .block-address {
  align-self: end;
  grid-area: address;
  padding: 2rem 0 0;
  font-size: 0.8888888889rem;
}
#footer .block-copyright {
  align-self: end;
  grid-area: copyright;
  padding: 2rem 0 0;
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 1024px) {
  #footer {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "logo logo" "tagline tagline" "nav social" "links social" "address copyright";
    grid-template-rows: auto auto auto 1fr auto;
  }
  #footer .block-logo {
    margin-left: auto;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
  }
  #footer .block-tagline {
    position: relative;
    bottom: auto;
    width: auto;
    padding-left: 0;
    padding-right: 0;
    margin: 2em auto;
    max-width: 400px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    grid-template-columns: auto;
    grid-template-areas: "logo" "tagline" "nav" "links" "social" "address" "copyright";
    text-align: center;
  }
  #footer ul.menu {
    justify-content: center;
  }
  #footer .block-social {
    margin-top: 2em;
  }
  #footer .block-social ul {
    justify-content: center;
  }
}

.theme-block {
  --block-margin-multiplier: 1;
  position: relative;
  margin-top: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier));
  margin-bottom: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier));
}
.theme-block:first-child {
  margin-top: 0;
}
.theme-block:last-child {
  margin-bottom: 0;
}
.page-blocks > .theme-block.is-style-full-width, .page-blocks > .theme-block.full-width {
  margin-left: calc(var(--gutter-left-override, var(--gutter-left)) * -1);
  margin-right: calc(var(--gutter-right-override, var(--gutter-right)) * -1);
}
.page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1544.8275862069px) {
  .page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
    margin: 0 4.6875%;
  }
}
#wrap > .theme-block.has-background {
  margin-top: 0;
  margin-bottom: 0;
}

body.has-js .appear-on-scroll:not(.sticky) {
  opacity: 0;
}
body.has-js .appear-on-scroll:not(.sticky).appear-init {
  transform: translate(0px, 3rem);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
body.has-js .appear-on-scroll:not(.sticky).appeared {
  opacity: 1;
  transform: translate(0px, 0px);
}
body.has-js .appear-on-scroll.sticky {
  opacity: 0;
}
body.has-js .appear-on-scroll.sticky.appear-init {
  transition: opacity 0.5s ease-in-out;
}
body.has-js .appear-on-scroll.sticky.appeared {
  opacity: 1;
}
body.no-js .appear-on-scroll, body.disable-appear-on-scroll .appear-on-scroll {
  opacity: 1;
  transform: none;
}

.site-skip-nav {
  position: fixed;
  z-index: 1101;
  top: 0;
  left: 0;
  padding: 5px 15px;
  margin-top: var(--wp-admin--admin-bar--height, 0px);
  background: orange;
  color: #fff;
  transform: translate(-100%, -100%);
}
.site-skip-nav:focus {
  transform: translate(0%, 0%);
}

#wrap {
  position: relative;
  z-index: 10;
  padding: calc(var(--header-height, 120px) + var(--alert-height, 0px)) 0 0 0;
}

.main-content {
  --padding-bottom: calc(var(--block-margin, 6rem) * 0.833);
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  color: var(--color);
}
.main-content > .layout {
  position: relative;
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: ". title ." ". blocks ." ". share ." ". filters ." ". posts ." ". pager .";
}
body.has-featured-posts .main-content > .layout {
  grid-template-areas: "featured-posts featured-posts featured-posts" ". title ." ". filters ." ". posts ." ". pager ." ". blocks ." ". share .";
}
body.has-featured-image .main-content > .layout {
  grid-template-areas: ". title ." ". featured ." ". featured ." ". blocks ." ". share ." ". filters ." ". posts ." ". pager .";
  grid-template-rows: [bg-start] auto 1fr [bg-end] 0.5fr auto;
}
body.has-featured-image .main-content > .layout:before {
  content: " ";
  display: block;
  position: relative;
  grid-column: 1/-1;
  grid-row: bg-start/bg-end;
  background: linear-gradient(45deg, #DCE1CD, #D8EBF0);
}
body.has-featured-image .main-content > .layout:after {
  content: " ";
  display: block;
  position: relative;
  width: 35%;
  margin: 0 0 calc(var(--block-margin, 6rem) * 0.5) auto;
  grid-column: 1/-1;
  grid-row: bg-start/bg-end;
  background: url(images/pattern_skyblue.svg) no-repeat 0% 100%;
  background-size: 1024px auto;
  opacity: 0.5;
}
.main-content .page-blocks {
  display: block;
  position: relative;
  grid-area: blocks;
  min-height: 20vh;
  padding: 0 0 var(--padding-bottom);
}
body.archive .main-content .page-blocks {
  min-height: 0;
}
body.error404 .main-content .page-blocks {
  min-height: 20vh;
}
.main-content .block-featured-image + .page-blocks {
  margin-top: calc(var(--block-margin, 6rem) * 0.6);
}
@media screen and (min-width: 1191.724137931px) {
  .main-content.front-page .page-blocks {
    width: 1080px;
    margin-left: auto;
    margin-right: auto;
    --gutter: calc((100vw - 1080px) / 2);
    --gutter-left: calc((100vw - 1080px) / 2);
    --gutter-right: calc((100vw - 1080px) / 2);
  }
}
@media screen and (min-width: 772.4137931034px) {
  .main-content.page .page-blocks {
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    --gutter: calc((100vw - 700px) / 2);
    --gutter-left-override: calc((100vw - 700px) / 2);
    --gutter-right-override: calc((100vw - 700px) / 2);
  }
  .main-content.page .page-blocks > .theme-block.is-style-wider-width {
    --width: 1000px;
    width: var(--width);
    left: 50%;
    margin-left: calc(var(--width) * -0.5);
  }
}
@media screen and (min-width: 772.4137931034px) and (min-width: 1600px) {
  .main-content.page .page-blocks > .theme-block.is-style-wider-width {
    --width:1200px;
  }
}
@media screen and (min-width: 772.4137931034px) and (max-width: 1100px) {
  .main-content.page .page-blocks > .theme-block.is-style-wider-width {
    --width: calc(100vw - (var(--wrap-gutter) * 2));
  }
}
.main-content .block-page-title {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  grid-area: title;
  margin: calc(var(--block-margin, 6rem) * 0.6) auto calc(var(--block-margin, 6rem) * 0.25);
}
body.posts-landing .main-content .block-page-title {
  max-width: none;
}
.main-content .block-page-title h1 {
  max-width: 16em;
  margin: 0.75rem 0;
  font-size: clamp(1.944rem, 0.826vw + 1.765rem, 2.5rem);
}
.main-content .block-page-title a {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  color: #007147;
}
.main-content .block-page-title .back {
  margin: 0 0 0.5rem;
}
.main-content .block-page-title .back:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f104";
  display: inline-block;
  margin: 0 0.5em 0 0;
  width: 1.25em;
  height: 1.25em;
  line-height: 1.25em;
  text-align: center;
  background: #007147;
  color: #fff;
  border-radius: 50%;
  transform: translate(0, 0);
  transition: 0.25s ease;
  font-size: 0.75rem;
  padding: 0.1rem;
}
.main-content .block-page-title .back:hover:before {
  transform: translate(-3px, 0);
}
.main-content .block-page-title .meta {
  margin: 0.5rem 0 0;
}
.main-content .block-filters {
  grid-area: filters;
}
.main-content .query-posts {
  grid-area: posts;
  margin-bottom: calc(var(--block-margin, 6rem) * 1);
}
@media screen and (max-width: 767px) {
  .main-content .query-posts {
    margin-bottom: calc(var(--block-margin, 6rem) * 0.5);
  }
}
.main-content .block-pager {
  grid-area: pager;
  margin: 0 0 calc(var(--block-margin, 6rem) * 1) 0;
}
@media screen and (max-width: 767px) {
  .main-content .block-pager {
    margin: 0 0 calc(var(--block-margin, 6rem) * 0.5) 0;
  }
}
.main-content .block-featured-image {
  position: relative;
  z-index: 1;
  grid-area: featured;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.main-content .block-featured-image .image img {
  position: relative;
  display: block;
  width: 100%;
  height: 50vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  min-height: 400px;
}
.main-content .block-featured-image .featured-block {
  display: block;
  width: 100%;
  position: relative;
}
.main-content .block-featured-image .featured-block > iframe {
  display: block;
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1024px) {
  .main-content .block-featured-image .featured-block > iframe {
    height: 50vw;
    min-height: 250px;
  }
}
.main-content .block-featured-image .featured-block .wp-block-theme-blocks-carousel .block-nav .icon {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .main-content .block-featured-image .image img {
    height: auto;
  }
}
.main-content .block-meta-bottom {
  --link-text-decoration-color-initial:transparent;
  --link-text-decoration-color-hover:currentColor;
  border-top: 2px solid #DCE1CD;
  margin-top: calc(var(--block-margin, 6rem) * 1.5);
  padding: 1rem 0 0;
  color: #767676;
  font-size: 0.8888888889rem;
}
.main-content .block-meta-bottom a {
  color: inherit;
}
@media screen and (max-width: 767px) {
  .main-content .block-share {
    grid-area: share;
  }
}
@media screen and (min-width: 1600px) {
  .main-content .block-page-title,
  .main-content .block-featured-image {
    max-width: 1200px;
  }
  .main-content .block-featured-image .image img {
    height: 700px;
  }
}
.main-content .block-featured-posts {
  grid-area: featured-posts;
  position: relative;
  padding: calc(var(--block-margin, 6rem) * 0.6) var(--gutter-right) calc(var(--block-margin, 6rem) * 0.25) var(--gutter-left);
  background: linear-gradient(45deg, #DCE1CD, #D8EBF0);
}
.main-content .block-featured-posts:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 40%;
  background: url(images/pattern_skyblue.svg) no-repeat 0% 100%;
  background-size: 1024px auto;
  opacity: 0.5;
}
.main-content .block-featured-posts .block-page-title {
  max-width: none;
  margin: 0 0 calc(var(--block-margin, 6rem) * 0.35);
}
.main-content .block-featured-posts .query-posts {
  position: relative;
  z-index: 1;
  display: grid;
}
@media screen and (min-width: 768px) {
  .main-content .block-featured-posts .query-posts {
    grid-template-columns: 1fr 1fr;
  }
  .main-content .block-featured-posts .query-posts .hentry:nth-child(1) {
    grid-row: 1/span 1;
    grid-column: 1/span 2;
  }
}
@media screen and (min-width: 1024px) {
  .main-content .block-featured-posts .query-posts {
    grid-template-columns: 2fr 1fr;
  }
  .main-content .block-featured-posts .query-posts .hentry:nth-child(1) {
    grid-row: 1/span 2;
    grid-column: 1/span 1;
  }
}

.main-content.search > .layout {
  grid-template-areas: ". title ." ". results ." ". filters ." ". posts ." ". pager ." ". search .";
}
.main-content.search .block-search {
  grid-area: search;
  margin: calc(var(--block-margin, 6rem) * 0.5) 0;
  width: 100%;
}
.main-content.search .block-search .field {
  display: flex;
  border-radius: 0px;
  padding: 0 0 0 1em;
  gap: 1em;
  align-items: stretch;
}
.main-content.search .block-search .field input[type=text] {
  flex-grow: 1;
  padding: 0.4em;
  border: 2px solid #000;
  border-radius: 0px;
  font-weight: 600;
}
.main-content.search .block-search .field button {
  box-sizing: border-box;
  border: 2px solid #000;
  background-color: #000;
  font-weight: 600;
}
.main-content.search .block-search .field button:hover {
  background-color: transparent;
  color: #000;
}
.main-content.search .block-search .field ::-webkit-input-placeholder {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.main-content.search .block-search .field :-moz-placeholder {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.main-content.search .block-search .field ::-moz-placeholder {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.main-content.search .block-search .field :-ms-input-placeholder {
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}
.main-content.search .block-search-results {
  grid-area: results;
  margin-bottom: calc(var(--block-margin, 6rem) * 1);
}
.main-content.search .block-page-title,
.main-content.search .block-search-results {
  text-align: center;
}
.main-content.search .block-page-title h1,
.main-content.search .block-search-results h1 {
  max-width: none;
}
.main-content.search .block-search,
.main-content.search .query-posts {
  margin-left: auto;
  margin-right: auto;
  max-width: 700px;
}
.main-content.search #posts-filter {
  display: none;
}

.embedsocial-hashtag {
  margin: calc(var(--block-margin, 6rem) * 0.5) 0;
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
}
.slick-slider .slick-track {
  display: flex;
  align-items: flex-start;
}
.slick-slider .slick-track:after {
  content: " ";
  display: block;
  clear: both;
}
.slick-slider .slick-slide {
  display: block;
  white-space: normal;
}

.slick-arrow {
  --arrow-size: 40px;
  margin: 0;
  cursor: pointer;
  font-size: calc(var(--arrow-size) * 0.7);
  color: var(--color, #000);
  width: var(--arrow-size);
  height: var(--arrow-size);
  line-height: var(--arrow-size);
  transition: background-color 0.25s ease, transform 0.25s ease, margin 0.25s ease;
  text-align: center;
}
.slick-arrow .icon {
  transition: all 0.25s ease;
  width: var(--arrow-size);
  height: var(--arrow-size);
  line-height: var(--arrow-size);
  background: #EBCC39;
  color: #212533;
  border-radius: 50%;
}
.slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.1;
}

.slick-dots {
  display: block;
  margin: 1em 0.5em 0 0.5em;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
}
.slick-dots li button {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  background: rgba(204, 204, 204, 0.8);
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3px;
}
.slick-dots li.slick-active button {
  background: orange;
}

#posts-filter {
  --gap: 1em;
  margin: calc(var(--block-margin, 6rem) * 1) 0 calc(var(--block-margin, 6rem) * 0.5);
  display: grid;
  gap: var(--gap);
  grid-template-areas: "filters message reset";
  grid-template-columns: auto 1fr auto;
  align-items: center;
}
#posts-filter .filters {
  grid-area: filters;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
#posts-filter .filters label {
  font-size: 0.8888888889rem;
  font-weight: 700;
  text-transform: uppercase;
}
#posts-filter .message {
  grid-area: message;
  font-size: 0.8888888889rem;
}
#posts-filter .reset {
  grid-area: reset;
}
#posts-filter .reset button {
  background: none;
  color: #767676;
  border: 0;
  font-size: 0.8888888889rem;
  font-weight: 700;
}
#posts-filter .reset button:hover {
  color: #000;
}
@media screen and (max-width: 1024px) {
  #posts-filter {
    grid-template-columns: auto 1fr;
    grid-template-areas: "filters filters" "message reset";
  }
}
@media screen and (max-width: 800px) {
  #posts-filter .filters {
    flex-wrap: wrap;
  }
  #posts-filter .filters label {
    width: 100%;
  }
  #posts-filter .filters .filter {
    flex-grow: 1;
  }
}

#overlay-mask {
  display: block;
  position: fixed;
  z-index: 199999;
  top: 0%;
  left: 0;
  width: 0%;
  height: 100%;
  transition: background-color 0.5s ease-in-out;
  /*&:after {
      display: block;
      content: ' ';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0%;
      background: rgba(black, 0.4);
      @include transition(height $overlayDelay $overlayEase);
  }*/
}
#overlay-mask:before {
  display: none;
  content: " ";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  width: 30px;
  height: 30px;
  background: url(images/loading.png) no-repeat center top;
  animation: loading 1s steps(19) infinite;
}
body.overlay-loading #overlay-mask, body.overlay-init #overlay-mask {
  top: 0%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
body.overlay-loading #overlay-mask:before {
  display: block;
}
body.overlay-on #overlay-mask:before {
  display: none;
}
body.overlay-on #overlay-mask:after {
  height: 100%;
}

#overlay-close {
  --size: 50px;
  display: none;
  box-sizing: border-box;
  position: fixed;
  z-index: 200001;
  top: 2em;
  right: 2em;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  margin: 0;
  text-align: center;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease;
}
#overlay-close:before, #overlay-close:after {
  content: " ";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: calc(var(--size) * -0.25);
  width: calc(var(--size) * 0.5);
  height: 1px;
  background: currentColor;
}
#overlay-close:before {
  transform: rotate(45deg);
}
#overlay-close:after {
  transform: rotate(-45deg);
}
body.overlay-on #overlay-close {
  display: block;
}
@media screen and (max-width: 767px) {
  #overlay-close {
    top: 1em;
    right: 1em;
  }
}

#overlay {
  box-sizing: border-box;
  display: none;
  position: fixed;
  z-index: 200000;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  margin: 0 auto;
  padding: 0;
  opacity: 0;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
body.overlay-init #overlay {
  display: block;
  transform: translate(0, -100%);
}
body.overlay-on #overlay {
  transform: translate(0, 0%);
  opacity: 1;
}
#overlay > .layout {
  position: relative;
  z-index: 200002;
  display: block;
  margin: calc(var(--block-margin, 6rem) * 1) auto;
  max-width: 1024px;
  background: #fff;
  color: #212533;
}
#overlay > .layout > .block-content {
  position: relative;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#overlay > .layout > .block-content iframe {
  display: block;
  width: 100%;
  min-height: 480px;
}
@media screen and (min-height: 800px) {
  #overlay > .layout > .block-content iframe {
    min-height: 640px;
  }
}
#overlay .appear-on-scroll {
  opacity: 1;
  transform: translate(0px, 0px);
}
#cookie-mask {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

#cookie-notice {
  box-sizing: border-box;
  position: fixed;
  z-index: 1000000;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2em;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1em;
  align-items: center;
  font-size: 0.8em;
}
#cookie-notice .block-content {
  line-height: 1.2;
}
#cookie-notice .block-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
#cookie-notice button {
  font-size: 0.8em;
}
@media screen and (max-width: 1024px) {
  #cookie-notice {
    display: block;
  }
  #cookie-notice .block-content {
    margin-bottom: 1em;
  }
}

body.cookie-notice-on #wrap {
  filter: grayscale(1);
}

#share-tab ul {
  list-style: none;
}
#share-tab ul li::before {
  content: none;
}
@media screen and (min-width: 768px) {
  #share-tab {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 25vh;
    color: white;
    line-height: 1;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  body.single-post #share-tab, body.single-gallery-item #share-tab {
    top: 25vh;
  }
  #share-tab > a.toggle {
    transform-origin: 100% 0%;
    transform: rotate(90deg) translate(100%, 0);
    line-height: 44px;
    height: 44px;
    width: 80px;
  }
  #share-tab > a.toggle.on, #share-tab > a.toggle:hover {
    background-color: #007147;
    color: #fff;
  }
  body.share-on #share-tab ul {
    z-index: 1;
    opacity: 1;
    margin-top: 0;
    max-height: 500px;
    overflow: visible;
  }
}
#share-tab > a.toggle {
  display: inline-block;
  padding: 0;
  text-align: center;
  background: #008453;
  color: #fff;
  text-transform: uppercase;
  font-family: Figtree, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.25s ease;
}
#share-tab ul, #share-tab li {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
#share-tab ul {
  position: absolute;
  right: 0;
  top: 110px;
  width: 44px;
  padding: 5px 0;
  background: #007147;
  color: #fff;
  text-align: center;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  margin: -30px 0 0 0;
  max-height: 0px;
  overflow: hidden;
  border-radius: 0;
}
#share-tab ul:before {
  position: absolute;
  top: -6px;
  left: 50%;
  margin: 0 0 0 -6px;
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border: 6px solid #007147;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 0;
}
#share-tab ul > li > a {
  display: block;
  padding: 15px 0;
  color: inherit;
  font-size: 16px;
  background-image: none;
  transition: background-color 0.25s ease;
}
#share-tab ul > li > a:hover {
  color: #EBCC39;
}
#share-tab ul > li > a .fa-plus {
  font-size: 22px;
}
#share-tab ul > li.last a {
  padding: 10px 15px 12px;
}
@media screen and (max-width: 767px) {
  #share-tab {
    grid-area: share;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: calc(var(--padding-bottom, 0px) * -0.5) 0 calc(var(--block-margin, 6rem) * 0.5);
    color: inherit;
  }
  #share-tab > a.toggle {
    padding: 12px 6px 0 0;
    margin: 0;
    line-height: 18px;
    background: none;
    color: inherit;
    font-size: 0.88em;
    font-weight: 700;
    border-radius: 5px;
  }
  #share-tab > a.toggle:hover {
    background: none;
  }
  #share-tab ul {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    padding: 0;
    margin: 0 5px;
    max-height: none;
    opacity: 1;
    background: none;
    color: #007147;
  }
  #share-tab ul li {
    display: inline-block;
  }
  #share-tab ul li a {
    padding: 12px 10px;
    line-height: 18px;
    font-size: 20px;
    min-width: 20px;
    margin: 0 1px;
    color: inherit;
  }
  #share-tab ul li a:hover {
    border-radius: 5px;
  }
  #share-tab ul li a .fa-brands {
    font-size: 18px;
  }
  #share-tab ul li a .fa-plus {
    font-size: 23px;
  }
  #share-tab ul li.last a {
    padding: 8px 10px 12px;
  }
}

#alert {
  z-index: 1002;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: 0 calc(var(--block-margin, 6rem) * 1);
  background: #EBCC39;
  color: #212533;
  transition: transform 0.5s ease-in-out;
  transform: translate(0%, 0%);
}
#alert:hover .block-close .icon {
  background-color: #212533;
  color: #EBCC39;
  border-radius: 50%;
}
body.scrolled #alert {
  transform: translate(0, -100%);
}
body.scrolled.admin-bar #alert {
  transform: translate(0, calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}
#alert .block-title {
  position: relative;
  z-index: 1011;
  padding: 0.9em 0;
  margin: 0;
  border: 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.25em;
  font-weight: 600;
  background: inherit;
  color: inherit;
}
@media screen and (max-width: 767px) {
  #alert .block-title {
    font-size: 1rem;
  }
}
#alert.has-content .block-title {
  cursor: pointer;
}
#alert .block-content {
  --gutter-left: calc((100vw - 1024px) / 2);
  --gutter-right: calc((100vw - 1024px) / 2);
  position: absolute;
  z-index: 1007;
  top: 0%;
  left: 0;
  width: 100%;
  padding: 1em var(--gutter-right) 2em var(--gutter-left);
  box-sizing: border-box;
  background: #EBCC39;
  color: #212533;
  transform: translate(0, -100%);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
@media screen and (max-width: 1129.9310344828px) {
  #alert .block-content {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
  }
}
#alert .block-close {
  --icon-size: 40px;
  position: absolute;
  z-index: 1012;
  top: 50%;
  right: 1em;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-top: calc(var(--icon-size) * -0.5);
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  cursor: pointer;
}
#alert .block-close .icon {
  display: block;
  font-size: calc(var(--icon-size) * 0.5);
  line-height: var(--icon-size);
  text-align: center;
}
body.alert-on #alert .block-content {
  transform: translate(0, 0);
  opacity: 1;
  top: 100%;
}
body.alert-on #alert .block-close {
  opacity: 1;
  transform: rotate(90deg);
}
body.scrolled #alert .block-content {
  transform: translate(0, -100%);
}
#alert .wp-block-button:not(.is-style-arrow) > .wp-block-button__link {
  background: #212533;
  color: #EBCC39;
}
#alert .wp-block-button:not(.is-style-arrow) > .wp-block-button__link:hover {
  background: #008453;
  color: white;
}
#alert ~ #wrap #search-top {
  margin-top: 3.75em;
}
@media screen and (max-width: 767px) {
  #alert ~ #wrap #search-top {
    margin-top: 3em;
  }
}

.wp-block-theme-blocks-counter {
  margin: calc(var(--block-margin, 6rem) * 0.3) 0;
}
.wp-block-theme-blocks-counter .block-counter {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 45px;
  gap: 0.15em;
}
.wp-block-theme-blocks-counter .block-counter > .digit {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 1.5em;
  height: 2em;
  background: var(--digit-color, #EBCC39);
  border-radius: 0.3em;
  overflow: hidden;
}
.wp-block-theme-blocks-counter .block-counter > .digit .nums {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  transition: margin-top 0.2s ease-in-out;
}
.wp-block-theme-blocks-counter .block-counter > .digit .nums > span {
  display: block;
  line-height: 2em;
  text-align: center;
}
.wp-block-theme-blocks-counter .block-counter > .digit.no-transition .nums {
  transition: none;
}
.wp-block-theme-blocks-counter .block-counter > .digit.blank .nums {
  display: none;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="1"] .nums {
  margin-top: -2em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="2"] .nums {
  margin-top: -4em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="3"] .nums {
  margin-top: -6em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="4"] .nums {
  margin-top: -8em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="5"] .nums {
  margin-top: -10em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="6"] .nums {
  margin-top: -12em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="7"] .nums {
  margin-top: -14em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="8"] .nums {
  margin-top: -16em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="9"] .nums {
  margin-top: -18em;
}
.wp-block-theme-blocks-counter .block-counter > .digit[data-digit="10"] .nums {
  margin-top: -20em;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-counter .block-counter {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-counter .block-counter {
    font-size: 40px;
  }
  .wp-block-theme-blocks-counter .block-counter > .digit {
    margin: 0 0.05em;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-counter .block-counter {
    font-size: 30px;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-counter .block-counter {
    font-size: 25px;
  }
}

.wp-block-theme-blocks-posts {
  position: relative;
}
.wp-block-theme-blocks-posts .query-posts {
  width: 100%;
}

.theme-block.wp-block-theme-blocks-posts {
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 6rem) * 0.5);
}

.wp-block-theme-blocks-carousel {
  position: relative;
}
.wp-block-theme-blocks-carousel > .layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "slides" "captions" "dots";
}
.wp-block-theme-blocks-carousel .block-captions,
.wp-block-theme-blocks-carousel .block-page {
  font-style: normal;
  font-family: Figtree, sans-serif;
  font-size: 0.889rem;
  line-height: 1.3;
  margin: 0.5rem 0 0 0;
  color: #767676;
}
.wp-block-theme-blocks-carousel .block-captions {
  grid-area: captions;
  padding: 0 4em 0 0;
}
.wp-block-theme-blocks-carousel .block-page {
  grid-area: captions;
  text-align: right;
}
.wp-block-theme-blocks-carousel .block-nav {
  --arrow-size:40px;
  position: absolute;
  grid-area: slides;
  box-sizing: border-box;
  height: 100%;
  width: auto;
  z-index: 1;
  padding: calc(var(--block-margin, 6rem) * 0.4);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.25s ease;
}
.wp-block-theme-blocks-carousel .block-nav .icon {
  transition: transform 0.25s ease;
  transform: translate(0, 0);
}
.wp-block-theme-blocks-carousel .block-nav.prev {
  left: 0;
}
.wp-block-theme-blocks-carousel .block-nav.prev:hover {
  color: white;
}
.wp-block-theme-blocks-carousel .block-nav.prev:hover .icon {
  transform: translate(-3px, 0);
}
.wp-block-theme-blocks-carousel .block-nav.next {
  right: 0;
}
.wp-block-theme-blocks-carousel .block-nav.next:hover {
  color: white;
}
.wp-block-theme-blocks-carousel .block-nav.next:hover .icon {
  transform: translate(3px, 0);
}
@media screen and (min-width: 1200px) {
  .block-featured-image .wp-block-theme-blocks-carousel .block-nav.prev, .page-blocks > .wp-block-theme-blocks-carousel .block-nav.prev {
    left: auto;
    right: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .block-featured-image .wp-block-theme-blocks-carousel .block-nav.next, .page-blocks > .wp-block-theme-blocks-carousel .block-nav.next {
    right: auto;
    left: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.wp-block-theme-blocks-carousel .block-slides {
  display: block;
  position: relative;
  z-index: 1;
  grid-area: slides;
  padding: 0;
}
.wp-block-theme-blocks-carousel .slide {
  position: relative;
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide > .layout {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-carousel .slide > .layout p {
  margin-bottom: 0.5em;
}
.wp-block-theme-blocks-carousel .slide > .layout p.is-style-default {
  color: #6896A3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block + .theme-block {
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed,
.wp-block-theme-blocks-carousel .slide .wp-block-image {
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed figcaption,
.wp-block-theme-blocks-carousel .slide .wp-block-image figcaption {
  display: none;
}
.hentry.excerpt .wp-block-theme-blocks-carousel .slide .wp-block-image {
  padding: 0 0 66.666%;
}
.hentry.excerpt .wp-block-theme-blocks-carousel .slide .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.is-first-post-featured .hentry.excerpt:first-child .wp-block-theme-blocks-carousel .slide .wp-block-image, .block-featured-posts .hentry.excerpt:first-child .wp-block-theme-blocks-carousel .slide .wp-block-image {
  padding: 0 0 85%;
}
.wp-block-theme-blocks-carousel .block-dots {
  grid-area: dots;
  position: relative;
  display: flex;
  align-self: end;
  justify-content: center;
  z-index: 10;
  margin: 0 auto calc(var(--block-margin, 6rem) * 0.5);
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-carousel .block-slides {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav {
    display: none !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: transparent;
    padding: 2em 0.5em;
  }
  .wp-block-theme-blocks-carousel .block-nav.prev {
    left: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav.next {
    right: 0;
  }
}

.odometer {
  display: inline-block;
  position: relative;
  line-height: 1;
  display: flex;
  gap: var(--gap);
  justify-content: center;
  --height:1.67em;
}
.odometer .digit {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  background: #EBCC39;
  border-radius: 0.3rem;
  padding: 0 0.25em;
  height: var(--height);
}
.odometer .digit .spacer {
  opacity: 0;
}
.odometer .digit .track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.odometer .digit .digits {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform ease-in-out 2s;
}
.odometer .digit .digits i {
  position: relative;
  width: 1em;
  height: var(--height);
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  font-style: normal;
  line-height: var(--height);
}
.odometer .digit.on .digits {
  transform: translateY(-100%);
}
.odometer .digit:nth-last-child(3n) {
  margin-left: var(--gap);
}

.wp-block-theme-blocks-count-up {
  --gap: 0.15em;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 3rem;
  line-height: 1;
}
.wp-block-theme-blocks-count-up .block-prefix {
  line-height: 1;
}
.wp-block-theme-blocks-count-up .block-count {
  position: relative;
  margin: 0 var(--gap);
}
.wp-block-theme-blocks-count-up .block-suffix {
  font-size: 0.7em;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-count-up {
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-count-up {
    font-size: 1.5rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 0;
  clear: both;
  font-family: Figtree, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.heading em {
  text-transform: none;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.heading.inline {
  display: inline;
  margin-right: 1em;
}
h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a,
.heading > a {
  color: inherit;
}
h1 .text > a,
h2 .text > a,
h3 .text > a,
h4 .text > a,
h5 .text > a,
h6 .text > a,
.heading .text > a {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  color: #008453;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.heading:first-child {
  margin-top: 0;
}
h1:not(.is-style-section-heading):last-child,
h2:not(.is-style-section-heading):last-child,
h3:not(.is-style-section-heading):last-child,
h4:not(.is-style-section-heading):last-child,
h5:not(.is-style-section-heading):last-child,
h6:not(.is-style-section-heading):last-child,
.heading:not(.is-style-section-heading):last-child {
  margin-bottom: 0;
}
h1.has-text-align-center,
h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center,
h6.has-text-align-center,
.heading.has-text-align-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
h1 + .theme-block.is-style-content-width, h1 + .theme-block.wp-block-image,
h2 + .theme-block.is-style-content-width,
h2 + .theme-block.wp-block-image,
h3 + .theme-block.is-style-content-width,
h3 + .theme-block.wp-block-image,
h4 + .theme-block.is-style-content-width,
h4 + .theme-block.wp-block-image,
h5 + .theme-block.is-style-content-width,
h5 + .theme-block.wp-block-image,
h6 + .theme-block.is-style-content-width,
h6 + .theme-block.wp-block-image,
.heading + .theme-block.is-style-content-width,
.heading + .theme-block.wp-block-image {
  margin-top: 3em;
}
h1.has-subheading:before,
h2.has-subheading:before,
h3.has-subheading:before,
h4.has-subheading:before,
h5.has-subheading:before,
h6.has-subheading:before,
.heading.has-subheading:before {
  content: var(--subheading);
  position: relative;
  display: block;
  margin: 0 0 0.5rem;
  text-transform: none;
  font-size: clamp(1rem, 0.165vw + 0.964rem, 1.111rem);
  font-weight: 700;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  h1.has-subheading:before,
  h2.has-subheading:before,
  h3.has-subheading:before,
  h4.has-subheading:before,
  h5.has-subheading:before,
  h6.has-subheading:before,
  .heading.has-subheading:before {
    margin: 0 0 calc(var(--block-margin, 6rem) * 1);
  }
}
h1.has-subheading.is-style-section-heading:before,
h2.has-subheading.is-style-section-heading:before,
h3.has-subheading.is-style-section-heading:before,
h4.has-subheading.is-style-section-heading:before,
h5.has-subheading.is-style-section-heading:before,
h6.has-subheading.is-style-section-heading:before,
.heading.has-subheading.is-style-section-heading:before {
  left: 50%;
  translate: -50% 0;
}

.h1,
h1 {
  font-size: clamp(2.5rem, 1.653vw + 2.142rem, 3.611rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.h2,
h2 {
  font-size: clamp(2.111rem, 0.579vw + 1.986rem, 2.5rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.h3,
h3 {
  font-size: clamp(1.667rem, 0.413vw + 1.577rem, 1.944rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.h4,
h4 {
  margin-bottom: 0.3em;
  font-size: clamp(1.333rem, 0.165vw + 1.298rem, 1.444rem);
  line-height: 1.2;
}

.h5,
h5 {
  margin-bottom: 0.5rem;
  font-size: 0.9444444444rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}

.h6,
h6 {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.3;
}

[class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h1:not(.is-style-section-heading), [class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h2:not(.is-style-section-heading),
[class*=theme-block] + h1:not(.is-style-section-heading),
[class*=theme-block] + h2:not(.is-style-section-heading),
p + h1:not(.is-style-section-heading),
p + h2:not(.is-style-section-heading),
ol + h1:not(.is-style-section-heading),
ol + h2:not(.is-style-section-heading),
ul + h1:not(.is-style-section-heading),
ul + h2:not(.is-style-section-heading) {
  margin-top: calc(var(--block-margin, 6rem) * 1);
}
@media screen and (max-width: 767px) {
  [class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h1:not(.is-style-section-heading), [class*=wp-block]:not(.wp-block-separator, .is-style-section-heading) + h2:not(.is-style-section-heading),
  [class*=theme-block] + h1:not(.is-style-section-heading),
  [class*=theme-block] + h2:not(.is-style-section-heading),
  p + h1:not(.is-style-section-heading),
  p + h2:not(.is-style-section-heading),
  ol + h1:not(.is-style-section-heading),
  ol + h2:not(.is-style-section-heading),
  ul + h1:not(.is-style-section-heading),
  ul + h2:not(.is-style-section-heading) {
    margin-top: calc(var(--block-margin, 6rem) * 0.75);
  }
}

[class*=wp-block]:not(.wp-block-separator, .wp-block-heading) + h3,
[class*=theme-block] + h3,
p + h3,
ol + h3,
ul + h3 {
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
}

[class*=wp-block] + h4, [class*=wp-block] + h5, [class*=wp-block] + .h5, [class*=wp-block] + h6, [class*=wp-block] + .h6,
[class*=theme-block] + h4,
[class*=theme-block] + h5,
[class*=theme-block] + .h5,
[class*=theme-block] + h6,
[class*=theme-block] + .h6,
p + h4,
p + h5,
p + .h5,
p + h6,
p + .h6,
ol + h4,
ol + h5,
ol + .h5,
ol + h6,
ol + .h6,
ul + h4,
ul + h5,
ul + .h5,
ul + h6,
ul + .h6 {
  margin-top: calc(var(--block-margin, 6rem) * 0.4);
}

.is-style-expandable {
  --highlight-color: #008453;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
}
.is-style-expandable:hover {
  color: var(--highlight-color);
}
.is-style-expandable:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.6em;
  text-align: center;
  margin: 0.1em 0.2em 0 0;
  border-radius: 50%;
  transition: all 0.25s ease;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f061";
  color: white;
  background: var(--highlight-color);
}
h3.is-style-expandable:before {
  top: 0.17em;
}

h4.is-style-expandable:before {
  top: 0.2em;
}

h5.is-style-expandable:before {
  top: 0.2em;
}

h6.is-style-expandable:before {
  top: 0.2em;
}

.is-style-expandable:focus {
  outline: none;
  text-decoration: underline;
}
.is-style-expandable.opened:before {
  transform: rotate(90deg);
  background-color: var(--highlight-color);
}
@media screen and (min-width: 768px) {
  body.theme .is-style-expandable.mobile-expand {
    cursor: default;
    padding-top: 0;
    border-top: 0;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    display: none;
  }
  body.theme .is-style-expandable.mobile-expand + .expand-content {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  body.theme .is-style-expandable.mobile-expand {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    padding-top: 2rem;
  }
  body.theme .is-style-expandable.mobile-expand:before {
    margin-top: 2rem;
  }
}

.expand-content {
  display: none;
  margin: 0;
  padding-bottom: 1.5em;
}
.expand-content + .is-style-expandable {
  margin-top: 1em;
}

h1.is-style-section-heading,
h2.is-style-section-heading,
h3.is-style-section-heading {
  margin-top: calc(var(--block-margin, 6rem) * 2);
  margin-bottom: calc(var(--block-margin, 6rem) * 0.25);
  padding: calc(var(--block-margin, 6rem) * 0.25) 0 0;
}
h1.is-style-section-heading:after,
h2.is-style-section-heading:after,
h3.is-style-section-heading:after {
  content: " ";
  display: block;
  height: 2px;
  background: currentColor;
  margin: calc(var(--block-margin, 6rem) * 0.25) 0 0;
  transition: 0.5s ease-in-out;
}
h1.is-style-section-heading.appear-on-scroll:after,
h2.is-style-section-heading.appear-on-scroll:after,
h3.is-style-section-heading.appear-on-scroll:after {
  width: 0;
}
h1.is-style-section-heading.appear-on-scroll.appeared:after,
h2.is-style-section-heading.appear-on-scroll.appeared:after,
h3.is-style-section-heading.appear-on-scroll.appeared:after {
  width: 100%;
}
h1.is-style-section-heading > .text,
h2.is-style-section-heading > .text,
h3.is-style-section-heading > .text {
  display: inline-block;
}

.is-style-guide {
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 10;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  padding: calc(var(--block-margin, 6rem) * 0.25) var(--gutter-right) calc(var(--block-margin, 6rem) * 0.25) var(--gutter-left);
  background: #f4f4f4;
  font-size: 2rem;
  text-transform: uppercase;
}

h1.is-style-numbered strong:first-child, h2.is-style-numbered strong:first-child, h3.is-style-numbered strong:first-child {
  color: #EBCC39;
  font-size: 80px;
  font-style: italic;
  line-height: 1;
}
@media screen and (min-width: 900px) {
  h1.is-style-numbered strong:first-child, h2.is-style-numbered strong:first-child, h3.is-style-numbered strong:first-child {
    position: absolute;
    top: -0.05em;
    right: 100%;
    width: 5rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  h1.is-style-numbered strong:first-child, h2.is-style-numbered strong:first-child, h3.is-style-numbered strong:first-child {
    font-size: 60px;
    display: block;
  }
}

.wp-block-buttons {
  margin-bottom: 1em;
  gap: calc(var(--block-margin, 6rem) * 0.25);
  /*    @media screen and (max-width:$mobile-breakpoint) {                        
          >.wp-block-button,
          >.wp-block-button.wp-block-button {
              &:last-child {
                  margin-left: auto;
                  margin-right: auto;
              }
          }
      }
  */
}
.wp-block-buttons:last-child {
  margin-bottom: 0;
}
.wp-block-buttons > .wp-block-button:last-child,
.wp-block-buttons > .wp-block-button.wp-block-button:last-child {
  margin-right: 0;
}
.wp-block-buttons.is-content-justification-center {
  display: flex;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
}
.wp-block-buttons.has-background {
  padding: 1em;
  border-radius: 1em;
}
.wp-block-theme-blocks-posts + .wp-block-buttons {
  margin: calc(var(--block-margin, 6rem) * 0.5) auto;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-posts + .wp-block-buttons {
    margin: calc(var(--block-margin, 6rem) * 0.25) auto;
  }
}

.wp-block-button {
  position: relative;
  display: inline-block;
  line-height: 1;
  /*
  &.is-style-outline {
      >.wp-block-button__link {
          background-color: transparent;
          //color: $color-text;
          border: 2px solid currentColor;
          &:hover {
              background-color: $color-green;
              border-color: $color-green;
              color: $color-black !important;
          }
          .icon {
              border: 0;
          }
          @include has-colors('color');
          .has-background & {
              &:hover {
                  background-color: $color-green;
                  color: $color-black !important;
                  // border: 2px solid $color-white;
              }
          }
      }
  }
  */
}
.wp-block-button > .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 0;
  text-decoration: none;
  font-family: Figtree, sans-serif;
  font-weight: 700;
  font-size: 0.8888888889rem;
  line-height: 1;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  transition: 0.25s ease;
  -webkit-font-smoothing: antialiased;
}
.wp-block-button > .wp-block-button__link .icon.is-prepended-icon {
  margin: 0 0.5em 0 0;
}
.wp-block-button > .wp-block-button__link:visited {
  color: inherit;
}
.wp-block-button > .wp-block-button__link .icon.arrow:before {
  margin: 0 0 0 0.7em;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f105";
  font-size: 1.2em;
}
.wp-block-button[data-show-arrow] > .wp-block-button__link:after {
  margin: 0 0 0 0.8em;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f105";
  transition: transform 0.25s ease;
}
.wp-block-button[data-show-arrow] > .wp-block-button__link:hover:after {
  transform: translate(3px, 0);
}
.wp-block-button.has-icon > .wp-block-button__link:before, .wp-block-button.has-no-icon > .wp-block-button__link:before {
  display: none;
}
.wp-block-button:not(.is-style-arrow) > .wp-block-button__link {
  padding: 1rem 1.3rem 1rem 1.4rem;
  color: #212533;
  background: #EBCC39;
  text-transform: uppercase;
  border: 0;
  border-radius: 0px;
}
.wp-block-button:not(.is-style-arrow) > .wp-block-button__link:hover {
  background: #008453;
  color: #fff;
}
.wp-block-button.is-style-text > .wp-block-button__link {
  padding: 0.5rem 0;
  background: none;
  border: 0;
}
.wp-block-button.is-style-text > .wp-block-button__link:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: 0.25s ease;
}
.wp-block-button.is-style-text > .wp-block-button__link:hover {
  background: none;
  color: inherit;
}
.wp-block-button.is-style-text > .wp-block-button__link:hover:after {
  width: 0%;
}
.wp-block-button.no-arrow > .wp-block-button__link .icon.css-arrow {
  display: none;
}
.wp-block-button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-button.done {
  opacity: 0.5;
}
.wp-block-button.done > .wp-block-button__link {
  --grayed: rgba(100,100,100,.5);
  cursor: default;
  color: var(--grayed);
  border-color: var(--grayed);
  background-color: transparent;
}
.wp-block-button.done > .wp-block-button__link:hover {
  border-color: var(--grayed);
  color: var(--grayed);
  background-color: transparent;
}

p + .wp-block-buttons:last-child {
  margin-top: calc(var(--block-margin, 6rem) * 0.2963);
}

.wp-block-columns.is-style-promo {
  text-align: center;
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 6rem) * 1);
}
.wp-block-columns.is-style-promo .wp-block-column {
  margin: 0 auto;
  max-width: 280px;
  --block-margin: 1rem;
}
.wp-block-columns.is-style-promo h3 {
  margin-top: 1.778rem;
  margin-bottom: 1rem;
}
.wp-block-columns.is-style-promo .wp-block-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.wp-block-columns.mobile-carousel .slide {
  margin: 0 auto;
}
.wp-block-columns.mobile-carousel.mobile-carousel-on {
  display: block;
  position: relative;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .slide {
  display: inline-block;
  vertical-align: top;
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .nav {
  --icon-size: 2rem;
  position: absolute;
  z-index: 1;
  top: 25%;
  width: var(--icon-size);
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 132, 83, 0.3);
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .nav.next {
  right: var(--gutter-right);
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .nav.next:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f105";
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .nav.prev {
  left: var(--gutter-left);
}
.wp-block-columns.mobile-carousel.mobile-carousel-on .nav.prev:before {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f104";
}

figure.wp-caption {
  margin: calc(var(--block-margin, 6rem) * 1) 0;
  max-width: 100%;
}
figure.wp-caption:first-child {
  margin-top: 0;
}
figure.wp-caption:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 767px) {
  figure.wp-block-image.ratio-fit-square img {
    width: 85% !important;
    margin: auto;
  }
}
.wp-block-image {
  --block-margin-multiplier: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.wp-block-image.is-resized img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-image.is-style-full-width {
  display: block;
}
.wp-block-image.is-style-full-width img {
  display: block;
  width: 100%;
}
.wp-block-image.size-large {
  margin-top: calc(var(--block-margin, 6rem) * calc(var(--block-margin-multiplier) * 0.75));
  margin-bottom: calc(var(--block-margin, 6rem) * calc(var(--block-margin-multiplier) * 0.75));
}
.wp-block-image.is-style-content-width, .wp-block-image.aligncenter {
  display: block;
}
.wp-block-image.is-style-content-width img, .wp-block-image.aligncenter img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image.is-style-content-width img {
  width: 100%;
}
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wp-block-image.is-style-full-width, .wp-block-image.size-large, .wp-block-image.is-style-content-width, .wp-block-image.aligncenter {
    margin-top: calc(var(--block-margin, 6rem) * 0.5);
    margin-bottom: calc(var(--block-margin, 6rem) * 0.5);
  }
}
@media screen and (min-width: 601px) {
  .wp-block-image.alignright {
    margin-top: 1em;
    margin-left: calc(var(--block-margin, 6rem) * 0.5);
  }
  .wp-block-image.alignleft {
    margin-top: 1em;
    margin-right: calc(var(--block-margin, 6rem) * 0.5);
  }
}
.wp-block-image img {
  display: block;
  margin: 0;
  width: 100%;
  border-radius: inherit;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-image figcaption {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.75em 0;
  font-size: 0.8em;
  line-height: 1.3;
  text-align: left;
  font-style: normal;
}
.wp-block-image.is-style-circle {
  position: relative;
  padding: 0 0 100%;
}
.wp-block-image.is-style-circle:first-child {
  margin-top: 0;
}
.wp-block-image.is-style-circle:last-child {
  margin-bottom: 0;
}
.wp-block-image.is-style-circle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.wp-block-image.is-style-circle figcaption {
  display: none;
}
@media screen and (max-width: 600px) {
  .wp-block-image.alignleft, .wp-block-image.alignright {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
.wp-block-image.hide-caption figcaption {
  display: none;
}

.wp-block-group {
  --block-margin-multiplier: 1;
  position: relative;
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 6rem) * 0.5);
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.page-blocks > .wp-block-group {
  margin-top: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier));
  margin-bottom: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier));
}
.page-blocks > .wp-block-group:first-child {
  margin-top: 0;
}
.page-blocks > .wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-separator + .wp-block-group {
  margin-top: calc(var(--block-margin, 6rem) * 0.5);
}

.wp-block-group.has-background {
  --block-margin-multiplier: 1;
  position: relative;
  padding: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier)) calc(var(--block-margin, 6rem) * 0.5);
  padding-bottom: calc(var(--block-margin, 6rem) * calc(var(--block-margin-multiplier) * 0.833));
}
.page-blocks > .wp-block-group.has-background:not(.is-style-full-width) {
  padding-left: calc(var(--block-margin, 6rem) * 1);
  padding-right: calc(var(--block-margin, 6rem) * 1);
  margin-left: calc(var(--block-margin, 6rem) * -1);
  margin-right: calc(var(--block-margin, 6rem) * -1);
}
@media screen and (max-width: 1024px) {
  .page-blocks > .wp-block-group.has-background:not(.is-style-full-width) {
    padding-left: var(--gutter-left);
    padding-right: var(--gutter-left);
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-left) * -1);
  }
}

.wp-block-group.is-style-full-width {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
}
.wp-block-group.is-style-full-width:last-child {
  margin-bottom: calc(var(--padding-bottom, 0) * -1);
}
.wp-block-group.is-style-full-width.is-layout-constrained > .theme-block.is-style-full-width {
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  padding-left: var(--wrap-gutter);
  padding-right: var(--wrap-gutter);
}

@media screen and (min-width: 768px) {
  .wp-block-group.content-two-columns {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}

.wp-block-quote {
  position: relative;
  padding: 0;
  margin: calc(var(--block-margin, 6rem) * 0.6) 0 calc(var(--block-margin, 6rem) * 0.45);
  border: 0;
  font-size: clamp(1.167rem, 0.165vw + 1.131rem, 1.278rem);
  font-weight: 600;
  line-height: 1.4;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote.has-text-align-center {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-quote.has-text-align-left {
  max-width: 1024px;
}
.wp-block-quote.has-text-align-right {
  max-width: 1024px;
  margin-left: auto;
}
.wp-block-quote p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: inherit;
  line-height: inherit;
}
.wp-block-quote p + p {
  margin-top: 0.5rem;
}
.wp-block-quote:before {
  height: 70px;
  width: 70px;
  background-color: #EBCC39;
  border-radius: 50%;
  display: inline-block;
  content: "";
  position: absolute;
  top: -28px;
  left: -30px;
  z-index: -10;
}
.wp-block-quote cite {
  display: block;
  margin: 1em 0 0;
  font-size: 0.7em;
  text-transform: uppercase;
  font-style: normal;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}

.wp-block-embed {
  position: relative;
  margin: 2em 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}

.wp-block-embed.is-type-video > .wp-block-embed__wrapper,
.wp-block-embed.is-type-rich > .wp-block-embed__wrapper {
  position: relative;
  padding: 0 0 56.25%;
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper:before,
.wp-block-embed.is-type-rich > .wp-block-embed__wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--header-border-radius);
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > iframe,
.wp-block-embed.is-type-rich > .wp-block-embed__wrapper > iframe {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--header-border-radius);
}

.wp-block-embed.is-type-video.has-preview-poster,
.wp-block-embed.is-type-rich.has-preview-poster {
  --highlight-color: #008453;
}
.page-blocks > .wp-block-embed.is-type-video.has-preview-poster,
.page-blocks > .wp-block-embed.is-type-rich.has-preview-poster {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:after,
.wp-block-embed.is-type-rich.has-preview-poster > .wp-block-embed__wrapper:after {
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url(images/loading-white.png) no-repeat center top;
  width: 30px;
  height: 30px;
  animation: loading 1s steps(19) infinite;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed,
.wp-block-embed.is-type-rich.has-preview-poster > .wp-block-embed__wrapper > a.embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed img,
.wp-block-embed.is-type-rich.has-preview-poster > .wp-block-embed__wrapper > a.embed img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: var(--header-border-radius);
  opacity: 1;
  transition: opacity 0.25s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after,
.wp-block-embed.is-type-rich.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f04b";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: var(--highlight-color);
  color: #fff;
  font-size: 50px;
  border-radius: 50%;
  border: 10px solid currentColor;
  text-align: center;
  transition: border-color 0.25s ease, font-size 0.25s ease;
  text-indent: 5px;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after,
.wp-block-embed.is-type-rich.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  font-size: 60px;
  border-color: var(--highlight-color);
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:after,
.wp-block-embed.is-type-rich.has-preview-poster.loaded > .wp-block-embed__wrapper:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:before, .wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:after,
.wp-block-embed.is-type-rich.has-preview-poster.loaded > .wp-block-embed__wrapper:before,
.wp-block-embed.is-type-rich.has-preview-poster.loaded > .wp-block-embed__wrapper:after {
  z-index: 2;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed img,
.wp-block-embed.is-type-rich.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed img {
  opacity: 0.25;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed:after,
.wp-block-embed.is-type-rich.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed:after {
  display: none;
}
.wp-block-embed.is-type-video.has-preview-poster > figcaption,
.wp-block-embed.is-type-rich.has-preview-poster > figcaption {
  font-family: Figtree, sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .wp-block-embed.is-type-video.has-preview-poster > figcaption,
  .wp-block-embed.is-type-rich.has-preview-poster > figcaption {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    margin: 50px 0 0;
    transform: translate(-50%, 0%);
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    font-size: 30px;
  }
}

.wp-block-separator {
  margin: calc(var(--block-margin, 6rem) * 0.5) 0;
  width: 100%;
  border: 2px solid currentColor;
  border-width: 2px 0 0;
  height: 0;
  transition: 0.5s ease-in-out;
}
.wp-block-separator.has-small-margin {
  margin: calc(var(--block-margin, 6rem) * 0.75) auto;
}
.wp-block-separator.trigger-on-scroll {
  width: 0;
}
.wp-block-separator.trigger-on-scroll.appeared {
  width: 100%;
}

ul.is-style-formatted, ol.is-style-formatted {
  padding: 0;
  margin: 1em 0;
  list-style: none;
  line-height: 1.2;
}
ul.is-style-formatted:first-child, ol.is-style-formatted:first-child {
  margin-top: 0;
}
ul.is-style-formatted:last-child, ol.is-style-formatted:last-child {
  margin-bottom: 0;
}
ul.is-style-formatted > li, ol.is-style-formatted > li {
  position: relative;
  padding: 0.6em 0 0.6em 3em;
  border-bottom: 1px solid currentColor;
}
ul.is-style-formatted > li:first-child, ol.is-style-formatted > li:first-child {
  border-top: 1px solid currentColor;
}
ul.is-style-formatted > li:before, ol.is-style-formatted > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.9em;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8em;
}
h1 + ul.is-style-formatted, h2 + ul.is-style-formatted, h3 + ul.is-style-formatted, h4 + ul.is-style-formatted, h5 + ul.is-style-formatted, h6 + ul.is-style-formatted, h1 + ol.is-style-formatted, h2 + ol.is-style-formatted, h3 + ol.is-style-formatted, h4 + ol.is-style-formatted, h5 + ol.is-style-formatted, h6 + ol.is-style-formatted {
  margin-top: 0;
}

ol.is-style-formatted > li:nth-child(1):before {
  content: "1";
}
ol.is-style-formatted > li:nth-child(2):before {
  content: "2";
}
ol.is-style-formatted > li:nth-child(3):before {
  content: "3";
}
ol.is-style-formatted > li:nth-child(4):before {
  content: "4";
}
ol.is-style-formatted > li:nth-child(5):before {
  content: "5";
}
ol.is-style-formatted > li:nth-child(6):before {
  content: "6";
}
ol.is-style-formatted > li:nth-child(7):before {
  content: "7";
}
ol.is-style-formatted > li:nth-child(8):before {
  content: "8";
}
ol.is-style-formatted > li:nth-child(9):before {
  content: "9";
}
ol.is-style-formatted > li:nth-child(10):before {
  content: "10";
}

.wp-block-cover.is-style-white-box {
  padding-top: calc(var(--block-margin, 6rem) * 1.5);
  padding-bottom: calc(var(--block-margin, 6rem) * 1.5);
}
.wp-block-cover.is-style-white-box > .wp-block-cover__inner-container {
  position: relative;
  box-sizing: border-box;
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: calc(var(--block-margin, 6rem) * 0.5);
  background: #fff;
  color: #212533;
  text-align: center;
}
.wp-block-cover.is-style-white-box > .wp-block-cover__inner-container p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wp-block-cover.is-style-hero {
  --block-margin-multiplier: .8;
  --bar-height: calc(var(--block-margin, 6rem) * var(--block-margin-multiplier));
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr var(--bar-height);
  grid-template-areas: "main" "bar";
  min-height: 80vh;
  padding: 0;
  text-align: center;
}
.wp-block-cover.is-style-hero:before {
  content: " ";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: none;
  height: var(--bar-height);
  background: url(images/pattern_skyblue_strip.svg) 50% 50%;
  background-size: auto var(--bar-height);
  opacity: 0.5;
}
.wp-block-cover.is-style-hero > .wp-block-cover__background {
  grid-area: main;
}
.wp-block-cover.is-style-hero > .wp-block-cover__image-background,
.wp-block-cover.is-style-hero > video.wp-block-cover__video-background {
  grid-area: main;
}
.wp-block-cover.is-style-hero h1 {
  margin-left: auto;
  margin-right: auto;
  max-width: 10em;
  font-size: clamp(2.5rem, 2.893vw + 1.873rem, 4.444rem);
  line-height: 1.05;
}
.wp-block-cover.is-style-hero .heading.h5 {
  margin-top: calc(var(--block-margin, 6rem) * 0.25);
}
.wp-block-cover.is-style-hero > .wp-block-cover__inner-container {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  grid-area: main;
  max-width: 50em;
  margin: 0 auto;
  padding: calc(var(--block-margin, 6rem) * 2) 0 calc(var(--block-margin, 6rem) * 1);
}
@media screen and (min-height: 700px) {
  .wp-block-cover.is-style-hero {
    min-height: calc(100vh - var(--header-height, 120px) - var(--wp-admin--admin-bar--height, 0px));
  }
}
@media screen and (max-height: 1024px) {
  .wp-block-cover.is-style-hero > .wp-block-cover__inner-container {
    padding-top: calc(var(--block-margin, 6rem) * 0.5);
    padding-bottom: calc(var(--block-margin, 6rem) * 0.5);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-cover.is-style-hero {
    align-items: end;
  }
  .wp-block-cover.is-style-hero > .wp-block-cover__inner-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.wp-block-file {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.wp-block-file .wp-file__inner-container {
  max-width: 1024px;
  margin: 0 auto;
}
.wp-block-file object {
  display: block;
  width: 100%;
  margin: 0 auto;
  height: var(--block-embed-height, 600px);
}
.wp-block-file object + .download {
  margin: 1em 0 0;
}
.wp-block-file .wp-block-button {
  display: inline-flex;
  align-items: center;
  gap: var(--gap, 1em);
}
.wp-block-file .wp-block-button > .wp-block-button__link {
  white-space: nowrap;
}
.wp-block-file.is-style-preview {
  --gap: .5em;
  flex-grow: 1;
  max-width: 200px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: var(--gap);
}
@media screen and (max-width: 767px) {
  .wp-block-file.is-style-preview {
    max-width: calc(50% - var(--gap) * 2);
  }
}
@media screen and (max-width: 500px) {
  .wp-block-file.is-style-preview {
    max-width: 100%;
  }
}
.has-background .wp-block-file.is-style-preview {
  background-color: #fff;
}
.wp-block-file.is-style-preview .block-preview {
  position: relative;
  display: block;
  padding: 0 0 66%;
  margin: 0 0 var(--gap);
  background: rgba(0, 0, 0, 0.1);
}
.wp-block-file.is-style-preview .block-preview img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-file.is-style-preview .wp-block-button__link {
  --icon-size: 2em;
  padding: 0;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  border-radius: 50%;
  text-align: center;
}
.wp-block-file.is-style-preview .wp-block-button__link .icon {
  margin: 0 auto;
}
.wp-block-file.is-style-preview .label {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
}/*# sourceMappingURL=style.css.map */