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

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
/*
Fonts
*/
:root {
  --theme-font-serif: "Source Serif 4", serif;
  --theme-font-sans-serif: "Source Sans 3", Helvetica, arial, sans-serif;
}

/*
Colors
*/
:root {
  --color-red: #8c1515;
  --color-bright-red: #b1040e;
  --color-cardinal-red: #8c1515;
  --color-cardinal-bright-red: #b1040e;
  --color-gold: #E6A926;
  --color-orange: #e98300;
  --color-green: #1F5E54;
  --color-teal: #007c92;
  --color-light-teal: #3FAF91;
  --color-dark: #4d4f53;
  --color-darker: #3c3c3c;
  --color-darkest: #2e2d29;
  --color-medium: #cecece;
  --color-light: #f4f4f4;
  --color-cardinal-red: #8c1515;
  --color-digital-red: #b1040e;
  --color-palo-alto-green: #175e54;
  --color-palo-verde: #279989;
  --color-light-palo-verde: #59b3a9;
  --color-dark-sky-blue: #016895;
  --color-light-sky-blue: #6fc3ff;
  --color-poppy-orange: #e98300;
  --color-light-poppy: #f9a44a;
  --color-dark-yellow: #fec51d;
  --color-archway-brown: #5d4b3c;
  --color-dark-beige: #9c9477;
  --color-beige: #d1c298;
  --color-light-beige: #ddd1b6;
  --color-medium-brown: #c0875c;
  --color-light-brown: #edc5a4;
  --color-mint-green: #a6dac8;
  --color-black: #2e2d29;
  --color-cool-gray: #53565a;
  --color-light-stone-gray: #d4d1d1;
  --color-light-gray: #f4f4f4;
  --color-white: #ffffff;
  interpolate-size: allow-keywords;
}

/*
Gutters
*/
/*
Animations
*/
/*
Misc
*/
:root {
  --font-base-size: 18px;
  --gutter: calc((100vw - 1200px) / 2);
  --gutter-left: calc((100vw - 1200px) / 2);
  --gutter-right: calc((100vw - 1200px) / 2);
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
  --block-margin: 4rem;
}
@media screen and (max-width: 1324.1379310345px) {
  :root {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
    --gutter: 4.6875vw;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --block-margin: 3.6rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --block-margin: 3.2rem;
  }
}

@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: var(--theme-font-sans-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #2e2d29;
  text-align: left;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
  /*
  @media screen and (min-width:(1200px + 1px)) {
      font-size: $font-base-size * 1.277;
  }
  */
}

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

body {
  padding: 0;
  background: #ffffff;
  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: 600;
  font-style: italic;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.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: var(--theme-font-sans-serif);
}

.text-serif {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}

.text-headline {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}

.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-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;
}

body a {
  color: currentColor;
  transition: 0.2s 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: 1.5px;
  text-underline-offset: 0.05em;
}
body a:hover {
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
}
body a.more {
  white-space: nowrap;
}

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;
  font-size: 1em;
}
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;
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

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

.has-padding-bottom {
  padding-bottom: calc(var(--block-margin, 4rem) * 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, 4rem) * 1) !important;
}

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

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

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

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

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

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

.has-neg-half-margin-bottom {
  margin-bottom: calc(var(--block-margin, 4rem) * -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-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;
}

.has-black-color {
  --color: #2e2d29;
}

.has-white-color {
  --color: #ffffff;
}

.has-black-background-color {
  --background-color: #2e2d29;
}

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

.query-posts {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  --gap: 2rem;
  --column-gap: var(--gap);
  --row-gap: calc(var(--gap) * 1.5);
  --column-count: 1;
  --hentry-width: calc((100% / var(--column-count)) - ((var(--gap) * (var(--column-count) - 1)) / var(--column-count)));
  gap: var(--gap);
  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);
  margin-bottom: var(--gap);
}
.query-posts:last-child {
  margin-bottom: 0;
}
.query-posts .extended-info {
  --hentry-width: 100%;
  margin: 0 auto;
  width: 100%;
}
.query-posts .no-results {
  margin: calc(var(--block-margin, 4rem) * 0.5) auto;
  width: 100% !important;
  margin-left: 0 !important;
  text-align: center;
}
.query-posts .hentry.load-more {
  order: 100000;
}
.query-posts .hentry.promo-wide {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}
.query-posts .hentry.empty.static {
  order: 10000 !important;
}
.query-posts .hentry.heading {
  grid-column: 1/-1;
}
.query-posts > h2,
.query-posts > h3 {
  grid-column: 1/-1;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}

.query-posts.one-across {
  --column-count:1;
  display: grid;
}

.query-posts.two-across {
  --column-count:2;
  display: grid;
}
@media screen and (max-width: 767px) {
  .query-posts.two-across {
    --column-count: 1;
  }
}

.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: 1024px) {
  .query-posts.three-across {
    --column-count:2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    --column-count: 1;
    --gap:1.5rem;
  }
}

.query-posts.four-across {
  --column-count: 4;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.four-across {
    --column-count:3;
  }
}
@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;
  }
}

.query-posts.three-across.has-promo > .hentry.promo {
  order: -50 !important;
}
.query-posts.three-across.has-promo > .hentry:nth-child(1),
.query-posts.three-across.has-promo > .hentry:nth-child(2),
.query-posts.three-across.has-promo > .hentry:nth-child(3),
.query-posts.three-across.has-promo > .hentry:nth-child(4),
.query-posts.three-across.has-promo > .hentry:nth-child(5) {
  order: -100;
}

.query-posts.three-across.has-promo-first-row > .hentry.promo {
  order: -50 !important;
}
.query-posts.three-across.has-promo-first-row > .hentry:nth-child(1),
.query-posts.three-across.has-promo-first-row > .hentry:nth-child(2) {
  order: -100;
}

.query-posts.five-across {
  --gap: 1rem;
  --column-count: 5;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.five-across {
    --column-count:4;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.five-across {
    --column-count:3;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.five-across {
    --column-count: 2;
  }
}

.background-circle {
  --s: var(--circle-size, 400px);
  --t: var(--circle-top, 200px);
  display: block;
  position: absolute;
  top: calc(var(--t) + var(--offset-y, 0px));
  left: 0;
  width: 100%;
  height: var(--s);
  overflow: hidden;
}
.background-circle:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  width: var(--s);
  height: 100%;
  min-height: var(--s);
  background: url(images/circle-dashed-orange.svg) no-repeat 50% 50%;
  background-size: contain;
  translate: var(--offset-x, 0px) 0px;
}
.background-circle.right:before {
  right: var(--gutter-right);
  margin-right: calc(var(--s) / -1.5);
}
.background-circle:not(.right):before {
  left: var(--gutter-left);
  margin-left: calc(var(--s) / -1.5);
}
@media screen and (max-width: 767px) {
  .background-circle {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-group.has-background:not(.is-style-full-width):has(.gform_wrapper) {
    padding: 2rem;
  }
}

.gform-theme--framework .gf_progressbar_title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #175E54;
}
.gform-theme--framework .gf_progressbar {
  background: #A6DAC8;
}
.gform-theme--framework .gf_progressbar_percentage {
  background: #175E54 !important;
}
.gform-theme--framework .gfield--type-choice .gchoice {
  display: flex;
  align-items: center;
}

.gform-theme--framework .gfield label.gfield_label,
.gform-theme--framework .gfield legend.gfield_label {
  font-size: 18px;
  font-weight: 600;
}
.gform-theme--framework .gform-field-label--type-inline {
  font-size: 18px;
  cursor: pointer;
}
.gform-theme--framework .gform-field-label > .gfield_required {
  color: #b1040e;
}

.gform-theme--framework input[type=text].large,
.gform-theme--framework input[type=password].large,
.gform-theme--framework input[type=email].large,
.gform-theme--framework input[type=tel].large,
.gform-theme--framework input[type=url].large,
.gform-theme--framework input[type=number].large,
.gform-theme--framework textarea.small,
.gform-theme--framework textarea.medium,
.gform-theme--framework textarea.large,
.gform-theme--framework select {
  font-size: 18px;
  border-radius: 0;
}
.gform-theme--framework input[type=text].large:focus,
.gform-theme--framework input[type=password].large:focus,
.gform-theme--framework input[type=email].large:focus,
.gform-theme--framework input[type=tel].large:focus,
.gform-theme--framework input[type=url].large:focus,
.gform-theme--framework input[type=number].large:focus,
.gform-theme--framework textarea.small:focus,
.gform-theme--framework textarea.medium:focus,
.gform-theme--framework textarea.large:focus,
.gform-theme--framework select:focus {
  box-shadow: 0px 0px 0px 3px rgba(39, 153, 137, 0.19552);
  border-color: rgb(39, 153, 137);
}

@media screen and (max-width: 867px) {
  .gform-theme--framework .gfield--width-half {
    grid-column: 1/-1 !important;
  }
}

.gform-theme--framework.gform-theme--orbital form .gform_footer button.wp-block-button__link.wp-element-button, .gform-theme--framework.gform-theme--orbital form .gform-body .gform_page input[type=button], .gform-theme--framework.gform-theme--framework.gform-theme--orbital form .gform-body .gform_page input[type=submit], .gform-theme--framework.gform-theme--framework.gform-theme--orbital form .gform-body .gform_page button.wp-block-button__link {
  gap: 0.5em;
  border-radius: 0 !important;
  font-size: 18px;
  font-weight: 600;
}
.gform-theme--framework.gform-theme--orbital form .gform_footer button.wp-block-button__link.wp-element-button, .gform-theme--framework.gform-theme--orbital form .gform-body .wp-block-button .wp-block-button__link {
  height: auto;
  padding: var(--button-padding, 0.5em 1.5em);
  background: #b1040e;
}
.gform-theme--framework.gform-theme--orbital form .gform_footer button.wp-block-button__link.wp-element-button:focus, .gform-theme--framework.gform-theme--orbital form .gform-body .wp-block-button .wp-block-button__link:focus {
  box-shadow: 0px 0px 0px 3px rgba(39, 153, 137, 0.19552) !important;
  border-color: rgb(39, 153, 137);
}
.gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_previous_button, .gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_next_button {
  border-color: #b1040e;
  color: #fff;
  outline: none;
  border: none;
  border: 2px solid currentColor;
  background-color: transparent;
  color: #2e2d29;
}
.gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_previous_button:hover, .gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_next_button:hover {
  border-color: var(--hover-background-color, #8c1515);
  background-color: var(--hover-background-color, #8c1515);
  color: #fff;
}
.gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_previous_button:focus, .gform-theme--framework.gform-theme--orbital form .gform-body .gform_page .gform_page_footer input.gform_next_button:focus {
  box-shadow: 0px 0px 0px 3px rgba(39, 153, 137, 0.19552) !important;
  border-color: rgb(39, 153, 137);
}
.gform-theme--framework input[type=checkbox] label {
  cursor: pointer;
}
.gform-theme--framework input[type=checkbox]:before {
  color: #175E54 !important;
}
.gform-theme--framework input[type=checkbox]:focus {
  box-shadow: 0px 0px 0px 3px rgba(39, 153, 137, 0.19552) !important;
  border-color: rgb(39, 153, 137);
}
.gform-theme--framework input[type=radio].gfield-choice-input {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.gform-theme--framework input[type=radio] + label.gform-field-label {
  position: relative;
  padding-left: 32px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.gform-theme--framework input[type=radio] + label::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgb(104, 110, 119);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.gform-theme--framework input[type=radio]:checked + label::before {
  background-color: #fff;
  border-color: rgb(39, 153, 137);
}
.gform-theme--framework input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #175E54;
}
.gform-theme--framework input[type=radio]:focus + label.gform-field-label::before {
  box-shadow: 0px 0px 0px 3px rgba(39, 153, 137, 0.2);
}
.gform-theme--framework input.gchoice_other_control {
  margin-left: 1em;
}

@media screen and (min-width: 767px) {
  .gform-theme--framework .populate-partners .ginput_container > div,
  .gform-theme--framework .populate-topics .ginput_container > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.gform_page_footer {
  padding-top: 1rem;
}

input[type=submit],
input[type=button],
button.wp-block-button__link {
  display: inline-flex;
  align-items: center;
}
input[type=submit] > .wp-block-button__link,
input[type=button] > .wp-block-button__link,
button.wp-block-button__link > .wp-block-button__link {
  transition: 0.2s ease;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.wp-block-button__link.aligncenter,
button.wp-block-button__link.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button.wp-block-button__link:hover {
  text-decoration: none;
  background: #2e2d29;
  color: #ffffff;
  border-color: #2e2d29;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.wp-block-button__link.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.wp-block-button__link.done {
  --hover-background-color: transparent;
  cursor: default;
  color: #555;
  border-color: #555;
  border: 0;
  background: transparent !important;
}
input[type=submit].done .wp-block-button__link,
input[type=button].done .wp-block-button__link,
button.wp-block-button__link.done .wp-block-button__link {
  cursor: inherit;
  border: 0 !important;
  background: inherit !important;
}
@media screen and (max-width: 767px) {
  input[type=submit],
  input[type=button],
  button.wp-block-button__link {
    padding: 0.8em 2em;
  }
}

.input.select {
  --input-border-radius: var(--border-radius, 0);
  --input-icon-size: var(--icon-size, .5rem);
  --input-padding: var(--padding, .5rem);
  --input-font-size: var(--font-size, 1rem);
  --input-border-color: currentColor;
  --input-border-width: 0;
  --input-text-color: #2e2d29;
  --input-background-color: #ffffff;
  border-radius: 0 !important;
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  box-sizing: border-box;
  cursor: pointer;
}
.input.select.on {
  z-index: 100;
  --input-background-color: #b1040e;
  --input-text-color: #ffffff;
}
.input.select .label {
  min-width: 240px;
  min-height: 3.15em;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  box-sizing: border-box;
  padding: var(--input-padding) 1.5rem;
  font-family: var(--theme-font-sans-serif);
  font-size: var(--input-font-size);
  font-weight: 400;
  line-height: 1;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: var(--input-border-radius);
  background: var(--input-background-color, transparent) none;
  color: var(--input-text-color, inherit);
  opacity: 1;
  transition: min-width 0.2s ease;
  border-bottom: 5px solid #d9d9d9;
}
.input.select .label .value {
  display: flex;
  flex-direction: column;
}
.input.select .label em {
  font-size: 0.8888888889rem;
  font-style: normal;
  text-transform: uppercase;
  font-weight: 700;
}
.input.select .label .icon.arrow {
  margin: 0 -10px 0 10px;
  width: 24px;
  height: 24px;
  background: #8c1515;
  color: #ffffff;
  border-radius: 50%;
}
.input.select .options {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0 0 var(--input-border-radius) var(--input-border-radius);
  border: var(--input-border-width) solid var(--input-border-color);
  border-top-width: 0;
  border-bottom: 5px solid #d9d9d9;
  box-sizing: border-box;
  background: var(--input-background-color, #ffffff) none;
  color: var(--input-text-color, inherit);
  font-size: calc(var(--input-font-size) * 0.8);
  font-weight: 400;
  opacity: 0;
}
.input.select .options .optgroup {
  display: block;
  padding: var(--input-padding) 1.5em calc(var(--input-padding) * 0.7) 1.2rem;
  cursor: default;
  font-size: 0.8em;
  opacity: 0.6;
}
.input.select .options .option {
  display: block;
  padding: 0.25em 1.5rem;
  margin: 0;
  transition: background-color 0.2s ease;
  white-space: nowrap;
  /*
  &:before {
      content:' ';
      display:block;
      margin:0 0 var(--input-padding) 0;
      height:1px;
      width:100%;
      background: currentColor;
      opacity:.7;

  }
      */
}
.input.select .options .option:last-child {
  padding-bottom: 0.75em;
}
.input.select .options .option:hover {
  background-color: #8c1515;
  color: #ffffff;
}
.input.select .options .option:hover:before {
  opacity: 0;
}
.input.select.on .label {
  min-width: 240px;
  border-radius: var(--input-border-radius) var(--input-border-radius) 0 0;
  border-bottom-color: transparent;
}
.input.select.on .label .icon {
  transform: rotate(180deg);
}
.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: 2;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .input.select .options {
    display: none !important;
  }
}

body.search #ais-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: ". title ." ". ais .";
}
body.search #ais-wrapper::before {
  content: "Search";
  font-size: clamp(1.375rem, 2.048vw + 1.89rem, 3.333rem);
  line-height: 1.1;
  display: block;
  margin: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 0.5);
  grid-area: title;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  font-style: normal;
  font-optical-sizing: none;
  text-align: center;
}
body.search #ais-wrapper main#ais-main {
  grid-area: ais;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 5em;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box {
  margin-bottom: 0;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box .ais-SearchBox {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  padding: 0.25rem 1rem;
  border: 2px solid #ccc;
  background: white;
  border-radius: 5rem;
  box-sizing: border-box;
  /*&::before{
      content: " ";
      display: block;
      width: 30px;
      height: 50px;
      background: url(images/owls/point-right.png) no-repeat 50% 50%;
      background-size: contain;
      margin-right: 1em;
  }*/
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box .ais-SearchBox::after {
  font-family: "Font Awesome 6 Free";
  content: "\f002";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  background: #8c1515;
  color: #ffffff;
  border-radius: 50%;
  font-size: 13.3px;
  margin-left: 1em;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box .ais-SearchBox form.ais-SearchBox-form {
  width: 100%;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box .ais-SearchBox form.ais-SearchBox-form input {
  box-sizing: border-box;
  padding: 0;
  border: none;
  font-family: "Source Sans 3", Helvetica, arial, sans-serif;
  font-weight: inherit;
  font-size: 18px;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-search-box .ais-SearchBox form.ais-SearchBox-form input::-webkit-search-cancel-button {
  display: none;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper .search-icon {
  display: none;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-stats {
  width: 100%;
  margin-top: 1em;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-stats .ais-Stats {
  position: relative;
  width: 100%;
  text-align: center;
  top: 0;
}
body.search #ais-wrapper main#ais-main .algolia-search-box-wrapper #algolia-powered-by {
  display: none;
}
body.search #ais-wrapper main#ais-main #algolia-hits {
  padding-top: 2em;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item {
  margin: 0 0 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid gainsboro;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article {
    flex-direction: row;
    gap: 2rem;
  }
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--thumbnail {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--thumbnail {
    max-width: 190px;
    min-width: 190px;
    height: 160px;
    margin-right: 0;
  }
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--thumbnail img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  transition: 1s ease;
  transform: scale(1);
  -o-object-fit: cover;
     object-fit: cover;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--content h2 {
  text-decoration: none;
  margin: 0 0 0.5rem;
  font-family: "Source Sans 3", Helvetica, arial, sans-serif;
  font-size: clamp(22px, 1.138vw + 0.753rem, 1.556rem);
  font-weight: 600;
  text-decoration: none;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--content h2 a {
  text-decoration: none;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-hits--content h2 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article .ais-clearfix {
  display: none;
}
body.search #ais-wrapper main#ais-main #algolia-hits .ais-Hits .ais-Hits-item article:hover .ais-hits--thumbnail img {
  transform: scale(1.05);
}
body.search #ais-wrapper main#ais-main #algolia-pagination .ais-Pagination .ais-Pagination-list {
  padding: 0;
  text-align: center;
}
body.search #ais-wrapper main#ais-main #algolia-pagination .ais-Pagination .ais-Pagination-list .ais-Pagination-item a {
  text-decoration: none;
  display: flex;
  width: 2em;
  height: 2em;
  justify-content: center;
  align-items: center;
}
body.search #ais-wrapper main#ais-main #algolia-pagination .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a {
  background: #b1040e;
  border-radius: 50%;
  color: #fff;
}
body.search #ais-wrapper main#ais-main #algolia-pagination .ais-Pagination .ais-Pagination-list .ais-Pagination-item.ais-Pagination-item--selected a:hover {
  background: #8c1515;
}
body.search #ais-wrapper aside#ais-facets {
  display: none;
}

body.search-no-results .ais-Hits--empty {
  text-align: center;
}
body.search-no-results #algolia-pagination {
  display: none;
}

.hentry {
  position: relative;
  box-sizing: border-box;
}
.hentry.ajax-added {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.hentry.pre-visible {
  opacity: 0;
}
.hentry .date, .hentry .dates {
  grid-area: date;
}
.hentry .thumbnail {
  grid-area: image;
}
.hentry .title {
  grid-area: title;
}
.hentry .content {
  grid-area: content;
}
.hentry .cta {
  grid-area: cta;
}
.hentry .last-updated {
  grid-area: updated;
  font-size: 0.8em;
  color: #1F5E54;
  text-transform: uppercase;
  font-weight: 600;
}
.hentry .event-date,
.hentry .topic {
  grid-area: meta;
}
.hentry.off {
  display: none;
}

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

.hentry.excerpt {
  --link-text-decoration-color-initial:transparent;
  --link-text-decoration-color-hover: currentColor;
  display: grid;
  grid-template-columns: 190px 1fr;
  grid-template-rows: auto auto 1fr;
  row-gap: 0;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  grid-template-areas: "image meta" "image title" "image content";
  align-items: start;
}
.hentry.excerpt.clickable:hover {
  --hentry-image-scale:1.05;
}
.hentry.excerpt.hide-thumbnail {
  grid-template-areas: "meta meta" "title title" "content content";
}
.hentry.excerpt.featured {
  grid-template-rows: auto auto auto 1fr;
  grid-template-areas: "image image" "meta meta" "title title" "content content";
}
.hentry.excerpt.featured .thumbnail {
  margin-bottom: 1rem;
}
.hentry.excerpt .thumbnail {
  display: block;
  position: relative;
  padding: 0 0 var(--hentry-image-aspect, 84%);
  background: #8c1515 url(images/logo-mark.png) no-repeat 50% 50%;
  background-size: auto 50%;
  overflow: hidden;
}
.hentry.excerpt .thumbnail 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%);
  transition: 1s ease-in-out;
  scale: var(--hentry-image-scale, 1);
}
.hentry.excerpt .title {
  margin: 0 0 0.5rem;
  font-family: var(--theme-font-sans-serif);
  font-size: clamp(1.222rem, 0.683vw + 1.074rem, 1.556rem);
  font-weight: 600;
}
.hentry.excerpt .topic {
  margin: 0 0 0.5rem;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  color: #175e54;
  font-weight: 700;
}
.hentry.excerpt .event-date {
  display: inline-block;
  padding: 0.25em 1em 0.2em;
  margin: 0 auto 0.5rem 0;
  border-radius: 2rem;
  background: #f9a44a;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .query-posts.two-across .hentry.excerpt {
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: "image ." "meta meta" "title title" "content content";
  }
  .query-posts.two-across .hentry.excerpt .thumbnail {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .hentry.excerpt {
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: "image image" "meta meta" "title title" "content content";
  }
  .hentry.excerpt .thumbnail {
    margin-bottom: 0.5rem;
  }
}

.hentry.excerpt.is-style-circle-featured-post {
  --hentry-image-aspect: 100%;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: "image" "meta" "title" "content";
}
.hentry.excerpt.is-style-circle-featured-post .thumbnail {
  max-width: 360px;
  padding-bottom: 0;
  aspect-ratio: 1/1;
  margin-bottom: 1rem;
  border-radius: 50%;
}
.hentry.excerpt.is-style-circle-featured-post .thumbnail img {
  border-radius: 50%;
}

.hentry.card.type-waste {
  --hentry-icon-size: 3rem;
  --hentry-featured-image-size: calc(var(--block-margin, 4rem) * 2.1);
  --link-text-decoration-color-initial:transparent;
  --link-text-decoration-color-hover: transparent;
  display: grid;
  padding: 0.5rem 1rem;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0px;
  grid-template-columns: var(--hentry-featured-image-size) 1fr;
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas: "image ." "image title" "image more" "image .";
  background: #ffffff;
  border: 2px solid var(--hentry-border-color, #ccc);
}
@media screen and (max-width: 767px) {
  .hentry.card.type-waste {
    --hentry-icon-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .hentry.card.type-waste {
    --hentry-featured-image-size: calc(var(--block-margin, 4rem) * 1.5);
  }
}
.hentry.card.type-waste .wp-post-image {
  grid-area: image;
  display: block;
  width: var(--hentry-featured-image-size);
  height: var(--hentry-featured-image-size);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.hentry.card.type-waste span.wp-post-image {
  background: url(images/owls/two-wings.png) no-repeat 50% 50%;
  background-size: contain;
}
.hentry.card.type-waste .icon.disposal {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0;
}
.hentry.card.type-waste .title {
  grid-area: title;
  font-size: 1.25rem;
  font-family: var(--theme-font-sans-serif);
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.hentry.card.type-waste .title a {
  text-decoration: none;
}
.hentry.card.type-waste .more {
  grid-area: more;
}
.hentry.card.type-waste .more > .wp-block-button__link {
  padding-top: 0;
  padding-bottom: 0;
}
.hentry.card.type-waste.is-link, .hentry.card.type-waste.clickable {
  --hentry-border-color: #4d4f53;
  box-shadow: 3px 3px 0px var(--hentry-border-color);
  transition: 0.2s ease;
}
.hentry.card.type-waste.is-link:hover, .hentry.card.type-waste.clickable:hover {
  background-color: #f4f4f4;
}
.hentry.card.type-waste:not(.clickable) a:hover {
  color: #8c1515;
}

.hentry.waste-link {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.hentry.waste-link > .wp-block-button {
  position: relative;
  width: 100%;
  border-radius: 10rem;
  background: #a6dac8;
  overflow: hidden;
}
.hentry.waste-link > .wp-block-button:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url(images/waste/waste-links.png) no-repeat 50% 100%;
  background-size: cover;
}
.hentry.waste-link > .wp-block-button > .wp-block-button__link {
  --waste-owl-size: 6rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 8.5rem;
  background: none;
  box-sizing: border-box;
  padding-left: 2rem;
  padding-right: 2rem;
}
.hentry.waste-link > .wp-block-button > .wp-block-button__link:before {
  content: " ";
  display: inline-block;
  position: relative;
  width: var(--waste-owl-size);
  height: var(--waste-owl-size);
  margin-right: 1rem;
  background: url(images/owls/with-trash.png) no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 1200px) {
  .hentry.waste-link > .wp-block-button > .wp-block-button__link {
    padding-left: calc(var(--waste-owl-size) + 2rem);
    padding-right: calc(var(--waste-owl-size));
  }
  .hentry.waste-link > .wp-block-button > .wp-block-button__link:before {
    position: absolute;
    left: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .hentry.waste-link > .wp-block-button > .wp-block-button__link {
    --waste-owl-size: 4.5rem;
    min-height: 6rem;
  }
  .hentry.waste-link > .wp-block-button > .wp-block-button__link:before {
    margin-right: 0.5rem;
  }
}

.hentry.card.type-waste-disposal {
  background: rgba(0, 0, 0, 0.1);
  margin: 1em;
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-areas: "title map" "content map";
}
.hentry.card.type-waste-disposal .title {
  grid-area: title;
  margin: 0;
}
.hentry.card.type-waste-disposal .content {
  grid-area: content;
}
.hentry.card.type-waste-disposal .map {
  position: relative;
  grid-area: map;
  margin: -1rem -1rem -1rem 0;
  background: rgba(0, 0, 0, 0.1);
}
.hentry.card.type-waste-disposal .map img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.hentry.section {
  grid-column: 1/-1;
  background: #f4f4f4;
  padding: 0.5em;
}

.hentry.no-posts,
.hentry.no-results {
  grid-column: 1/-1;
  padding: calc(var(--block-margin, 4rem) * 1) 0;
  text-align: center;
}
.hentry.no-posts.waste,
.hentry.no-results.waste {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
}

.hentry.waste.no-results {
  max-width: 800px;
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  grid-template-areas: "media content";
  gap: calc(var(--block-margin, 4rem) * 0.25);
  align-items: center;
}
.hentry.waste.no-results .media {
  grid-area: media;
}
.hentry.waste.no-results .media img,
.hentry.waste.no-results .media video {
  display: block;
  width: 100%;
  max-width: var(--no-results-media-max-width, 400px);
  margin: 0 auto;
}
.hentry.waste.no-results .content {
  grid-area: content;
  font-size: clamp(1.111rem, 1.821vw + 0.717rem, 2rem);
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .hentry.waste.no-results {
    --no-results-media-max-width: 30vw;
    grid-template-areas: "media media" "content content";
  }
}

.hentry.event.card {
  --link-text-decoration-color-initial:transparent;
  --link-text-decoration-color-hover: currentColor;
  --padding:1.66rem;
  position: relative;
  padding: var(--padding);
  background: #f4f4f4;
  border: rgba(0, 0, 0, 0.5);
}
.hentry.event.card .thumbnail {
  position: relative;
  display: block;
  margin: calc(var(--padding) * -1) calc(var(--padding) * -1) 0 calc(var(--padding) * -1);
  padding: 0 0 66%;
  background: #8c1515 no-repeat 50% 50%;
  background-size: auto 50%;
}
.hentry.event.card .thumbnail:not(.has-thumbnail) {
  background-image: url(images/logo-mark.png);
}
.hentry.event.card .thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 35%;
     object-position: 50% 35%;
}
.hentry.event.card .dates {
  position: relative;
  display: inline-block;
  padding: 0.25em 1em 0.2em;
  margin: 0 0 0.25em;
  border-radius: 2rem;
  background: #f9a44a;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  font-weight: 700;
  translate: 0px -1em;
}
.hentry.event.card .title {
  margin: 0 0 0.5rem;
  font-family: var(--theme-font-sans-serif);
  font-size: clamp(1rem, 1.138vw + 0.753rem, 1.556rem);
  font-weight: 600;
}
.hentry.event.card .location {
  margin: 0 0 0.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: #53565a;
}
.hentry.event.card .content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.hentry.search {
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
}
.hentry.search:last-child {
  margin-bottom: 0;
}
.hentry.search .url, .hentry.search .date {
  font-size: 0.8em;
}

.hentry.project .thumbnail:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  z-index: 9;
  background: #1F5E54 url(images/icon-projects.svg) no-repeat center;
  background-size: 22px 28px;
}

.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 {
  position: relative;
  z-index: 10000;
  cursor: pointer;
  --arrow-size: 30px;
  /*

  margin:0;
  font-size:30px;
  color: var(--color, $color-black);
  width:var(--arrow-size);
  height:var(--arrow-size);
  line-height: var(--arrow-size);
  transition: background-color $hover-transition, transform $hover-transition, margin $hover-transition;
  text-align:center;
  */
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--arrow-size);
  height: var(--arrow-size);
  background: #8c1515;
  color: #ffffff;
  border-radius: 50%;
  border: 0;
  transition: 0.2s ease;
}
.slick-arrow .icon {
  --icon-size:10px;
}
.slick-arrow.next:hover .icon.arrow-right {
  transform: translate(3px, 0);
}
.slick-arrow.prev:hover .icon.arrow-left {
  transform: translate(-3px, 0);
}
.slick-arrow.slick-disabled {
  cursor: default;
  background-color: #53565a;
}
.slick-arrow.slick-hidden {
  display: none !important;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.75em;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.slick-dots li:before {
  display: none;
}
.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: 0;
}
.slick-dots li.slick-active button {
  background: var(--slick-dot-active-color, #007c92);
}

p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 1.25em;
}
p:last-child {
  margin-block-end: 0;
}

p.is-style-intro {
  margin-left: 0;
  font-size: clamp(1rem, 0.455vw + 0.901rem, 1.222rem);
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
p.is-style-intro:first-child {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
p.is-style-intro.has-text-align-left, p.is-style-intro.has-text-align-left:first-child {
  max-width: 750px;
  margin-right: auto;
  margin-left: 0;
}
p.is-style-intro.has-text-align-right, p.is-style-intro.has-text-align-right:first-child {
  max-width: 750px;
  margin-left: auto;
  margin-right: 0;
}
p.is-style-intro.no-max-width {
  max-width: none;
}

p.has-drop-cap:not(:focus)::first-letter {
  display: block;
  float: left;
  margin: 0.1em 0.05em 0 0;
  color: #8c1515;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-optical-sizing: none;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 0.7;
}

p.has-filter-label:after {
  content: " " attr(data-filter);
  color: #8c1515;
  font-weight: 600;
}

#alert {
  position: relative;
  grid-area: alert;
  z-index: 1101;
  box-sizing: border-box;
  padding: 0 var(--header-margin);
  --alert-background: #f2b077;
  --alert-color: #2e2d29;
  background: var(--alert-background);
  color: var(--alert-color);
  transition: transform 0.4s ease-in-out;
  transform: translate(0%, 0%);
}
#alert.status-yellow {
  --alert-background: #EDD889;
}
#alert .block-title {
  display: block;
  text-decoration: none;
  position: relative;
  z-index: 1011;
  padding: 1rem 3rem;
  margin: 0;
  border: 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.25em;
  font-weight: 600;
  background: var(--alert-background);
  color: var(--alert-color);
}
@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: 0 var(--gutter-right) 2em var(--gutter-left);
  box-sizing: border-box;
  background: var(--alert-background);
  color: var(--alert-color);
  transform: translate(0, -100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  line-height: 1.5;
}
@media screen and (max-width: 1129.9310344828px) {
  #alert .block-content {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
  }
}
#alert .block-content > .inner {
  max-width: 800px;
  margin: 0 auto;
}
#alert .block-content a {
  text-decoration: underline;
}
#alert .block-content a:hover {
  text-decoration-color: transparent;
}
#alert .block-close {
  --icon-size:10px;
  --toggle-icon-size: 1.8rem;
  position: absolute;
  z-index: 1012;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  top: 50%;
  right: 1em;
  width: var(--toggle-icon-size);
  height: var(--toggle-icon-size);
  margin-top: calc(var(--toggle-icon-size) * -0.5);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, scale 0.2s ease;
  background: var(--alert-color);
  color: var(--alert-background);
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #alert .block-close {
    right: 26px;
  }
}
#alert .block-close .icon {
  display: block;
  font-size: calc(var(--icon-size) * 0.8);
  line-height: var(--icon-size);
  text-align: center;
}
#alert .block-close:hover {
  scale: 1.2;
}
body.alert-on #alert .block-content {
  transform: translate(0, 0);
  opacity: 1;
  top: 100%;
}
body.alert-on #alert .block-close {
  opacity: 1;
  transform: rotate(180deg);
}
#alert h1,
#alert h2,
#alert h3,
#alert h4,
#alert h5,
#alert h6,
#alert .heading {
  color: inherit;
}

:root {
  --header-margin: 20px;
}
@media screen and (max-width: 600px) {
  :root {
    --header-margin: 18px;
  }
}

#toggle-header {
  box-sizing: border-box;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: end;
  z-index: 1000;
  top: 0%;
  right: var(--header-margin);
  padding: 20px 25px;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  background: #8c1515;
  color: transparent;
  border: 0;
  border-radius: 0 0 0.6rem 0.6rem;
  transition: 0.3s ease-in-out, margin-top 0s;
  translate: 0 0;
}
@media screen and (min-width: 1025px) {
  #toggle-header {
    height: var(--header-height);
  }
}
@media screen and (max-width: 1024px) {
  #toggle-header {
    height: var(--logo-height);
  }
}
#toggle-header:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 4rem;
  background: inherit;
  transition: height 0.3s ease-in-out;
}
#toggle-header .bars {
  --line-width: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 25px;
}
@media screen and (max-width: 1024px) {
  #toggle-header .bars {
    --line-width: 2.5px;
  }
}
#toggle-header .bars:before, #toggle-header .bars:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--line-width);
  background: currentColor;
  translate: 0 -50%;
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}
#toggle-header .bar {
  display: block;
  height: var(--line-width);
  width: 100%;
  background: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
body.menu-on #toggle-header, body.scrolled #toggle-header, body.has-hidden-header #toggle-header {
  color: white;
}
body.menu-on #toggle-header .bars:before, body.menu-on #toggle-header .bars:after {
  opacity: 1;
}
body.menu-on #toggle-header .bars:before {
  transform: rotate(45deg);
}
body.menu-on #toggle-header .bars:after {
  transform: rotate(-45deg);
}
body.menu-on #toggle-header .bars .bar {
  opacity: 0;
}
body.has-hidden-header #toggle-header, body.scrolled #toggle-header {
  height: var(--logo-height, 75px);
  z-index: 1002;
  translate: 0 0;
  margin-top: var(--wp-admin--admin-bar--height, 0px);
}
body.has-hidden-header.menu-on #toggle-header, body.scrolled.menu-on #toggle-header {
  translate: 0 var(--header-height, 0);
}
@media screen and (min-width: 1025px) {
  body.has-hidden-header.menu-on #toggle-header, body.scrolled.menu-on #toggle-header {
    height: 55px;
    z-index: 1000;
  }
}
@media screen and (max-width: 1024px) {
  #toggle-header {
    z-index: 1002;
    color: #ffffff;
    padding-left: 32px;
    padding-right: 32px;
  }
  body.has-hidden-header.menu-on #toggle-header, body.scrolled.menu-on #toggle-header {
    translate: 0 0%;
  }
  body.has-alert:not(.has-hidden-header) #toggle-header {
    margin-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--alert-height, 0px));
  }
  body.has-alert.has-hidden-header.menu-on #toggle-header {
    top: calc(var(--alert-height, 0px));
  }
  body.has-alert:not(.scrolled) #toggle-header:before {
    height: 0;
  }
  body.has-alert.scrolled #toggle-header {
    margin-top: calc(var(--wp-admin--admin-bar--height, 0px));
  }
  body.has-alert.alert-on #toggle-header {
    z-index: 1000;
  }
}

#hidden-header-logo__link {
  --logo-width: 160px;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: var(--header-margin);
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  background: #8c1515;
  border-radius: 0 0 0.6rem 0.6rem;
  padding: var(--header-margin) calc(var(--header-margin) * 1.6);
  display: inline-flex;
}
#hidden-header-logo__link img {
  display: block;
  width: var(--logo-width);
}
@media screen and (max-width: 600px) {
  #hidden-header-logo__link {
    --logo-width: 140px;
    padding: calc(var(--header-margin) * 0.7) calc(var(--header-margin) * 1);
  }
}

#header {
  --header-icon-size: 18px;
  --logo-width: 160px;
  --border-radius: .6rem;
  --nav-highlight-height: 4px;
  --nav-highlight-color: #f9a44a;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: var(--header-margin);
  width: calc(100% - var(--header-margin) * 2);
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  background: var(--background-color, #8c1515);
  color: var(--color, #ffffff);
  line-height: 1;
  border-radius: 0 0 calc(var(--border-radius) + 1px) calc(var(--border-radius) + 1px);
  transition: 0.3s ease-in-out;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas: "alert alert alert" "logo nav icons" "subnav subnav subnav";
  align-items: center;
}
@media screen and (max-width: 1024px) {
  #header {
    --border-radius: 10px;
  }
}
@media screen and (max-width: 600px) {
  #header {
    --logo-width: 150px;
  }
}
@media screen and (min-width: 1025px) {
  body.scrolled.menu-on #header {
    border-radius: 0 0 0 calc(var(--border-radius) + 1px);
  }
}
@media screen and (max-width: 1024px) {
  #header:before {
    content: " ";
    display: block;
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 4rem;
    background: inherit;
  }
}
body.has-hidden-header:not(.menu-on) #header, body.scrolled:not(.menu-on) #header {
  translate: 0 -100%;
}
@media screen and (max-width: 1024px) {
  #header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "alert alert alert" "logo . toggle" "nav nav nav" "icons icons icons" "search search search";
  }
}
#header ul, #header li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header a {
  text-decoration: none;
}
#header .block-search {
  --offset: calc(var(--logo-width) + (var(--header-margin) * 1.6) * 2);
  z-index: 5;
  opacity: 1;
  align-items: center;
  justify-content: end;
  gap: 0.6666666667rem;
}
@media screen and (min-width: 1025px) {
  #header .block-search {
    display: flex;
    position: absolute;
    left: var(--offset);
    width: calc(100% - var(--offset) - var(--header-margin));
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  #header .block-search .inputs {
    max-width: 0;
    padding: 0.2em 0 0.2em 0.5rem;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    background: #8c1515;
  }
  body:not(.search-on) #header .block-search {
    z-index: -1;
    opacity: 0;
  }
  body.search-on #header .block-search .inputs {
    max-width: 100%;
    padding-right: 0.5rem;
  }
  #header .block-search .toggle {
    display: inline-block;
    font-size: var(--header-icon-size);
    width: 1.8em;
    height: 1.8em;
    line-height: 1.8em;
    background: #ffffff;
    color: #b1040e;
    scale: 1.2;
    text-align: center;
    border-radius: 50%;
    transform-origin: 50% 50%;
  }
  #header .block-search .toggle:before, #header .block-search .toggle:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 22.5%;
    width: 55%;
    height: 0.12em;
    translate: 0 -50%;
    background: currentColor;
    border-radius: 1em;
    transform-origin: 50% 50%;
    opacity: var(--toggle-opacity, 0);
    transition: 0.2s ease;
    transform: rotate(0deg);
  }
  #header .block-search .toggle .icon {
    display: none;
  }
  body.search-on #header .block-search .toggle {
    --toggle-opacity:1;
  }
  body.search-on #header .block-search .toggle:before {
    transform: rotate(45deg);
  }
  body.search-on #header .block-search .toggle:after {
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 1024px) {
  #header .block-search {
    grid-area: search;
    margin-top: calc(var(--block-margin, 4rem) * -0.5);
    padding: 0 var(--header-margin) 0 calc(var(--header-margin) * 1.6);
    display: none;
    transition: none;
  }
  body.search-on.menu-on #header .block-search {
    padding-top: var(--header-margin);
    padding-bottom: var(--header-margin);
    display: flex;
  }
}
#header .block-search .inputs {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-grow: 1;
  background: #ffffff;
  border-radius: 10em;
}
#header .block-search input[type=text] {
  flex-grow: 1;
  padding: 0.3em 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
  border-radius: 0;
  font-family: var(--theme-font-sans-serif);
  font-size: 0.888rem;
  font-weight: 600;
}
#header .block-search button {
  font-size: var(--header-icon-size);
  padding: 0;
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  background: transparent;
  border-radius: 0;
  color: #b1040e;
  border: 0;
}
#header .block-search ::-webkit-input-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 0.888rem;
  font-weight: 600;
}
#header .block-search :-moz-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 0.888rem;
  font-weight: 600;
}
#header .block-search ::-moz-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 0.888rem;
  font-weight: 600;
}
#header .block-search :-ms-input-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 0.888rem;
  font-weight: 600;
}
#header .block-menu-toggle {
  position: relative;
  z-index: 1;
  grid-area: toggle;
  padding: var(--header-margin) calc(var(--header-margin) * 1.6);
}
@media screen and (min-width: 1025px) {
  #header .block-menu-toggle {
    display: none;
  }
}
#header .block-menu-toggle .bars {
  --line-width: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 25px;
}
@media screen and (max-width: 1024px) {
  #header .block-menu-toggle .bars {
    --line-width: 2.5px;
  }
}
#header .block-menu-toggle .bars:before, #header .block-menu-toggle .bars:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--line-width);
  background: currentColor;
  translate: 0 -50%;
  transition: 0.3s ease-in-out;
  opacity: 0;
}
#header .block-menu-toggle .bar {
  display: block;
  height: var(--line-width);
  width: 100%;
  background: currentColor;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
body.menu-on #header .block-menu-toggle .bars:before, body.menu-on #header .block-menu-toggle .bars:after {
  opacity: 1;
}
body.menu-on #header .block-menu-toggle .bars:before {
  transform: rotate(45deg);
}
body.menu-on #header .block-menu-toggle .bars:after {
  transform: rotate(-45deg);
}
body.menu-on #header .block-menu-toggle .bars .bar {
  opacity: 0;
}
#header .block-stanford {
  display: none;
  grid-area: stanford;
  padding: 0.5rem 1rem;
  background: #2e2d29;
  text-align: center;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: 1rem;
}
#header .block-stanford a {
  display: inline-block;
  padding: 0 1em;
}
#header .block-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
  padding: var(--header-margin) calc(var(--header-margin) * 1.6);
}
#header .block-logo a {
  display: inline-flex;
}
#header .block-logo a img {
  display: block;
  width: var(--logo-width);
}
body.has-hidden-header.single-waste:not(.menu-on) #header .block-logo {
  --background-color: #2e2d29;
}
body.has-hidden-header:not(.menu-on) #header .block-logo {
  position: absolute;
  top: 100%;
  background: var(--background-color, #8c1515);
  border-radius: 0 0 0.6rem 0.6rem;
  grid-area: unset;
  transition: 0.3s ease-in-out;
}
body.has-hidden-header.scrolled:not(.menu-on) #header .block-logo {
  translate: 0 -100%;
}
#header .block-nav {
  grid-area: nav;
  align-self: stretch;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 1;
  font-size: clamp(1rem, 0.228vw + 0.951rem, 1.111rem);
  font-weight: 600;
}
#header .block-nav > ul {
  display: flex;
  align-items: stretch;
  gap: 2.35rem;
}
#header .block-nav > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#header .block-nav > ul > li > a:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: var(--highlight-width, 0%);
  height: var(--highlight-height, 0px);
  background: var(--nav-highlight-color);
  transition: 0.2s ease;
  translate: -50% 0;
  opacity: var(--highlight-opacity, 0);
}
#header .block-nav > ul > li > a:hover {
  --highlight-height: var(--nav-highlight-height);
  --highlight-opacity: 1;
  --highlight-width: 100%;
}
#header .block-nav > ul > li.current-menu-item, #header .block-nav > ul > li.current-menu-ancestor, #header .block-nav > ul > li.current-menu-parent {
  --highlight-height: var(--nav-highlight-height);
  --highlight-opacity: var(--highlight-opacity-override, 1);
  --highlight-width: 100%;
}
#header .block-nav > ul > li > ul {
  display: none;
}
body:not(.fonts-loaded) #header .block-nav,
body:not(.fonts-loaded) #header .block-subnav {
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  #header .block-nav > .current-item,
  #header .block-subnav > .current-item {
    position: absolute;
    z-index: 100;
    bottom: 0;
    height: var(--nav-highlight-height);
    width: var(--nav-highlight-width, 0);
    left: var(--nav-highlight-left, 0);
    background: var(--nav-highlight-color);
  }
  #header .block-nav:not(.has-current-item) > .current-item,
  #header .block-subnav:not(.has-current-item) > .current-item {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  #header .block-nav.has-current-item, #header .block-nav.hover,
  #header .block-subnav.has-current-item,
  #header .block-subnav.hover {
    --highlight-opacity-override: 0;
  }
  #header .block-nav.has-current-item > .current-item, #header .block-nav.hover > .current-item,
  #header .block-subnav.has-current-item > .current-item,
  #header .block-subnav.hover > .current-item {
    opacity: 1;
    transition: all 0.2s ease;
  }
  #header .block-nav.hide-current-item,
  #header .block-subnav.hide-current-item {
    --nav-highlight-height:0;
  }
}
#header .block-icons {
  grid-area: icons;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1.3333333333rem;
  padding: var(--header-margin);
}
#header .block-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--header-icon-size);
  width: 1.8em;
  height: 1.8em;
  line-height: 1.8em;
  background: var(--color, #ffffff);
  color: var(--background-color, #8c1515);
  border-radius: 50%;
  text-align: center;
}
#header .block-icons a:hover, #header .block-icons a.toggle.on {
  scale: 1.2;
  color: #b1040e;
}
#header .block-subnav {
  grid-area: subnav;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
#header .block-subnav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.76rem;
  border-top: 1px solid #b1040e;
}
#header .block-subnav > ul > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
#header .block-subnav > ul > li > a:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: var(--highlight-width, 0%);
  height: var(--highlight-height, 0px);
  background: var(--nav-highlight-color);
  transition: 0.2s ease;
  translate: -50% 0;
  opacity: var(--highlight-opacity, 0);
}
#header .block-subnav > ul > li > a:hover {
  --highlight-height: var(--nav-highlight-height);
  --highlight-opacity: 1;
  --highlight-width: 100%;
}
#header .block-subnav > ul > li.current-menu-item, #header .block-subnav > ul > li.current-menu-ancestor, #header .block-subnav > ul > li.current-menu-parent {
  --highlight-height: var(--nav-highlight-height);
  --highlight-opacity: var(--highlight-opacity-override, 1);
  --highlight-width: 100%;
}
#header .block-subnav > ul > li > ul {
  display: none;
}
@media screen and (max-width: 1024px) {
  body.menu-on #header {
    max-height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
    overflow: auto;
  }
  #header .block-stanford,
  #header .block-icons,
  #header .block-nav {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
  }
  body:not(.menu-on) #header .block-stanford,
  body:not(.menu-on) #header .block-icons,
  body:not(.menu-on) #header .block-nav {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0vh;
  }
  body.menu-on #header .block-stanford,
  body.menu-on #header .block-icons,
  body.menu-on #header .block-nav {
    max-height: 100dvh;
  }
  #header .block-stanford {
    border-radius: 0 0 0.5rem 0.5rem;
  }
  #header .block-icons {
    justify-content: center;
    padding-bottom: calc(var(--block-margin, 4rem) * 1);
  }
  body.menu-on #header .block-icons {
    margin-top: 2em;
  }
  #header .block-nav {
    max-height: 0;
    overflow: hidden;
  }
  body.menu-on #header .block-nav {
    margin-top: calc(var(--block-margin, 4rem) * 0.75);
  }
  #header .block-nav > ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
  }
  #header .block-nav > ul > li {
    width: 100%;
  }
  #header .block-nav > ul > li > a {
    height: auto;
    justify-content: center;
    font-size: 1.3888888889rem;
  }
  #header .block-nav > ul > li > a:after {
    display: none;
  }
  #header .block-nav > ul > li > ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 0 1rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 1.0555555556rem;
    background: #b1040e;
    font-weight: 400;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    text-align: center;
  }
  #header .block-nav > ul > li > ul li {
    width: 100%;
  }
  #header .block-nav > ul > li > ul li a {
    display: block;
    padding: 0.25rem 0;
  }
  #header .block-nav > ul > li.on > ul {
    max-height: 100dvh;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    overflow: auto;
  }
  #header .block-nav .current-menu-item > a,
  #header .block-nav .current-menu-ancestor > a {
    font-weight: 600;
  }
  #header .block-subnav {
    display: none;
  }
  #header .block-search button.toggle {
    display: none;
  }
}

#bottom-subscribe {
  position: relative;
  z-index: 20;
  grid-area: subscribe;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "content content social" "email cta social";
  gap: 1rem;
  align-items: start;
  padding: calc(var(--block-margin, 4rem) * 0.25) calc(var(--block-margin, 4rem) * 1);
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5) 0;
  background: #f4f4f4;
  color: #2e2d29;
  translate: 0 -50%;
  /*@media screen and (max-width:900px){
      padding:block-margin(.5);
      .block-social {
          width: auto;
          padding-left:0;
      }
  }*/
}
#bottom-subscribe input[type=email] {
  grid-area: email;
  align-self: stretch;
  max-width: 100%;
  width: 15rem;
  padding: 0.5em;
  box-sizing: border-box;
}
#bottom-subscribe .wp-block-button {
  justify-self: start;
  grid-area: cta;
  color: #ffffff;
  font-size: 1rem;
}
#bottom-subscribe .block-content,
#bottom-subscribe .block-social {
  font-size: 1rem;
  font-weight: 600;
}
#bottom-subscribe .block-content {
  grid-area: content;
}
#bottom-subscribe .block-social {
  grid-area: social;
  margin: 0;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1.5em;
  width: -moz-max-content;
  width: max-content;
  padding-left: calc(var(--block-margin, 4rem) * 0.5);
}
#bottom-subscribe .block-social ul {
  --size:1.5em;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
#bottom-subscribe .block-social ul a {
  display: inline-block;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  border-radius: 50%;
  font-size: 20px;
  background: transparent;
}
#bottom-subscribe .block-social ul a:hover {
  color: #b1040e;
}
@media screen and (max-width: 900px) {
  #bottom-subscribe {
    grid-template-columns: auto auto;
    grid-template-areas: "content content" "email cta" "social social";
  }
  #bottom-subscribe .block-content {
    text-align: center;
  }
  #bottom-subscribe .block-social {
    justify-self: center;
    justify-content: center;
  }
  #bottom-subscribe input[type=email] {
    justify-self: end;
  }
}
@media screen and (max-width: 640px) {
  #bottom-subscribe {
    grid-template-columns: auto;
    grid-template-areas: "content" "email" "cta" "social";
    text-align: center;
    margin-bottom: 0;
  }
  #bottom-subscribe input[type=email] {
    width: 100%;
  }
  #bottom-subscribe .wp-block-button {
    justify-self: center;
  }
  #bottom-subscribe .wp-block-button > .wp-block-button__link {
    justify-content: center;
  }
}

#footer {
  --logo-width: 200px;
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  --bottom-row-height: calc(1.5rem + 1.5rem + 1.3rem);
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-areas: "image image image" "subscribe subscribe subscribe" "logo address links" "copyright copyright copyright";
  grid-template-rows: auto auto auto var(--bottom-row-height);
  padding: 0 var(--gutter-right) 0 var(--gutter-left);
  background: #3c3c3c;
  color: white;
  font-size: clamp(0.778rem, 0.228vw + 0.728rem, 0.889rem);
  line-height: 1;
  --middle-heading-font-size: 1rem;
  --stanford-padding-top:.85rem;
  --stanford-toggle-font-size: 1.333rem;
}
#footer p {
  line-height: 1.5;
}
#footer a {
  color: inherit;
}
#footer .block-image {
  grid-area: image;
  min-height: 120px;
  background: #175e54 url(images/dots.png) 50% 50%;
  margin-right: calc(var(--gutter-right) * -1);
  margin-left: calc(var(--gutter-left) * -1);
}
#footer .block-image img {
  display: block;
  position: relative;
  width: 100%;
  max-height: var(--footer-image-height, 660px);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
#footer .block-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0 0 calc(var(--block-margin, 4rem) * 1);
}
#footer .block-logo a {
  display: inline-flex;
  padding: 0;
}
#footer .block-logo a img {
  display: block;
  width: var(--logo-width);
}
#footer .block-address {
  grid-area: address;
}
#footer .block-address strong.h3 {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: var(--middle-heading-font-size);
  font-weight: 600;
}
#footer .block-links {
  grid-area: links;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: var(--middle-heading-font-size);
  font-weight: 600;
}
#footer .block-links ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 0.5em;
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .block-links a {
  position: relative;
  display: flex;
  gap: 0.5em;
}
#footer .block-links a:after {
  content: " ";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #ffffff url(images/icon-arrow-right.svg) 50% 50% no-repeat;
  background-size: 60%;
  border-radius: 50%;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
#footer .block-links a:hover:after {
  translate: 2px 0;
}
#footer .block-copyright {
  --link-text-decoration-color-initial: currentColor;
  --link-text-decoration-color-hover: transparent;
  position: absolute;
  bottom: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 7;
  grid-area: copyright;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #ffffff;
  text-align: right;
  margin: 0;
  padding: var(--stanford-padding-top) 2rem;
  line-height: var(--stanford-toggle-font-size);
  font-size: 0.9em;
}
#footer .block-links-stanford {
  --gap: .75rem;
  grid-area: copyright;
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 6;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr;
  color: #ffffff;
  background: #8c1515;
  /*
  transition: $nav-transition;
  opacity:0;
  max-height:0;
  body.footer-expanded & {
      padding-top:block-margin(.5);
      padding-bottom:block-margin(1.5);
      opacity:1;
      max-height:50em;
  }
      */
}
#footer .block-links-stanford .toggle {
  display: inline-flex;
  align-items: start;
  gap: 0.5em;
  padding: var(--stanford-padding-top) 2rem;
  transition: 0.2s ease-in-out;
  background: none;
  border: none;
}
#footer .block-links-stanford .toggle > span {
  display: inline-block;
  color: transparent;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 600;
  font-size: var(--stanford-toggle-font-size);
  letter-spacing: -0.045em;
  line-height: 1;
  background: url(images/logo-stanford-university.svg) no-repeat 0 50%;
  background-size: contain;
}
#footer .block-links-stanford .toggle:after {
  content: " ";
  display: block;
  width: 1rem;
  height: 1rem;
  background: #b1040e url(images/icon-arrow-right-white.svg) 50% 50% no-repeat;
  background-size: 60%;
  border-radius: 50%;
  transform: rotate(-90deg);
  transition: 0.3s ease-in-out;
  translate: 0 calc(var(--stanford-toggle-font-size) * 0.1);
}
body.footer-expanded #footer .block-links-stanford .toggle {
  padding-top: 1.5rem;
}
body.footer-expanded #footer .block-links-stanford .toggle:after {
  transform: rotate(90deg);
}
#footer .block-links-stanford .menus {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  padding: 0 1.5rem 0 1rem;
  margin: 0 0 0 auto;
  transition: 0.2s ease-in-out, opacity 0.1s;
  max-height: 0;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
}
body.footer-expanded #footer .block-links-stanford .menus {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  opacity: 1;
  max-height: 10em;
}
#footer .block-links-stanford ul, #footer .block-links-stanford li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer .block-links-stanford #stanford-menu {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  font-weight: 600;
}
#footer .block-links-stanford #stanford2-menu {
  -moz-column-count: 2;
       column-count: 2;
}
#footer .block-links-stanford #stanford2-menu li {
  margin-bottom: var(--gap);
}
@media screen and (max-width: 1024px) {
  #footer {
    --footer-image-height: 64.453125vw;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image image" "subscribe subscribe" "logo logo" "address links" "copyright copyright";
    grid-template-rows: auto auto auto auto var(--bottom-row-height);
  }
  #footer .block-address,
  #footer .block-links {
    padding-bottom: calc(var(--block-margin, 4rem) * 0.5);
  }
}
@media screen and (max-width: 750px) {
  #footer {
    --stanford-padding-top:1rem;
    --stanford-toggle-font-size: 1rem;
    --middle-heading-font-size: 1rem;
  }
  #footer .block-copyright {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  #footer .block-links-stanford .toggle {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  #footer .block-links-stanford .toggle:after {
    translate: 0 0;
  }
}
@media screen and (max-width: 600px) {
  #footer {
    --footer-image-height: 103.125vw;
    grid-template-areas: "image image" "subscribe subscribe" "logo logo" "address address" "links links" "stanford stanford" "copyright copyright";
    grid-template-rows: auto auto auto auto auto var(--bottom-row-height) auto;
  }
  #footer .block-logo {
    justify-content: center;
  }
  #footer .block-address {
    text-align: center;
  }
  #footer .block-content {
    max-width: 24em;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .block-links {
    padding-top: calc(var(--block-margin, 4rem) * 0.5);
  }
  #footer .block-links ul {
    align-items: center;
  }
  #footer .block-links-stanford {
    grid-area: stanford;
    display: block;
  }
  #footer .block-links-stanford .toggle {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
    justify-content: center;
  }
  body.footer-expanded #footer .block-links-stanford .menus {
    padding-bottom: 3rem;
  }
  #footer .block-links-stanford .menu {
    padding-left: 1.5rem;
  }
  #footer .block-copyright {
    position: relative;
    bottom: auto;
    right: auto;
    justify-content: center;
    background: #8c1515;
    padding-top: 0;
  }
}
@media screen and (max-width: 450px) {
  #footer .block-links-stanford .menus {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
  #footer .block-links-stanford .menu {
    padding-left: 0.5rem;
  }
  #footer .block-links-stanford #stanford-menu {
    display: block;
    -moz-column-count: 2;
         column-count: 2;
  }
  #footer .block-links-stanford #stanford-menu li {
    margin-bottom: var(--gap);
  }
  #footer .block-copyright {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    flex-direction: column;
    text-align: center;
  }
  #footer .block-copyright .sep {
    display: none;
  }
}

.icon.arrow {
  --elem-icon-size: var(--icon-size, 8px);
  --elem-icon-height: var(--elem-icon-size);
  --elem-icon-width: calc(var(--elem-icon-size) * 1.75);
  --elem-icon-line-width: var(--icon-width, 1.5px);
  position: relative;
  display: inline-block;
  width: var(--elem-icon-width);
  height: var(--elem-icon-height);
}
.icon.arrow i {
  display: inline-block;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  translate: var(--icon-x, 0px) var(--icon-y, 0px);
  rotate: var(--icon-rotate, 0deg);
}
.icon.arrow i:before, .icon.arrow i:after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
}
.icon.arrow i:before {
  width: var(--elem-icon-size);
  height: var(--elem-icon-size);
  top: 50%;
  right: 50%;
  margin-right: calc(var(--elem-icon-width) / -2);
  border: var(--elem-icon-line-width) solid currentColor;
  border-width: var(--elem-icon-line-width) var(--elem-icon-line-width) 0 0;
  transform: rotate(45deg);
  transform-origin: 100% 0%;
}
.icon.arrow i:after {
  height: var(--elem-icon-line-width);
  width: calc(var(--elem-icon-width) - var(--elem-icon-line-width));
  right: 50%;
  top: 50%;
  margin-right: calc(var(--elem-icon-width) / -2 + var(--elem-icon-line-width));
  margin-top: calc(var(--elem-icon-line-width) / -2);
  background: currentColor;
}
.icon.arrow.up-right-popup {
  --icon-rotate: -45deg;
}
.icon.arrow.up-right-popup:before {
  --w: calc(var(--elem-icon-line-width) * 6);
  content: " ";
  display: block;
  position: absolute;
  top: -6px;
  right: -3px;
  width: calc(var(--elem-icon-width) + 3px);
  height: calc(var(--elem-icon-width) + 3px);
  border: var(--elem-icon-line-width) solid currentColor;
  clip-path: polygon(0% calc(100% - var(--w)), 0% 0%, 100% 0%, 100% 100%, var(--w) 100%, var(--w) calc(100% - var(--w)));
  transform-origin: 0% 100%;
  transition: 0.2s ease;
  scale: var(--icon-box-scale, 1);
}
.icon.arrow.up-right-popup i {
  margin-top: 2px;
  margin-left: -2px;
}
.icon.arrow.plus i {
  margin-right: 0;
  transition: 0.2s ease;
}
.icon.arrow.plus i:before, .icon.arrow.plus i:after {
  display: block;
  content: " ";
  top: 50%;
  right: auto;
  left: 50%;
  margin: 0;
  width: calc(var(--elem-icon-width) - var(--elem-icon-line-width));
  height: var(--elem-icon-line-width);
  background: currentColor;
  clip-path: none;
  transform: none;
  transform-origin: 50% 50%;
  translate: -50% -50%;
  border: 0;
  transition: 0.2s ease;
}
.icon.arrow.plus i:before {
  rotate: 90deg;
}
.icon.arrow.plus.on i {
  rotate: 90deg;
}
.icon.arrow.plus.on i:after {
  opacity: 0;
}
.icon.arrow.up {
  --icon-rotate: -90deg;
}
.icon.arrow.up-right {
  --icon-rotate: -45deg;
}
.icon.arrow.right {
  --icon-rotate: 0deg;
}
.icon.arrow.down-right {
  --icon-rotate: 45deg;
}
.icon.arrow.down {
  --icon-rotate: 90deg;
}
.icon.arrow.down-left {
  --icon-rotate: 135deg;
}
.icon.arrow.left {
  --icon-rotate: 180deg;
}
.icon.arrow.up-left {
  --icon-rotate: 225deg;
}

.theme-block {
  --block-margin-multiplier: 1;
  position: relative;
  margin-top: calc(var(--block-margin, 4rem) * var(--block-margin-multiplier));
  margin-bottom: calc(var(--block-margin, 4rem) * 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: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1324.1379310345px) {
  .page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
    margin: 0 4.6875%;
  }
}
.page-blocks > .theme-block.is-style-content-width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.page-blocks > .theme-block.has-background + .has-background {
  margin-top: calc(var(--block-margin, 4rem) * calc(var(--block-margin-multiplier) * -1));
}
body > .theme-block.has-background {
  margin-top: 0;
  margin-bottom: 0;
}

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

.site-skip-nav {
  position: absolute;
  display: block;
  grid-area: unset;
  top: 0;
  left: var(--margin, 0);
  padding: 5px 15px;
  background: #333;
  color: #ffffff;
  transform: translate(0%, -100%);
}
.site-skip-nav:focus {
  transform: translate(0%, 0%);
  z-index: 1101;
}

:root body {
  --wrapper-padding-top: calc((var(--header-offset, 0px)*2) +
      var(--header-height, 70px) +
      var(--alert-height, 0px));
  position: relative;
  z-index: 10;
  padding: var(--wrapper-padding-top) 0 0 0;
}
@media screen and (max-width: 1024px) {
  :root body {
    --wrapper-padding-top: calc((var(--header-offset, 0px)*2) +
        var(--logo-height, 70px) +
        var(--alert-height, 0px));
  }
}
:root body.has-hidden-header {
  padding-top: 0;
}

.main-content {
  --page-blocks-padding-top: calc(var(--block-margin, 4rem) * 0.25);
  --page-blocks-padding-bottom: calc(var(--block-margin, 4rem) * 1.25);
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  color: var(--color);
}
.main-content.archive {
  --page-blocks-padding-top: calc(var(--block-margin, 4rem) * 1);
}
.main-content > .layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: ". title ." ". blocks ." ". posts ." ". pager ." ". refine .";
}
.main-content .block-hero {
  grid-area: hero;
}
.main-content .block-page-title {
  grid-area: title;
  text-align: center;
  margin: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 0.5);
}
.main-content .block-page-title .event-date {
  display: inline-block;
  padding: 0 1em;
  margin: 0 auto 0.5rem 0;
  border-radius: 2rem;
  background: #f9a44a;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  font-weight: 700;
}
.main-content .block-page-title .introduction {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.main-content .block-page-title #page-title {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}
.main-content .block-featured-image {
  grid-area: featured-image;
}
body.single-waste .main-content .block-featured-image img {
  display: block;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.main-content .page-blocks {
  display: block;
  position: relative;
  grid-area: blocks;
  min-height: 20vh;
  padding: var(--page-blocks-padding-top) 0 var(--page-blocks-padding-bottom);
}
body.archive .main-content .page-blocks {
  min-height: 0;
}
body.error404 .main-content .page-blocks {
  min-height: 40vh;
  margin: auto;
  text-align: center;
}
body.error404 .main-content .page-blocks .wp-block-buttons {
  margin-top: 3rem;
}
.main-content .block-meta-bottom {
  --link-text-decoration-color-initial:transparent;
  --link-text-decoration-color-hover: currentColor;
  grid-area: meta-bottom;
  font-size: 0.8888888889rem;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: start;
  gap: 2rem;
  color: #53565a;
}
.main-content .block-meta-bottom .taxonomies {
  flex-grow: 1;
}
.main-content .block-filters {
  grid-area: filters;
}
.main-content .query-posts {
  grid-area: posts;
  padding: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 0.5);
}
.main-content .query-posts#query-posts:before {
  --circle-size: 360px;
  content: " ";
  display: block;
  position: absolute;
  top: calc(var(--block-margin, 4rem) * 5);
  right: 95%;
  width: var(--circle-size);
  height: var(--circle-size);
  margin: calc(var(--block-margin, 4rem) * -1.5) calc(var(--block-margin, 4rem) * -0.5) 0 0;
  background: url(images/circle-dashed-orange.svg) 50% 50% no-repeat;
  background-size: contain;
}
.main-content .posts-nav,
.main-content .navigation.pagination {
  grid-area: pager;
  display: flex;
  justify-content: center;
}
.main-content .posts-nav:last-child,
.main-content .navigation.pagination:last-child {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.main-content .posts-nav .nav-links,
.main-content .navigation.pagination .nav-links {
  display: flex;
  font-family: var(--theme-font-sans-serif);
}
.main-content .posts-nav .nav-links .page-numbers,
.main-content .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  padding: 1em;
  min-width: 3.5em;
  box-sizing: border-box;
  text-decoration: none;
  background: #f4f4f4;
  text-align: center;
}
.main-content .posts-nav .nav-links .page-numbers:not(.dots, .current):hover,
.main-content .navigation.pagination .nav-links .page-numbers:not(.dots, .current):hover {
  background-color: #ccc;
}
.main-content .posts-nav .nav-links .page-numbers.current,
.main-content .navigation.pagination .nav-links .page-numbers.current {
  background: navy;
  color: #ffffff;
}
.main-content .posts-nav .nav-links .page-numbers.dots,
.main-content .navigation.pagination .nav-links .page-numbers.dots {
  background: transparent;
}
.main-content .posts-nav .nav-links .page-numbers.prev,
.main-content .navigation.pagination .nav-links .page-numbers.prev {
  margin-right: 0.25rem;
}
.main-content .posts-nav .nav-links .page-numbers.next,
.main-content .navigation.pagination .nav-links .page-numbers.next {
  margin-left: 0.25rem;
}
.main-content .refine-search {
  grid-area: refine;
  margin: calc(var(--block-margin, 4rem) * 1) auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.main-content .refine-search input[type=text] {
  flex-grow: 1;
}
.main-content .block-recommended {
  grid-area: recommended;
}

.main-content.single-post {
  --page-blocks-padding-top: calc(var(--block-margin, 4rem) * 1);
}
.main-content.single-post > .layout {
  grid-template-areas: "hero hero hero" ". title ." ". blocks ." ". meta-bottom ." "recommended recommended recommended";
}
.main-content.single-post .block-hero {
  margin-top: calc(var(--wrapper-padding-top) * -1);
}
.main-content.single-post .block-meta-bottom,
.main-content.single-post .page-blocks {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 827.5862068966px) {
  .main-content.single-post .block-meta-bottom,
  .main-content.single-post .page-blocks {
    --gutter-left-override: calc((100vw - 750px) / 2);
    --gutter-right-override: calc((100vw - 750px) / 2);
    --page-gutter-left: calc(((100vw - 750px) / 2) - var(--gutter-left));
    --page-gutter-right: calc(((100vw - 750px) / 2) - var(--gutter-right));
  }
  .main-content.single-post .block-meta-bottom > .theme-block.is-style-page-width,
  .main-content.single-post .page-blocks > .theme-block.is-style-page-width {
    margin-left: calc(var(--page-gutter-left, 0) * -1);
    margin-right: calc(var(--page-gutter-right, 0) * -1);
  }
}
.main-content.single-post .block-meta-bottom {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}

.main-content.archive > .layout {
  grid-template-areas: "title title title" ". filters ." ". featured ." ". posts ." ". pager ." ". blocks .";
}
.main-content.archive .block-page-title {
  margin-top: calc(var(--wrapper-padding-top) * -1);
  margin-bottom: 0;
  padding: calc(var(--wrapper-padding-top) + var(--block-margin, 4rem) * 1) var(--gutter-left) calc(var(--block-margin, 4rem) * 1.5) var(--gutter-right);
  background: #175e54 url(images/dots.png) 50% 50%;
  color: #ffffff;
}
.main-content.archive .featured-posts {
  grid-area: featured;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  padding: 0 var(--gutter-right) calc(var(--block-margin, 4rem) * 1) var(--gutter-left);
  background: #f4f4f4;
}

body.has-large-page-title-banner .main-content.page .block-page-title {
  margin: calc(var(--wrapper-padding-top) * -1) calc(var(--gutter-right) * -1) calc(var(--block-margin, 4rem) * 1) calc(var(--gutter-left) * -1);
  padding: calc(var(--wrapper-padding-top) + var(--block-margin, 4rem) * 2) var(--gutter-left) calc(var(--block-margin, 4rem) * 1) var(--gutter-right);
  background: #175e54 url(images/dots.png) 50% 50%;
  color: #ffffff;
}

/*
.home .main-content {
    .page-blocks {
        margin-bottom: 6rem;
        padding-bottom: 0;

        h2.wp-block-heading {
            font-weight: 700;
            letter-spacing: 0.02em;
            margin-top: 4rem;
            margin-bottom: 2.5rem;
            font-size: scale-size(24px, 20px);
        }
    }
}
    */
.max-content-width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.page-id-2 .wp-block-group .expand-content {
  padding-top: 1.5em;
}

.wp-block-group .max-content-width {
  width: 711.1px;
}
@media screen and (max-width: 900px) {
  .wp-block-group .max-content-width {
    margin-left: var(--gutter-left) !important;
    margin-right: var(--gutter-right) !important;
  }
}

@media screen and (max-width: 400px) {
  .page-id-237 h1#page-title {
    overflow: hidden;
  }
}
/*
.is-provider-youtube iframe:not(.yt-shorts) {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.yt-shorts{
    width: 281.25px;
    .wp-block-embed__wrapper{
        position: relative;
        padding-bottom: 177.78%; 
        height: 0;
        overflow: hidden;
        max-width: 100%;
        iframe{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
    }
}

.yt-shorts.rounded .wp-block-embed__wrapper{
 border-radius: 8px;
}
*/
.block-recommended {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "title posts";
  gap: calc(var(--block-margin, 4rem) * 1);
  background: #f4f4f4;
  padding: calc(var(--block-margin, 4rem) * 1.25) var(--gutter-right) calc(var(--block-margin, 4rem) * 1.25) var(--gutter-left);
}
.block-recommended .block-introduction {
  grid-area: title;
}
.block-recommended .query-posts {
  grid-area: posts;
  padding: 0;
}
@media screen and (max-width: 900px) {
  .block-recommended {
    grid-template-columns: auto;
    grid-template-areas: "title" "posts";
  }
}

.block-filters {
  position: relative;
  z-index: 10;
  display: grid;
  row-gap: 1rem;
  grid-template-areas: "filters" "message";
}
.block-page-title + .block-filters .filters,
.block-page-title + .block-filters .message {
  translate: 0 -1.5rem;
}
.block-filters.no-filters {
  position: absolute;
  width: 0;
  height: 0;
}
.block-page-title + .block-filters {
  margin: 0 calc(var(--gutter-right) * -1) 0 calc(var(--gutter-left) * -1);
  background: #f4f4f4;
}
@media screen and (min-width: 1024px) {
  .block-page-title + .block-filters {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .block-page-title + .block-filters {
    padding: 0 var(--gutter-right) 0 var(--gutter-left);
  }
}
.block-filters .filters {
  position: relative;
  z-index: 1;
  grid-area: filters;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.block-filters .filters > label {
  display: none;
}
.block-filters .filters .search {
  display: flex;
  align-items: center;
  border-bottom: 5px solid #d9d9d9;
  background: #ffffff;
  padding: 0.325rem 1rem 0.35rem 1rem;
}
.block-filters .filters .search input[type=text] {
  flex-grow: 1;
  width: 260px;
  border: 0;
  border-radius: 0;
  padding: 0.5rem;
  font-size: 1rem;
  background: none;
  font-weight: normal;
}
.block-filters .filters .search input[type=text]::-moz-placeholder {
  color: var(--input-text-color, inherit);
  font-family: "Source Sans 3", Helvetica, arial, sans-serif;
}
.block-filters .filters .search input[type=text]::placeholder {
  color: var(--input-text-color, inherit);
  font-family: "Source Sans 3", Helvetica, arial, sans-serif;
}
.block-filters .filters .search button {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 24px;
  height: 24px;
  background: #8c1515;
  color: white;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .block-filters .filters {
    flex-wrap: wrap;
  }
  .block-filters .filters .filter {
    flex-grow: 1;
  }
  .block-filters .filters .search {
    width: 100%;
  }
}
.block-filters .message {
  grid-area: message;
  text-align: center;
  font-size: 0.888rem;
}
.block-filters .message button {
  background: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  text-transform: none;
  text-decoration: underline;
  border: 0;
  cursor: pointer;
}
.block-filters .message button:hover {
  text-decoration: none;
}

#featured-posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "featured post1" "featured post2" "featured .";
  align-items: start;
  -moz-column-gap: calc(var(--block-margin, 4rem) * 1);
       column-gap: calc(var(--block-margin, 4rem) * 1);
  row-gap: 2rem;
  grid-template-rows: auto auto 1fr;
}
#featured-posts > .hentry.post-1 {
  grid-area: featured;
}
#featured-posts > .hentry.post-2 {
  grid-area: post1;
}
#featured-posts > .hentry.post-3 {
  grid-area: post2;
}
#featured-posts > h2 {
  grid-area: title;
}
@media screen and (min-width: 1025px) {
  #featured-posts > .hentry.post-1 {
    --hentry-image-aspect: 66%;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  #featured-posts {
    grid-template-areas: "featured featured" "post1 post2";
    grid-template-rows: auto;
  }
  #featured-posts .hentry.post-2,
  #featured-posts .hentry.post-3 {
    grid-template-areas: "image ." "meta meta" "title title" "content content";
  }
  #featured-posts .hentry.post-2 .thumbnail,
  #featured-posts .hentry.post-3 .thumbnail {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  #featured-posts {
    grid-template-areas: "featured featured" "post1 post1" "post2 post2";
  }
}

.block-share {
  position: relative;
  display: inline-block;
  z-index: 3;
}
.wp-block-theme-blocks-post-banner .block-share {
  --share-hover-color: #f9a44a;
}
.block-share > .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
  transition: 0.2s ease;
}
.block-share > .label:hover {
  color: var(--share-hover-color, #b1040e);
}
.block-share.on > .label {
  color: var(--share-hover-color, #b1040e);
}
.block-share ul {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% -1rem;
  margin: 1rem 0 0 0;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  background: #8c1515;
  color: #ffffff;
  border-radius: 4px;
  font-size: 20px;
  transition: 0.4s;
  opacity: 0;
  z-index: -1;
}
.block-share ul:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 20px;
  height: 10px;
  margin: 0 0 -1px -10px;
  background: inherit;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.block-share ul li {
  position: relative;
}
.block-share ul li a {
  position: relative;
  display: flex;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  text-align: center;
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.block-share ul li a:hover {
  scale: 1.2;
  background: #b1040e;
}
.block-share.on ul {
  opacity: 1;
  z-index: 1;
  translate: -50% 0rem;
}

.icon.disposal {
  width: var(--hentry-icon-size, 2.4rem);
  height: var(--hentry-icon-size, 2.4rem);
  background: no-repeat 50% 50%;
  background-color: var(--waste-icon-background-color, #ccc);
  background-image: var(--waste-icon-background-image, none);
  background-size: 70% auto;
  border-radius: 50%;
  color: var(--waste-icon-background-color, #ccc);
  /*
      &.disposal.donate,
      &.disposal.recycle {
          --hentry-icon-background-color: #016895;
          --hentry-icon-background-image: url(images/waste/recycle_white.svg);        
      }
      &.disposal.landfill {
          --hentry-icon-background-color: #4d4f53;
          --hentry-icon-background-image: url(images/waste/landfill_white.svg);        
      }
      &.disposal.compost {
          --hentry-icon-background-color: #279989;
          --hentry-icon-background-image: url(images/waste/compost_white.svg);        
      }
  */
}

form.block-waste-search {
  position: relative;
  grid-area: search;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  width: 600px;
  max-width: 100%;
  padding: 0.25rem 1rem 0.25rem 60px;
  margin: 2rem auto 0;
  border: 2px solid #ccc;
  background: white;
}
form.block-waste-search .owl {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: -50px;
  width: 120px;
  height: 80px;
  margin: 4px 0 0;
  translate: 0 -50%;
  background: no-repeat 50% 50%;
  background-size: contain;
}
form.block-waste-search .owl.animating .frame.fly {
  --owl-opacity:1;
}
form.block-waste-search .owl.animating.landed .frame.fly {
  visibility: hidden;
}
form.block-waste-search .owl.animating.landed .frame.point {
  visibility: visible;
}
form.block-waste-search .owl.animating.throwing .frame.point {
  visibility: hidden;
}
form.block-waste-search .owl.animating.throwing .frame.trash {
  visibility: visible;
}
form.block-waste-search .owl .frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat;
  background-position: var(--owl-position, 50% 0%);
  background-image: var(--owl-image);
  background-size: auto var(--owl-scale, 100%);
  visibility: hidden;
}
form.block-waste-search .owl .frame.fly {
  visibility: visible;
  transition: opacity 0.4s ease-in-out;
  opacity: var(--owl-opacity, 0);
  --owl-scale: 85%;
  --owl-image:url(images/owls/fly.png);
}
form.block-waste-search .owl .frame.point {
  --owl-scale: 100%;
  --owl-image:url(images/owls/point-right.png);
  --owl-position: 65% 0%;
}
form.block-waste-search .owl .frame.trash {
  --owl-scale: 90%;
  --owl-image:url(images/owls/with-trash.png);
}
form.block-waste-search .input {
  gap: 1em;
  flex-grow: 1;
  display: inline-flex;
  align-items: center;
}
form.block-waste-search input[type=text] {
  flex-grow: 1;
  padding: 0.5rem;
  border: 0;
  flex-grow: 1;
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}
form.block-waste-search button {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  background: #1F5E54;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
}
form.block-waste-search ::-webkit-input-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}
form.block-waste-search :-moz-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}
form.block-waste-search ::-moz-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}
form.block-waste-search :-ms-input-placeholder {
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}

.main-content.waste-wizard {
  --page-blocks-padding-top: calc(var(--block-margin, 4rem) * 0.5);
}
.main-content.waste-wizard:not(.no-results) {
  background-color: #f4f4f4;
}
.main-content.waste-wizard > .layout {
  grid-template-areas: "title title title" ". filters ." ". posts ." ". pager ." ". blocks .";
}
.main-content.waste-wizard .block-alert {
  grid-area: alert;
}
.main-content.waste-wizard .block-page-title {
  --block-padding: calc(var(--block-margin, 4rem) * 2.5);
  position: relative;
  display: grid;
  grid-template-areas: ". . . . . ." ". . title title . ." ". . . . . ." ". . alert alert . ." ". . search toggle . ." ". . search toggle . .";
  grid-template-columns: var(--gutter-left) auto minmax(1fr, 600px) auto auto var(--gutter-right);
  grid-template-rows: [bg-start] var(--block-page-title-padding-top, calc(var(--block-margin, 4rem) * 1.3)) auto calc(var(--block-margin, 4rem) * 0.25) auto auto [bg-end] auto;
  margin: 0;
  padding: 0;
  color: #ffffff;
}
.main-content.waste-wizard .block-page-title:before, .main-content.waste-wizard .block-page-title:after {
  content: " ";
  grid-column: 1/-1;
  grid-row: bg-start/bg-end;
  width: 100%;
  height: 100%;
  background: #175e54 url(images/header-waste-tool3.png) repeat-x 50% 100%;
  background-size: cover;
}
.main-content.waste-wizard .block-page-title:before {
  display: block;
  translate: 0 var(--block-page-title-bg-y, 0%);
}
.main-content.waste-wizard .block-page-title:after {
  display: none;
}
.main-content.waste-wizard .block-page-title.has-alert {
  --block-page-title-bg-y: -5rem;
}
.main-content.waste-wizard .block-page-title.has-alert:after {
  display: block;
}
.main-content.waste-wizard .block-page-title h1 {
  grid-area: title;
}
.main-content.waste-wizard .block-page-title h1 > span {
  display: block;
  font-weight: inherit;
  font-size: clamp(1.667rem, 1.707vw + 1.297rem, 2.5rem);
  color: #a6dac8;
}
.main-content.waste-wizard .block-page-title form.block-waste-search {
  position: relative;
  z-index: 5;
  margin-top: 0;
  width: 100%;
  max-width: 600px;
  border: 0;
  border-bottom: 5px solid #d4d1d1;
}
.main-content.waste-wizard .block-page-title .toggle {
  position: relative;
  z-index: 5;
  box-sizing: border-box;
  grid-area: toggle;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: calc(var(--block-margin, 4rem) * 0.5);
       column-gap: calc(var(--block-margin, 4rem) * 0.5);
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  margin-right: 1rem;
  background: #ffffff;
  color: #2e2d29;
  border-bottom: 5px solid #d4d1d1;
}
.main-content.waste-wizard .block-page-title .toggle .icon {
  width: 1.5em;
  height: 1.5em;
  background: #1F5E54;
  color: #ffffff;
  border-radius: 50%;
  transition: 0.2s ease;
  rotate: 0deg;
}
body.category-filter-on .main-content.waste-wizard .block-page-title .toggle {
  background-color: #a6dac8;
  border-bottom-color: #a6dac8;
}
body.category-filter-on .main-content.waste-wizard .block-page-title .toggle .icon {
  rotate: 180deg;
}
@media screen and (max-width: 1024px) {
  .main-content.waste-wizard .block-page-title {
    --block-page-title-padding-top: calc(var(--block-margin, 4rem) * 1.8);
  }
}
@media screen and (max-width: 767px) {
  .main-content.waste-wizard .block-page-title {
    --block-page-title-padding-top: calc(var(--block-margin, 4rem) * 2.25);
    grid-template-columns: var(--gutter-left) 1fr var(--gutter-right);
    grid-template-areas: ". . ." ". title ." ". . ." ". alert ." ". search ." ". search ." ". toggle .";
    grid-template-rows: [bg-start] var(--block-page-title-padding-top, calc(var(--block-margin, 4rem) * 1.3)) auto calc(var(--block-margin, 4rem) * 0.25) auto auto [bg-end] auto auto;
  }
  .main-content.waste-wizard .block-page-title .toggle {
    margin: 1rem auto 0;
    width: 100%;
    max-width: 600px;
  }
}
.main-content.waste-wizard .block-filters {
  grid-area: filters;
  margin: 1rem 0 calc(var(--block-margin, 4rem) * 0.5) 0;
  padding: 0;
  background: none;
}
.main-content.waste-wizard .block-filters ul, .main-content.waste-wizard .block-filters li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-content.waste-wizard .block-filters ul {
  --category-filter-size2: var(--category-filter-size, 145px);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 1rem;
  background: #a6dac8;
  border-bottom: 0 solid #1F5E54;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}
body.category-filter-on .main-content.waste-wizard .block-filters ul {
  padding-top: 1rem;
  padding-bottom: 1rem;
  max-height: 100vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: scroll;
  border-bottom-width: 5px;
}
.main-content.waste-wizard .block-filters ul li {
  position: relative;
  text-align: center;
  width: var(--category-filter-size2);
  height: var(--category-filter-size2);
  display: grid;
  align-items: center;
  grid-template-rows: auto 3.5rem;
  grid-template-columns: 1fr auto auto 1fr;
  grid-template-areas: "image image image image" ". label icon .";
}
.main-content.waste-wizard .block-filters ul li:before {
  content: " ";
  display: block;
  position: absolute;
  width: var(--category-filter-size2);
  height: var(--category-filter-size2);
  background: #59b3a9;
  border-radius: 50%;
  opacity: var(--category-filter-opacity, 0);
  transition: opacity 0.2s ease;
}
.main-content.waste-wizard .block-filters ul li img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  grid-area: image;
  width: var(--category-filter-size2);
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.main-content.waste-wizard .block-filters ul li:after {
  position: relative;
  z-index: 1;
  grid-area: icon;
  align-self: center;
  display: inline-block;
  content: " ";
  width: var(--filter-button-font-size, 0.9em);
  height: var(--filter-button-font-size, 0.9em);
  background: url(images/icon-filter.svg) no-repeat 50% 50%;
  background-size: contain;
}
.main-content.waste-wizard .block-filters ul li a {
  position: relative;
  z-index: 1;
  grid-area: label;
  display: block;
  width: -moz-min-content;
  width: min-content;
  gap: 0.5em;
  padding: 0 0.5em;
  text-decoration: none;
  font-size: var(--filter-button-font-size, 0.9em);
  line-height: 1.3;
}
.main-content.waste-wizard .block-filters ul li:hover, .main-content.waste-wizard .block-filters ul li.on {
  --category-filter-opacity:1;
}
.main-content.waste-wizard .block-filters .filter-status {
  margin: 0;
  text-align: center;
  font-size: 0.888rem;
}
@media screen and (max-width: 1300px) {
  .main-content.waste-wizard .block-filters ul li {
    margin-left: var(--category-filter-spacing, 3rem);
    margin-right: var(--category-filter-spacing, 3rem);
  }
}
@media screen and (max-width: 1200px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-spacing: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-spacing: 1rem;
  }
}
@media screen and (max-width: 900px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-size: 130px;
  }
}
@media screen and (max-width: 767px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-spacing: 0rem;
    --category-filter-size: 120px;
  }
  .main-content.waste-wizard .block-filters ul {
    max-width: 600px;
    left: 50%;
    translate: -50% 0%;
  }
}
@media screen and (max-width: 550px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-size: 97px;
  }
}
@media screen and (max-width: 450px) {
  .main-content.waste-wizard .block-filters {
    --category-filter-size: 130px;
  }
  .main-content.waste-wizard .block-filters ul {
    justify-content: space-around;
  }
}
@media screen and (max-width: 400px) {
  .main-content.waste-wizard .block-filters {
    --filter-button-padding: .25em .5em;
    --filter-gap:.25rem;
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-right) * -1);
  }
}
.main-content.waste-wizard .query-posts {
  --gap: 2rem;
  --row-gap: 2rem;
  padding-top: calc(var(--block-margin, 4rem) * 0.5);
}
.main-content.waste-wizard .query-posts.no-results {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .main-content.waste-wizard .query-posts {
    --row-gap: 1rem;
  }
}
.main-content.waste-wizard .page-blocks {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}
.main-content.waste-wizard .query-posts.no-results ~ .page-blocks {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

.main-content.waste-item > .layout {
  grid-template-areas: ". title ." ". blocks ." ". meta ." ". posts ." ". search .";
}
.main-content.waste-item .block-page-title {
  --hentry-icon-size: 5rem;
  margin-top: calc(var(--block-margin, 4rem) * 2);
  margin-bottom: 0;
}
.main-content.waste-item .block-page-title img.wp-post-image {
  margin: 0 auto calc(var(--block-margin, 4rem) * -0.5);
  width: 100%;
  max-width: 20rem;
  max-height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.main-content.waste-item .block-page-title .icon.disposal {
  position: relative;
  z-index: 1;
  margin: 0 auto 0.25em;
}
.main-content.waste-item .block-page-title .disposal-stream {
  display: inline-block;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}
.main-content.waste-item .block-page-title .instructions {
  display: inline-block;
  margin: 0 0 0;
  padding: 0.5em 1em;
  font-size: 1.2rem;
  line-height: 1;
  background: #f9a44a;
  border-radius: 5rem;
}
.main-content.waste-item .block-page-title h1 {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.main-content.waste-item .block-page-title .block-back {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  text-align: left;
  margin-bottom: calc(var(--block-margin, 4rem) * 0.3);
}
@media screen and (min-width: 767px) {
  .main-content.waste-item .block-page-title .block-back {
    position: absolute;
    left: var(--gutter-left);
  }
}
.main-content.waste-item .block-page-title .block-back a {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.15em 1em 0.15em 0.25em;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 500;
  font-size: 1rem;
}
.main-content.waste-item .block-page-title .block-back .icon.arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: #8c1515;
  border-radius: 50%;
  color: #ffffff;
}
.main-content.waste-item .page-blocks {
  min-height: 0;
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 827.5862068966px) {
  .main-content.waste-item .page-blocks {
    --gutter-left-override: calc((100vw - 750px) / 2);
    --gutter-right-override: calc((100vw - 750px) / 2);
    --page-gutter-left: calc(((100vw - 750px) / 2) - var(--gutter-left));
    --page-gutter-right: calc(((100vw - 750px) / 2) - var(--gutter-right));
  }
  .main-content.waste-item .page-blocks > .theme-block.is-style-page-width {
    margin-left: calc(var(--page-gutter-left, 0) * -1);
    margin-right: calc(var(--page-gutter-right, 0) * -1);
  }
}
.main-content.waste-item .page-blocks .block-additional-content {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}
.main-content.waste-item .block-meta {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  grid-area: meta;
  margin: 1rem 0 0;
  font-size: 0.777em;
}
.main-content.waste-item .block-meta a {
  font-weight: 700;
  text-transform: uppercase;
}
.main-content.waste-item .block-waste-disposal-service {
  grid-area: services;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.main-content.waste-item form.block-waste-search {
  margin: 0 auto calc(var(--block-margin, 4rem) * 1);
}

.wp-block-theme-blocks-chart {
  position: relative;
  padding: 0 0 0 0;
}
p.is-style-intro + .wp-block-theme-blocks-chart {
  margin-top: calc(var(--block-margin, 4rem) * 0.75);
}
.wp-block-theme-blocks-chart div.block-chart {
  grid-area: chart;
  position: relative;
}
.wp-block-theme-blocks-chart canvas {
  display: block;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-chart canvas {
    min-height: 350px;
  }
}
.wp-block-theme-blocks-chart table.data-table {
  width: 100%;
}
.wp-block-theme-blocks-chart table.data-table th, .wp-block-theme-blocks-chart table.data-table td {
  padding: 0.5em;
}
.wp-block-theme-blocks-chart table.data-table th {
  background: #8c1515;
  color: #ffffff;
}
.wp-block-theme-blocks-chart table.data-table tr:nth-child(odd) {
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-chart table.data-table {
    font-size: 0.8em;
  }
}
.wp-block-theme-blocks-chart .block-content {
  margin: 2rem 0 0;
}
.wp-block-theme-blocks-chart .block-bottom {
  display: grid;
  grid-template-columns: auto;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 0;
}
.wp-block-theme-blocks-chart .block-legend {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-theme-blocks-chart .block-legend ul, .wp-block-theme-blocks-chart .block-legend li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-theme-blocks-chart .block-legend ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
}
.wp-block-theme-blocks-chart .block-legend ul li {
  display: grid;
  grid-template-columns: 2em 1fr;
  align-items: center;
  gap: 0.5em;
  cursor: pointer;
}
.wp-block-theme-blocks-chart .block-legend ul li .indicator {
  position: relative;
  display: block;
  width: 100%;
  height: 1em;
  background: var(--highlight-color, #f4f4f4);
  border: 2px solid var(--highlight-color, #f4f4f4);
  border-radius: 1em;
}
.wp-block-theme-blocks-chart .block-legend ul li .indicator:before {
  content: " ";
  position: absolute;
  top: 0.15em;
  right: 0.15em;
  width: 0.7em;
  height: 0.7em;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.2s ease;
}
.wp-block-theme-blocks-chart .block-legend ul li.item-hidden {
  text-decoration: line-through;
}
.wp-block-theme-blocks-chart .block-legend ul li.item-hidden .indicator {
  background-color: transparent;
}
.wp-block-theme-blocks-chart .block-legend ul li.item-hidden .indicator:before {
  right: calc(100% - 0.85em);
  background-color: var(--highlight-color, #f4f4f4);
}
.wp-block-theme-blocks-chart.has-download .block-bottom {
  grid-template-columns: 1fr auto;
}
.wp-block-theme-blocks-chart .tooltip {
  display: none;
  position: absolute;
  margin: 10px 0 0 10px;
  padding: 0.25rem;
  min-width: 6em;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.25rem;
  font-size: 16px;
  line-height: 1.2;
}
.wp-block-theme-blocks-chart .tooltip .row:not(.default-color) {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "color label" "desc desc";
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  align-items: center;
}
.wp-block-theme-blocks-chart .tooltip .row:not(.default-color):before {
  grid-area: color;
  content: " ";
  display: inline-block;
  width: 1.5em;
  height: 0.75em;
  background: var(--color, "#ccc");
}
.wp-block-theme-blocks-chart .tooltip .row + .row {
  margin: 0.25em 0 0;
}
.wp-block-theme-blocks-chart .tooltip .label {
  grid-area: label;
  display: block;
  font-weight: 700;
}
.wp-block-theme-blocks-chart .tooltip .description {
  grid-area: desc;
  width: 100%;
  border-top: 1px solid currentColor;
  margin: 0.25em 0 0.5em;
  padding: 0.25em 0 0;
  max-width: 20em;
}
.wp-block-theme-blocks-chart.has-switcher {
  display: grid;
  grid-template-columns: auto;
  grid-template-areas: "switcher" "chart";
  gap: 1em;
}
.wp-block-theme-blocks-chart .block-switcher {
  grid-area: switcher;
}

.block-switcher {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-areas: "label current .";
  align-items: center;
  gap: 0.5em;
}
.block-switcher select {
  display: none;
  grid-area: current;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
  opacity: 0;
}
.block-switcher .label {
  grid-area: label;
}
.block-switcher .current {
  grid-area: current;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  min-width: 10em;
  padding: 0.5em;
  border: 1px solid var(--color, #ccc);
  cursor: pointer;
}
.block-switcher .current:after {
  display: inline-block;
  margin: 0 0 0 0.5em;
  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";
  transform: rotate(0deg);
  transition: 0.2s ease;
}
.block-switcher ul, .block-switcher li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.block-switcher > ul {
  display: none;
  position: absolute;
  grid-column: 2/-1;
  z-index: 100;
  top: 100%;
  left: 0;
  margin: -1px 0 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--color, #ccc);
}
@media (max-width: 1024px) {
  .block-switcher select {
    display: block;
  }
}
.block-switcher.on > ul {
  display: block;
}
.block-switcher.on .current:after {
  transform: rotate(90deg);
}
.block-switcher > ul > li {
  display: block;
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding: 0.5em;
  color: var(--color, #aaa);
}
.block-switcher > ul > li:hover {
  background-color: #f4f4f4;
}
.block-switcher > ul > li.on {
  --color: #000;
}

.wp-block-theme-blocks-page-banner {
  --block-margin-multiplier: 2;
  --bottom-margin: 4rem;
  --icon-size: 150px;
  position: relative;
  padding: var(--block-padding-top) 0 0;
  height: 50dvh;
  min-height: 720px;
  background-color: var(--background-color, #8c1515);
  color: #ffffff;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: var(--gutter-left) auto 1fr auto var(--gutter-right);
  grid-template-areas: "photo photo photo photo photo photo" ". . . . . ." ".  title . icon . ." ". . . . . .";
  grid-template-rows: 1fr auto var(--bottom-margin) var(--bottom-margin);
}
.wp-block-theme-blocks-page-banner:first-child {
  margin-top: calc((var(--page-blocks-padding-top, 0px) + var(--header-height, 70px) + var(--header-offset, 0px) * 2 + var(--wp-admin--admin-bar--height, 0px)) * -1);
  padding-top: calc(var(--block-padding-top) + var(--page-blocks-padding-top, 0px) + var(--header-offset, 0px) * 2);
}
.wp-block-theme-blocks-page-banner:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(images/banner.png) no-repeat 100% 100%;
  background-size: auto 100%;
  z-index: 50;
}
@media screen and (max-width: 1440px) {
  .wp-block-theme-blocks-page-banner:before {
    z-index: 0;
  }
}
@media screen and (max-width: 1440px) and (min-height: 1000px) {
  .wp-block-theme-blocks-page-banner:before {
    z-index: 0;
  }
}
@media screen and (min-width: 1440px) {
  .wp-block-theme-blocks-page-banner:before {
    background-position: 200% 100%;
  }
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-page-banner {
    --bottom-margin: 2.5rem;
    min-height: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-page-banner {
    height: 50dvh;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-page-banner {
    justify-items: center;
    align-items: center;
    grid-template-columns: var(--gutter-left) 1fr var(--gutter-right);
    grid-template-rows: 1fr auto auto calc(var(--block-margin, 4rem) * 0.75);
    grid-template-areas: "photo photo photo" ". icon . " ". title ." ". . .";
    height: 75dvh;
    margin-bottom: 3rem;
  }
  .wp-block-theme-blocks-page-banner:before {
    width: 100%;
    height: 100%;
    background-position: 50% 50%;
  }
}
.wp-block-theme-blocks-page-banner .block-back {
  --icon-size: 8px;
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  position: absolute;
  z-index: 51;
  left: var(--gutter-left);
  top: calc(calc(var(--block-margin, 4rem) * 0.5) + var(--header-height, 0px));
  margin-top: var(--wp-admin--admin-bar--height, 0px);
}
.wp-block-theme-blocks-page-banner .block-back .label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.15em 1em 0.15em 0.25em;
  border-radius: 1em;
  background: #2e2d29;
  color: #ffffff;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 500;
}
.wp-block-theme-blocks-page-banner .block-back .icon.arrow {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  background: #8c1515;
  border-radius: 50%;
  color: #ffffff;
  transition: 0.2s ease;
}
.wp-block-theme-blocks-page-banner .block-back.dropdown {
  background: #ffffff;
  color: #2e2d29;
  transition: background-color 0.2s ease;
}
.wp-block-theme-blocks-page-banner .block-back.dropdown .label {
  background: transparent;
  color: inherit;
  padding: 0.5em 1rem;
  border-radius: 0;
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
}
.wp-block-theme-blocks-page-banner .block-back.dropdown .label .text {
  flex-grow: 1;
}
.wp-block-theme-blocks-page-banner .block-back ul {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  line-height: 1;
  font-family: var(--theme-font-sans-serif);
  font-size: 0.8em;
  background: inherit;
  border-bottom: 0 solid #d9d9d9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease, border 0.2s ease;
}
.wp-block-theme-blocks-page-banner .block-back ul a {
  display: block;
  padding: 0.25em 1rem;
  transition: background-color 0.2s ease;
  text-decoration: none;
}
.wp-block-theme-blocks-page-banner .block-back ul a:hover {
  background: #8c1515;
}
.wp-block-theme-blocks-page-banner .block-back ul li {
  margin: 0;
}
.wp-block-theme-blocks-page-banner .block-back ul li:last-child a {
  padding-bottom: 0.75em;
}
body.back-on .wp-block-theme-blocks-page-banner .block-back {
  background: #b1040e;
  color: #ffffff;
}
body.back-on .wp-block-theme-blocks-page-banner .block-back .label {
  min-width: 9em;
}
body.back-on .wp-block-theme-blocks-page-banner .block-back .icon.arrow {
  rotate: 180deg;
}
body.back-on .wp-block-theme-blocks-page-banner .block-back ul {
  max-height: 100vh;
  max-height: -moz-fit-content;
  max-height: fit-content;
  overflow: auto;
  padding-top: 0.5em;
  border-bottom-width: 5px;
}
.wp-block-theme-blocks-page-banner .block-photo {
  grid-row: 1/5;
  grid-column: 1/6;
  display: inline;
  height: 100%;
}
.wp-block-theme-blocks-page-banner .block-photo::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 90%);
}
.wp-block-theme-blocks-page-banner .block-photo img {
  width: 100dvw;
  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-theme-blocks-page-banner .block-subtitle {
  grid-area: subtitle;
  margin: 0 0 0.5em;
  text-transform: uppercase;
  font-size: clamp(0.889rem, 0.683vw + 0.741rem, 1.222rem);
  font-weight: 700;
}
.wp-block-theme-blocks-page-banner .block-title {
  grid-area: title;
  position: relative;
  z-index: 100;
  margin: 0.2rem 0 0;
}
.wp-block-theme-blocks-page-banner .block-icon {
  grid-area: icon;
  position: relative;
  margin: -2rem 0 0;
  overflow: revert;
  z-index: 100;
}
.wp-block-theme-blocks-page-banner .block-icon img, .wp-block-theme-blocks-page-banner .block-icon .img {
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: #b1040e;
  padding: 30px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-page-banner .block-icon {
    --icon-size: 100px;
  }
  .wp-block-theme-blocks-page-banner .block-icon img, .wp-block-theme-blocks-page-banner .block-icon .img {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-page-banner .block-icon {
    margin: -2rem 0;
    --icon-size: 100px;
  }
  .wp-block-theme-blocks-page-banner .block-icon img, .wp-block-theme-blocks-page-banner .block-icon .img {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-page-banner .block-icon {
    margin: 1rem 0;
    --icon-size: 60px;
  }
  .wp-block-theme-blocks-page-banner .block-icon img, .wp-block-theme-blocks-page-banner .block-icon .img {
    padding: 15px;
  }
}

.wp-block-theme-blocks-post-banner {
  --image-height: 800px;
  --padding-top: calc(var(--block-margin, 4rem) * 1);
  --circle-size: calc(var(--image-height)/2.2);
  --offset-left: calc(var(--block-margin, 4rem) * 1.5);
  position: relative;
  color: #ffffff;
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
  display: grid;
  grid-template-columns: var(--gutter-left) var(--offset-left) auto 1fr calc(var(--block-margin, 4rem) * 2) var(--gutter-right);
  grid-template-rows: [background-start] calc(var(--padding-top) + var(--block-margin, 4rem) * 1) auto auto auto calc(var(--image-height) / 2) [background-end] calc(var(--image-height) / 2) auto;
  grid-template-areas: ". . . . . ." ". . date loc share ." ". . title title . ." ". . intro intro . ." ". image image image image ." ". image image image image ." ". . caption caption caption .";
}
@media screen and (max-width: 1035px) and (min-width: 768px) {
  .wp-block-theme-blocks-post-banner {
    --offset-left: calc((100vw - var(--gutter-left) - var(--gutter-right) - 750px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-post-banner {
    --image-height: calc(800 / 1200 * 100vw);
  }
}
.wp-block-theme-blocks-post-banner.no-image {
  --image-height: 0px;
  --circle-size: calc(var(--block-margin, 4rem) * 5);
}
.block-hero > .wp-block-theme-blocks-post-banner {
  --padding-top: var(--wrapper-padding-top, calc(var(--block-margin, 4rem) * 1));
}
body.single-tool .wp-block-theme-blocks-post-banner {
  --post-banner-background-color: #53565a;
  --post-banner-text-color: #ffffff;
}
.wp-block-theme-blocks-post-banner:before {
  content: " ";
  display: block;
  grid-column: 1/-1;
  grid-row: background-start/background-end;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--post-banner-background-color, #175e54) url(images/dots.png) 50% 50%;
}
.wp-block-theme-blocks-post-banner:after {
  content: " ";
  display: block;
  position: absolute;
  grid-area: image;
  top: 0;
  right: 95%;
  width: var(--circle-size);
  height: var(--circle-size);
  margin: calc(var(--block-margin, 4rem) * -1.5) calc(var(--block-margin, 4rem) * -0.5) 0 0;
  background: url(images/circle-dashed-orange.svg) 50% 50% no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-post-banner:after {
    max-width: 118px;
    top: -59px;
    display: none;
  }
}
.wp-block-theme-blocks-post-banner .event-date {
  grid-area: date;
  align-self: center;
  justify-self: start;
  display: inline-block;
  padding: 0 1em;
  margin: 0;
  border-radius: 2rem;
  background: #f9a44a;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  font-weight: 700;
  color: #2e2d29;
}
.wp-block-theme-blocks-post-banner .block-location {
  grid-area: loc;
  margin-left: 1em;
  font-size: clamp(0.778rem, 0.114vw + 0.753rem, 0.833rem);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
  align-self: center;
  color: var(--post-banner-text-color, #a6dac8);
}
.wp-block-theme-blocks-post-banner .block-date,
.wp-block-theme-blocks-post-banner .block-share {
  margin: 0;
  font-size: 0.8888888889rem;
  font-weight: 700;
  color: var(--post-banner-text-color, #a6dac8);
  text-transform: uppercase;
}
.wp-block-theme-blocks-post-banner .block-date {
  grid-area: date;
}
.wp-block-theme-blocks-post-banner .block-share {
  grid-area: share;
  margin-left: auto;
}
.wp-block-theme-blocks-post-banner .block-title {
  grid-area: title;
  position: relative;
  max-width: 900px;
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: 1rem;
  z-index: 2;
  color: var(--post-banner-text-color, #a6dac8);
}
.wp-block-theme-blocks-post-banner .block-introduction {
  position: relative;
  z-index: 1;
  grid-area: intro;
  max-width: 790px;
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
  font-size: 1.2rem;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
.wp-block-theme-blocks-post-banner.no-image .block-title {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-post-banner.no-image .block-introduction {
  margin-top: calc(var(--block-margin, 4rem) * -0.75);
}
.wp-block-theme-blocks-post-banner .block-image {
  position: relative;
  z-index: 1;
  grid-area: image;
}
.wp-block-theme-blocks-post-banner .block-image 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%);
}
.wp-block-theme-blocks-post-banner .block-image figcaption {
  position: absolute;
  line-height: 1.3;
  bottom: -2.6em;
  right: 0;
  max-width: 800px;
  background: #ffffff;
}
.wp-block-theme-blocks-post-banner .block-image.no-image {
  background: #8c1515;
}
.wp-block-theme-blocks-post-banner .block-title + .block-image {
  margin-top: 2rem;
}
.wp-block-theme-blocks-post-banner .block-caption {
  position: relative;
  z-index: 1;
  grid-area: caption;
  margin: 0.5em 0 0;
  font-size: 0.8888888889rem;
  text-align: right;
  color: #2e2d29;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-post-banner {
    grid-template-columns: var(--gutter-left) 1fr auto var(--gutter-right);
    grid-template-rows: [background-start] calc(var(--padding-top) + var(--block-margin, 4rem) * 1) auto auto auto auto calc(var(--image-height) / 2) [background-end] calc(var(--image-height) / 2) auto;
    grid-template-areas: ". . . ." ". date share ." ". loc loc ." ". title title ." ". intro intro ." ". image image ." ". image image ." ". caption caption .";
  }
  .wp-block-theme-blocks-post-banner .block-location {
    margin-left: 0;
    margin-top: 0.5em;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-post-banner .block-introduction {
    font-size: 1rem;
  }
}

.wp-block-theme-blocks-tabs .block-tabs {
  position: relative;
}

.theme-block.wp-block-theme-blocks-tabs {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.theme-block.wp-block-theme-blocks-tabs .block-tabs ul {
  display: flex;
  justify-content: start;
  align-items: center;
}
.theme-block.wp-block-theme-blocks-tabs .block-tabs ul li:before {
  display: none;
}
.theme-block.wp-block-theme-blocks-tabs .block-tabs ul .tab + li.tab-btn {
  justify-self: end;
  margin-left: auto;
}
.theme-block.wp-block-theme-blocks-tabs .block-tabs ul li.tab-btn + li.tab-btn {
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-tabs .block-tabs {
    font-size: 0.8em;
  }
}
.theme-block.wp-block-theme-blocks-tabs .slides {
  position: relative;
  z-index: 1;
  padding: calc(var(--block-margin, 4rem) * 0.5);
  background: var(--tab-color);
}
.theme-block.wp-block-theme-blocks-tabs .slides .slide {
  display: none;
}
.theme-block.wp-block-theme-blocks-tabs .slides .slide.on {
  display: block;
}
.theme-block.wp-block-theme-blocks-tabs .current {
  display: none;
}

.wp-block-theme-blocks-tabs {
  --tab-color: #f4f4f4;
  /*
  @media screen and (max-width:$mobile-breakpoint) {
      display: block;
      .current {
          display: block;
          position: relative;
          cursor: pointer;
          padding: 1em 35px 1em 0em;
          border-bottom: 1px solid rgba(#ccc, .5);
          &:before {
              content: ' ';
              display: block;
              position: absolute;
              right: 1em;
              top: 1em;
              width: 12px;
              height: 20px;
              margin: 3px 0 0;
              background: $color-orange;
              clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
              transform:rotate(90deg);
          }
      }
      .block-tabs {
          margin-bottom:1em;
          ul {
              display: none;
              position: absolute;
              z-index:10;
              top: 100%;
              left: 0;
              width: 100%;
              margin: -1em 0 0;
              background: #000;
              color: white;
              border-bottom: 1px solid rgba(#ccc, .5);
              li {
                  padding: .5em 1em .5em 1em;

                  &:before {
                      display: none !important;
                  }
              }
          }
      }
      &.current-on {
          .current {
              &:before {
                  transform: rotate(-90deg);
              }
          }
          .block-tabs {
              ul {
                  display: block;
              }
          }
      }
  }
  */
}
.wp-block-theme-blocks-tabs .block-tabs ul, .wp-block-theme-blocks-tabs .block-tabs li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-theme-blocks-tabs .block-tabs ul .tab {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  cursor: pointer;
  font-weight: 600;
  color: var(--tab-text-color, inherit);
  text-align: center;
}
.wp-block-theme-blocks-tabs .block-tabs ul .tab:before {
  display: none;
}
.wp-block-theme-blocks-tabs .block-tabs ul .tab:not(.on) {
  color: #666;
}
.wp-block-theme-blocks-tabs .block-tabs ul .tab.on {
  background-color: var(--tab-active-color, var(--tab-color));
  color: var(--tab-active-text-color, inherit);
}
.wp-block-theme-blocks-tabs.is-style-infographics {
  --tab-color: #c8b98f;
  --tab-text-color: #000;
  --tab-active-text-color: white;
  --tab-active-color: #8c1515;
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-bottom: 1px solid var(--tab-color);
  gap: 1px;
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab {
  flex-grow: 1;
  font-weight: 700;
  font-size: clamp(1rem, 0.228vw + 0.951rem, 1.111rem);
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab:not(.on) {
  background-color: var(--tab-color);
  color: var(--tab-text-color);
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab + li.btn {
  justify-self: start;
  margin-left: 1em;
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab:first-child {
  border-radius: 1em 0 0 0;
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab:last-child {
  border-radius: 0 1em 0 0;
}
.wp-block-theme-blocks-tabs.is-style-infographics .block-tabs ul .tab:first-child:last-child {
  border-radius: 1em 1em 0 0;
}
.wp-block-theme-blocks-tabs.is-style-infographics .slides {
  padding: 0;
  background: none;
}

.wp-block-theme-blocks-tabs.is-style-charts {
  max-width: none;
  background: none;
}
.wp-block-theme-blocks-tabs.is-style-charts .wp-block-buttons.is-style-tabs {
  margin-top: 0;
}
.wp-block-theme-blocks-tabs.is-style-charts .wp-block-group.is-style-tab-content {
  margin-bottom: 0;
}
.wp-block-theme-blocks-tabs.is-style-charts .slides {
  padding: calc(var(--block-margin, 4rem) * 0.15);
}
.wp-block-theme-blocks-tabs.is-style-charts .wp-block-theme-blocks-tabs-slide {
  padding: calc(var(--block-margin, 4rem) * 0.25);
  background: #ffffff;
}

.wp-block-theme-blocks-tabs.is-style-large-tabs .block-tabs ul li {
  font-size: clamp(1.333rem, 0.455vw + 1.235rem, 1.556rem);
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-tabs.is-style-large-tabs .block-tabs ul li {
    font-size: 17px;
  }
}
@media screen and (max-width: 410px) {
  .wp-block-theme-blocks-tabs.is-style-large-tabs .block-tabs ul li {
    font-size: 15px;
  }
}

.wp-block-theme-blocks-hero-wrap {
  --block-gutter-left: calc(var(--gutter-left) + calc(var(--block-margin, 4rem) * 2));
  --block-gutter-right: calc(var(--gutter-right) + calc(var(--block-margin, 4rem) * 2));
  position: relative;
  overflow: hidden;
  background: #175e54;
}
@media screen and (max-width: 1280px) {
  .wp-block-theme-blocks-hero-wrap {
    --block-gutter-left: calc(var(--gutter-left) + calc(var(--block-margin, 4rem) * 0.5));
    --block-gutter-right: calc(var(--gutter-right) + calc(var(--block-margin, 4rem) * 0.5));
  }
}
@media screen and (max-width: 781px) {
  .wp-block-theme-blocks-hero-wrap {
    --block-gutter-left: calc(var(--gutter-left));
    --block-gutter-right: calc(var(--gutter-right));
  }
}
.wp-block-theme-blocks-hero-wrap:first-child {
  margin-top: calc((var(--page-blocks-padding-top, 0px) + var(--header-height) + var(--alert-height, 0px)) * -1);
}
.wp-block-theme-blocks-hero-wrap .layer-line,
.wp-block-theme-blocks-hero-wrap .layer {
  position: absolute;
  z-index: 1;
  opacity: 0;
}
.wp-block-theme-blocks-hero-wrap .layer-line svg,
.wp-block-theme-blocks-hero-wrap .layer-line img,
.wp-block-theme-blocks-hero-wrap .layer svg,
.wp-block-theme-blocks-hero-wrap .layer img {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: none;
}

.wp-block-theme-blocks-hero.section-top {
  --max-scene-width: 200vw;
  position: relative;
  z-index: 10;
  padding: calc(var(--header-height, 0px)) 0 0;
  display: grid;
  grid-template-rows: 3fr auto 4fr;
  grid-template-columns: var(--block-gutter-left) auto var(--block-gutter-right);
  grid-template-areas: ". . ." ". content ." ". . .";
  box-sizing: border-box;
  color: #ffffff;
}
.wp-block-theme-blocks-hero.section-top .block-image {
  --offset: calc(var(--header-height, 0px) - calc(var(--block-margin, 4rem) * 0.5));
  position: absolute;
  z-index: 40;
  top: var(--offset);
  right: var(--block-gutter-right);
  width: 0%;
  height: calc(100% - var(--offset) * 2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-theme-blocks-hero.section-top .block-image img {
  display: block;
  position: absolute;
  top: 4%;
  right: calc(var(--block-margin, 4rem) * -0.75);
  height: 90%;
  width: auto;
  max-width: none;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  transition: 0.4s ease-in-out;
  opacity: 1;
}
.wp-block-theme-blocks-hero.section-top .block-image img.off {
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .wp-block-theme-blocks-hero.section-top .block-image {
    display: none !important;
  }
}
.wp-block-theme-blocks-hero.section-top .block-content {
  grid-area: content;
  position: relative;
  z-index: 50;
  padding: 0;
}
.wp-block-theme-blocks-hero.section-top .block-content strong, .wp-block-theme-blocks-hero.section-top .block-content em {
  font-weight: inherit;
  font-style: inherit;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 {
  position: relative;
  font-size: clamp(3.333rem, 1.707vw + 2.963rem, 4.167rem);
  font-weight: 800;
  line-height: 1;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 > span {
  display: block;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 > span strong {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 > span.finish strong {
  left: 0%;
  translate: 0% 0%;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 em {
  color: #a6dac8;
}
.wp-block-theme-blocks-hero.section-top .block-content h1 .icon {
  --icon-size:10px;
  display: inline-block;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 0;
  width: 2rem;
  height: 2rem;
  background: #a6dac8;
  color: #175e54;
  border-radius: 50%;
  opacity: 0;
}
.wp-block-theme-blocks-hero.section-top .block-bottom {
  grid-area: bottom;
}

#clouds {
  z-index: 11;
  top: 40%;
  left: 10%;
  width: 30%;
  height: 10%;
  opacity: 1;
}

#top-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-size: auto 600px;
  opacity: 0;
  transition: height 0.4s ease-in-out;
}
#top-dots.done {
  height: 0px;
}
#top-dots img {
  left: 0;
  right: auto;
  height: 600px;
  width: auto;
  top: auto;
  bottom: 0;
}

/*#hills1 {
    opacity:1;

    z-index:41;
    bottom:0;
    left:0;
    width: var(--max-scene-width);
    height: 10%;

}
*/
#hills2 {
  bottom: -3%;
  left: 0;
  width: var(--max-scene-width);
  height: 35%;
}

#hills3 {
  bottom: -5%;
  left: -2rem;
  width: var(--max-scene-width);
  height: 50%;
}

#hills4 {
  bottom: -6%;
  left: -2rem;
  width: 140vw;
  height: 70%;
}

#hills5 {
  bottom: 12%;
  left: 18%;
  width: 100vw;
  height: 40%;
  transform-origin: 50% 100%;
}

#line-top-right {
  display: block;
  position: absolute;
  z-index: 0;
  top: -15%;
  right: -15%;
  width: 50%;
  height: 60%;
  background: url(blocks/hero/images/Squiggle-TopRight.svg) no-repeat 50% 50%;
  background-size: 100% 100%;
}

#dots-bottom-right {
  bottom: -13%;
  right: 0%;
  width: 90%;
  height: 50%;
  opacity: 1;
}

.theme-block.wp-block-theme-blocks-hero-wrap {
  --block-top-height: 800px;
}
.theme-block.wp-block-theme-blocks-hero-wrap:before {
  content: " ";
  display: block;
  height: var(--block-top-height);
}
.theme-block.wp-block-theme-blocks-hero-wrap .wp-block-theme-blocks-hero.section-top {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  width: 100%;
  height: var(--block-top-height);
}
.theme-block.wp-block-theme-blocks-hero-wrap .wp-block-theme-blocks-hero.section-top .block-image img.first {
  scale: 0.25;
}
.theme-block.wp-block-theme-blocks-hero-wrap .wp-block-theme-blocks-hero.section-top .block-content h1 strong {
  opacity: 0;
}
.theme-block.wp-block-theme-blocks-hero-wrap.is-scrolled-off .wp-block-theme-blocks-hero.section-top {
  visibility: hidden;
}

.wp-block-theme-blocks-hero.section-bottom {
  --block-column-gap: calc(var(--block-margin, 4rem) * 1);
  position: relative;
  box-sizing: border-box;
  background: #a6dac8;
}
body.theme .wp-block-theme-blocks-hero.section-bottom {
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-hero.section-bottom {
    padding: 0 calc(var(--block-gutter-right) - calc(var(--block-margin, 4rem) * 1.5)) calc(var(--block-margin, 4rem) * 1) var(--block-gutter-left);
    padding: calc(var(--block-margin, 4rem) * 1) var(--gutter-right) calc(var(--block-margin, 4rem) * 1) var(--gutter-left);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero.section-bottom {
    padding: 0 var(--block-gutter-right) calc(var(--block-margin, 4rem) * 1) var(--block-gutter-left);
  }
}
.wp-block-theme-blocks-hero.section-bottom:before, .wp-block-theme-blocks-hero.section-bottom:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-heading,
.wp-block-theme-blocks-hero.section-bottom .wp-block-columns {
  position: relative;
  z-index: 5;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-columns {
  -moz-column-gap: var(--block-column-gap);
       column-gap: var(--block-column-gap);
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-columns .wp-block-column {
  flex-grow: 4;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-columns .wp-block-column:first-child {
  flex-grow: 3;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-theme-blocks-posts {
  margin-bottom: 0;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-theme-blocks-posts .query-posts {
  padding-bottom: var(--row-gap);
}
.wp-block-theme-blocks-hero.section-bottom h2 {
  display: flex;
  align-items: center;
}
.wp-block-theme-blocks-hero.section-bottom h2.has-text-align-center {
  font-size: clamp(1.556rem, 0.91vw + 1.358rem, 2rem);
  justify-content: center;
}
.wp-block-theme-blocks-hero.section-bottom h2.has-text-align-center:after {
  display: inline-block;
  content: " ";
  margin: 0 0 0 0.3em;
  width: 1em;
  height: 1em;
  background: url(blocks/hero/images/role_green.svg) no-repeat 50% 50%;
  background-size: contain;
}
.wp-block-theme-blocks-hero.section-bottom .wp-block-button.is-style-outline {
  background: var(--block-background-color, #a6dac8);
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-hero.section-bottom {
    --block-column-gap: calc(var(--block-margin, 4rem) * 1);
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-hero.section-bottom {
    --block-column-gap: 2em;
  }
  .wp-block-theme-blocks-hero.section-bottom .wp-block-columns > .wp-block-column:first-child {
    flex-grow: 0;
    flex-basis: 33.33%;
  }
  .wp-block-theme-blocks-hero.section-bottom .wp-block-columns > .wp-block-column:last-child {
    flex-basis: 66.66%;
  }
}
@media screen and (max-width: 781px) {
  .wp-block-theme-blocks-hero.section-bottom .wp-block-theme-blocks-posts .query-posts {
    --row-gap:1.5rem;
  }
  .wp-block-theme-blocks-hero.section-bottom .wp-block-columns {
    row-gap: 0;
  }
}

#line-bottom {
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 350px;
  max-height: 100%;
  background: url(blocks/hero/images/Dots-BottomRight.png) no-repeat 100% 0%;
  background-size: auto 600px;
  opacity: 0.7;
}

#line-left {
  position: absolute;
  display: block;
  z-index: 2;
  top: -7rem;
  left: 0;
  width: 70%;
  height: 75%;
  background: url(blocks/hero/images/Squiggle-Left.svg) no-repeat 100% 0%;
  background-size: 100% 100%;
  opacity: 1;
}

#hills1 {
  opacity: 1;
  position: absolute;
  bottom: 100%;
  margin-bottom: -1px;
  left: 0;
  width: 200vw;
  height: 6.5rem;
}

@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-hero-wrap {
    --block-top-height: 90dvh;
  }
}
@media screen and (max-width: 767px) and (max-height: 700px) {
  .theme-block.wp-block-theme-blocks-hero-wrap {
    --block-top-height: 630px;
  }
}
@media screen and (max-width: 767px) {
  #hills1 {
    height: 6vw;
  }
  #hills2 svg {
    width: 150%;
  }
  #hills4 {
    height: 50%;
  }
  #hills5 {
    height: 30%;
  }
  #line-left {
    top: -3rem;
    height: 50%;
  }
}
.wp-block-theme-blocks-card {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  position: relative;
  font-size: 0.9rem;
}
.wp-block-theme-blocks-card.is-style-no-image .thumbnail {
  display: none;
}
.wp-block-theme-blocks-card .thumbnail, .wp-block-theme-blocks-card figure {
  grid-area: thumbnail;
  display: block;
  position: relative;
  padding: 0 0 60%;
  margin: 0 0 1rem;
  background: rgba(0, 0, 0, 0.1);
}
.wp-block-theme-blocks-card .thumbnail img, .wp-block-theme-blocks-card figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-card .title {
  grid-area: title;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem !important;
}
.wp-block-theme-blocks-card .title a {
  color: inherit;
  font-weight: inherit;
}
.wp-block-theme-blocks-card .title a:after {
  content: " ";
  display: inline-block;
  margin: 0 0 0 0.3em;
  width: 1em;
  height: 0.7em;
  background: url(arrow.svg) no-repeat 50% 50%;
  background-size: contain;
  transition: 0.2s ease;
  transform: translate(0, 0);
}
.wp-block-theme-blocks-card .title a:hover:after {
  transform: translate(2px, -2px);
}
.wp-block-theme-blocks-card .block-content {
  grid-area: content;
}
@media screen and (min-width: 767px) {
  .wp-block-theme-blocks-posts-container.columns-1 .wp-block-theme-blocks-card, .wp-block-theme-blocks-card.is-style-horizontal {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "thumbnail title" "thumbnail content" "thumbnail link-selector";
    -moz-column-gap: calc(var(--block-margin, 4rem) * 0.5);
         column-gap: calc(var(--block-margin, 4rem) * 0.5);
  }
}

.wp-block-theme-blocks-cards {
  margin: 0 auto auto;
  padding-top: 0;
}
.wp-block-theme-blocks-cards:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-cards:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-cards .query-posts {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 1rem;
}
.page-blocks > .wp-block-theme-blocks-cards.is-style-wider-width {
  margin-left: calc(var(--inner-gutter) * -0.75);
  margin-right: calc(var(--inner-gutter) * -0.75);
}

.page-blocks > .wp-block-theme-blocks-cards.is-style-wider-width:last-child {
  margin-bottom: calc(var(--main-content-padding-bottom) * -1);
}
.page-blocks > .wp-block-theme-blocks-cards.is-style-wider-width:last-child > .query-posts {
  margin-bottom: var(--gap, calc(var(--block-margin, 4rem) * 0.5));
}

.wp-block-theme-blocks-posts-container > .title {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 400;
  font-size: clamp(1.333rem, 0.91vw + 1.136rem, 1.778rem);
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
  border-bottom: 2px solid #3FAF91;
}
.wp-block-theme-blocks-posts-container > .posts {
  margin: 1rem 0 0;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--block-posts-container-columns, 2), 1fr);
  gap: 2em;
}

.block-embed {
  position: relative;
  perspective: 800;
}
.block-embed .component {
  display: block;
  position: absolute;
  transform-style: preserve-3d;
}
.block-embed .slide-down {
  transform-origin: 50% 0%;
  rotate: x 90deg;
}
.block-embed .slide-down.done {
  rotate: x 0deg;
}
.block-embed .block-button.has-animation {
  --transition: .5s ease-in-out;
  transform: rotateX(90deg);
  transform-origin: 50% 100%;
  transition: var(--transition);
}
.block-embed .block-button.has-animation > .block-button__link {
  transition: var(--transition);
}
.block-embed .block-button.has-animation.animate-fade-in > .block-button__link {
  transform-origin: 50% 50%;
  scale: 1.5;
  opacity: 0;
}
.block-embed .block-button.has-animation.animated {
  transform: rotateX(0deg);
}
.block-embed .block-button.has-animation.animated > .block-button__link {
  opacity: 1;
  scale: 1;
}

.wp-block-theme-blocks-infographic {
  position: relative;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "embed";
}
.wp-block-theme-blocks-infographic .block-embed {
  grid-area: embed;
  position: relative;
  padding: 0 0 calc(var(--aspect-ratio, 1) * 100%);
  height: 0;
  overflow-x: hidden;
}
.wp-block-theme-blocks-infographic .block-embed > svg,
.wp-block-theme-blocks-infographic .block-embed > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.wp-block-theme-blocks-infographic .block-embed > img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-infographic .block-embed .block-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "embed embed";
    grid-auto-flow: row;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    align-items: stretch;
  }
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons .wp-block-theme-blocks-infographic-heading {
    grid-column: 1/-1;
  }
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons .wp-block-theme-blocks-infographic-button {
    display: flex;
    align-items: stretch;
  }
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons .wp-block-theme-blocks-infographic-button > .block-button__link {
    width: 100%;
  }
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons .block-overlay {
    grid-column: 1/-1;
  }
  .wp-block-theme-blocks-infographic.has-mobile-two-column-buttons .block-overlay.on {
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-infographic {
    --block-margin-multiplier: .5;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-embed {
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-right) * -1);
    /*
    > .block-embed-components {
        --embed-width: calc(100vw);
        --embed-height: calc(var(--embed-width) * var(--aspect-ratio));
        position:relative;
        width:var(--embed-width);
        height: calc(var(--embed-height) * 2);
        overflow: hidden;
        // overflow-y: visible;
        > .viewport {
            position:absolute;
            top:50%;
            left:50%;
            transform: translate(-50%, -50%);
            display:block;
            // position:relative;
            width: calc(var(--embed-width) * 2);
            height: calc(var(--embed-height) * 2);
            translate: var(--viewport-translate, 0px 0px);
            transition: .5s ease-in-out;
        }
    }
    */
  }
  .theme-block.wp-block-theme-blocks-infographic .block-embed:after {
    content: " ";
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-embed-buttons {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    margin: 1rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.wp-block-theme-blocks-infographic-component {
  position: absolute;
  z-index: 1;
  display: block;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--width, 0);
  height: auto;
  translate: -50% -50%;
}
.wp-block-theme-blocks-infographic-component > .component {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 0 0 calc(var(--aspect-ratio, 1) * 100%);
}
.wp-block-theme-blocks-infographic-component > .component.is-overlay-trigger, .wp-block-theme-blocks-infographic-component > .component.has-link-target {
  cursor: pointer;
}
.wp-block-theme-blocks-infographic-component > .component svg, .wp-block-theme-blocks-infographic-component > .component img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.wp-block-theme-blocks-infographic-component > .component img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-infographic-component > .component .onhover__scale {
  transform-origin: var(--transform-origin, 50% 50%);
  transition: 0.2s ease;
  scale: var(--hover-scale, 1);
}
.wp-block-theme-blocks-infographic-component > .component.hover, .wp-block-theme-blocks-infographic-component > .component:hover {
  --hover-scale: 1.05;
}
body.theme .wp-block-theme-blocks-infographic-component.has-circle {
  --theme-circle-opacity:0;
}
.wp-block-theme-blocks-infographic-component.has-circle .hover, .wp-block-theme-blocks-infographic-component.has-circle:hover {
  --theme-block-border-rotate: rotate(15deg);
  --theme-circle-opacity:1 !important;
}
.wp-block-theme-blocks-infographic-component.has-circle > .component:before,
.wp-block-theme-blocks-infographic-component.has-circle > .component img.pixel {
  left: calc(var(--circle-x, 5%) - var(--circle-width, 90%) / 2);
  top: calc(var(--circle-y, 5%) - var(--circle-width, 90%) / 2);
  width: var(--circle-width, 90%);
  height: auto;
  box-sizing: border-box;
  border: 5px dashed #b1040e;
  border-radius: 50%;
  transform: var(--theme-block-border-rotate, rotate(0deg));
  transition: 0.5s ease-in-out;
  opacity: var(--theme-circle-opacity, 1);
}

.wp-block-theme-blocks-infographic-button {
  --background-color: #b1040e;
  z-index: 1;
  display: block;
  font-size: calc(var(--font-size, 1) * 1.3em);
  text-align: center;
}
.wp-block-theme-blocks-infographic-button .block-button__link:not(.is-overlay-trigger) {
  --icon-size: 12px;
}
.wp-block-theme-blocks-infographic-button > .block-button__link {
  display: inline;
  padding: 0.25em 0.75em;
  background: var(--background-color);
  color: #ffffff;
  line-height: 1.3;
  text-decoration: none;
  font-family: "Roboto Slab", var(--theme-font-sans-serif);
  font-weight: 700;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  white-space: nowrap;
  /*&:after {
      content:' ';
      display:inline-block;
      margin:0 0 0 .25em;
      width:var(--icon-size);
      height:var(--icon-size);
      translate:0 .08em;
      background:url(images/arrow-top-right.svg) no-repeat 50% 50%;
      background-size: contain;
      transition: $hover-transition;
  }*/
}
.wp-block-theme-blocks-infographic-button > .block-button__link .icon.arrow {
  top: -0.08em;
  margin: 0 0 0 0.25em;
}
.wp-block-theme-blocks-infographic-button > .block-button__link .icon.arrow.up-right-popup {
  margin-left: 0.5em;
}
.wp-block-theme-blocks-infographic-button .block-content-hover {
  padding: 0 0.5em;
  font-size: 0.85rem;
  transition: 0.2s ease;
}
.wp-block-theme-blocks-infographic-button.is-selected, .wp-block-theme-blocks-infographic-button.has-child-selected, .wp-block-theme-blocks-infographic-button.hover, .wp-block-theme-blocks-infographic-button:hover {
  --block-content-max-height: fit-content;
  --block-content-padding: .5em;
  --block-content-opacity: 1;
  --background-color: #8c1515;
  --icon-x: 2px;
  --icon-y: -2px;
  --icon-box-scale:1.1;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-infographic-button {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    translate: -50% -50%;
  }
  .wp-block-theme-blocks-infographic-button .block-content-hover {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100%;
    min-width: 300px;
    translate: -50% 0;
    overflow: hidden;
    max-height: var(--block-content-max-height, 0);
    opacity: var(--block-content-opacity, 0);
    padding-top: var(--block-content-padding);
    padding-bottom: var(--block-content-padding);
    background: var(--background-color);
    color: #ffffff;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-infographic-button {
    --icon-size:12px;
    position: relative;
    top: auto;
    left: auto;
    translate: none;
    font-size: calc(var(--font-size, 1) * 1em);
    margin: 1rem 0 0;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link {
    display: block;
    text-align: left;
    white-space: normal;
    padding-right: 2em;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link br {
    display: none;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link .icon.arrow {
    position: absolute;
    right: 0.5em;
    top: 0.65em;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link.is-overlay-trigger {
    --icon-x:0px;
    --icon-y:0px;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link.is-overlay-trigger .icon.arrow i {
    margin-top: -1px;
    margin-bottom: 0;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link.is-overlay-trigger .icon.arrow.up-right i {
    rotate: 90deg;
  }
  .wp-block-theme-blocks-infographic-button .block-button__link.is-overlay-trigger .icon.arrow:before {
    display: none;
  }
  .wp-block-theme-blocks-infographic-button .block-content-hover {
    position: relative;
    padding: 0;
    margin: 0.5em 0 0em;
    text-align: left;
    line-height: 1.2;
  }
  .wp-block-theme-blocks-infographic-button.has-green-active .block-button__link.is-overlay-trigger {
    position: relative;
  }
  .wp-block-theme-blocks-infographic-button.has-green-active .block-button__link.is-overlay-trigger:after {
    content: " ";
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: var(--button-trigger-height, 0px);
    background: #175e54;
    transition: 0.5s;
  }
  .wp-block-theme-blocks-infographic-button.on .block-button__link.is-overlay-trigger {
    --background-color: #8c1515;
  }
  .wp-block-theme-blocks-infographic-button.on .block-button__link.is-overlay-trigger .icon.arrow i {
    rotate: -90deg;
  }
  .wp-block-theme-blocks-infographic-button.on.has-green-active .block-button__link.is-overlay-trigger {
    --background-color: #175e54;
    --button-trigger-height: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-infographic-heading {
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: var(--width, auto);
    translate: -50% -50%;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-infographic-heading {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    translate: none;
  }
  .block-embed + .wp-block-theme-blocks-infographic-heading {
    margin-top: 1rem;
  }
  .wp-block-theme-blocks-infographic-heading.is-style-not-responsive {
    grid-area: embed;
    position: absolute;
    left: var(--x, 50%);
    top: var(--y, 50%);
    width: var(--width, auto);
    translate: -50% -50%;
  }
  h2.wp-block-theme-blocks-infographic-heading.is-style-not-responsive {
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-infographic.overlay-on {
    --overlay-mask-display:block;
    --overlay-mask-size: 100%;
    --overlay-mask-background: rgba(255, 255, 255, 0.9);
  }
  .wp-block-theme-blocks-infographic > .block-overlay-mask {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: var(--overlay-mask-size, 0%);
    height: var(--overlay-mask-size, 0%);
    background: var(--overlay-mask-background, rgba(255, 255, 255, 0));
    transition: background-color 1s;
  }
}

.wp-block-theme-blocks-infographic .block-overlay {
  position: relative;
  z-index: 1000;
}
.wp-block-theme-blocks-infographic .block-overlay .icon.close {
  --size: 30px;
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background-color: #b1040e;
  border: 0;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-infographic .block-overlay .icon.close {
    right: auto;
    left: 0rem;
    top: 1rem;
  }
}
.wp-block-theme-blocks-infographic .block-overlay .icon.close:before, .wp-block-theme-blocks-infographic .block-overlay .icon.close:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  margin: -1px 0 0;
  background: #ffffff;
}
.wp-block-theme-blocks-infographic .block-overlay .icon.close:before {
  rotate: 45deg;
}
.wp-block-theme-blocks-infographic .block-overlay .icon.close:after {
  rotate: -45deg;
}
.wp-block-theme-blocks-infographic .block-overlay .icon.close:hover {
  background-color: #8c1515;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-infographic .block-overlay {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 100%;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image {
    --block-infographic-overlay-image: url(images/popup-bean2.svg);
    --block-infographic-overlay-max-width: 1200px;
    --block-infographic-overlay-max-height: 90%;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image > .block-content {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-heading.has-left-icon.has-text-align-center:first-child {
    display: grid;
    grid-template-columns: 2fr auto auto 3fr;
    grid-template-areas: ". icon text .";
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-heading.has-left-icon.has-text-align-center:first-child:before {
    grid-area: icon;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-heading.has-left-icon.has-text-align-center:first-child .text {
    grid-area: text;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-columns.trash-stats-columns {
    margin-bottom: calc(var(--block-margin, 4rem) * 1);
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    box-sizing: border-box;
    min-height: 400px;
    max-width: var(--block-infographic-overlay-max-width, 1024px);
    max-height: var(--block-infographic-overlay-max-height, 80%);
    padding: 6rem 4rem;
    min-height: 400px;
    background: var(--block-infographic-overlay-image, url(images/popup.svg)) no-repeat 50% 50%;
    background-size: 100% 100%;
    color: #ffffff;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) .icon.close {
    border: 1px solid #ffffff;
    background-color: #1F5E54;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) .icon.close:hover {
    background-color: #8c1515;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact).with-image {
    height: 100%;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact).with-image .block-content {
    position: relative;
    height: 100%;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact).with-image .block-content figure {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact).with-image .block-content figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
@media screen and (min-width: 768px) and (max-height: 800px) {
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    padding-top: 3rem;
    max-height: 90%;
  }
}
@media screen and (min-width: 768px) and (max-height: 700px) {
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    max-height: 95%;
    min-height: 250px;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) .wp-block-theme-blocks-posts-container:not(.columns-1) .hentry.card:not(.is-style-horizontal) .thumbnail {
    padding-bottom: 0%;
    aspect-ratio: 16/9;
    max-width: 200px;
  }
}
@media screen and (min-width: 768px) and (max-height: 550px) {
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) .wp-block-theme-blocks-posts-container:not(.columns-1) .hentry.card:not(.is-style-horizontal) .thumbnail {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    padding-left: var(--gutter-left);
    padding-right: var(--gutter-right);
    background-size: 1024px 100%;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-infographic .block-overlay.is-style-compact {
    padding: calc(var(--block-margin, 4rem) * 0.5);
    background: #ffffff;
    color: #2e2d29;
    width: 100%;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-infographic .block-overlay .block-content {
    margin: 1rem 0;
  }
  .wp-block-theme-blocks-infographic .block-overlay .icon.close {
    display: none;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image {
    background: #175e54;
    color: #ffffff;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image > .block-content {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 450px) {
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image > .block-content {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-heading.has-left-icon {
    display: none;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-columns.trash-stats-columns {
    margin-top: 0;
    margin-bottom: 0;
    row-gap: 0;
  }
  .wp-block-theme-blocks-infographic .block-overlay.is-style-default.has-bean-image .wp-block-columns.trash-stats-columns > .wp-block-column + .wp-block-column {
    margin-top: 1rem;
    border-top: 2px solid #59b3a9;
    padding-top: 1rem;
  }
}

.theme-block.wp-block-theme-blocks-infographic .block-overlay {
  /*.block-overlay-content {
      display:none;
      &.on {
          display:block;
      }
  }*/
}
@media screen and (min-width: 768px) {
  .theme-block.wp-block-theme-blocks-infographic .block-overlay {
    display: none;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay.on {
    display: block;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay:not(.is-style-compact) {
    position: fixed;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay.is-style-compact {
    position: absolute;
  }
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-infographic .block-overlay {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay.on {
    max-height: 100vh;
    overflow: auto;
    padding-bottom: 0;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay .wp-block-theme-blocks-posts-container > .title {
    display: none;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay .wp-block-theme-blocks-posts-container > .posts {
    margin-top: 0;
    grid-template-columns: 1fr;
  }
  .theme-block.wp-block-theme-blocks-infographic .block-overlay .wp-block-theme-blocks-posts-container > .posts .appear-init {
    opacity: 1 !important;
    transform: translate(0px, 0px) !important;
  }
}

.wp-block-theme-blocks-calendar {
  --fc-small-font-size: clamp(0.722rem, 0.569vw + 0.599rem, 1rem);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "sources" "months" "embed";
}
.wp-block-theme-blocks-calendar .block-months {
  grid-area: months;
}
.wp-block-theme-blocks-calendar .block-sources {
  grid-area: sources;
}
.wp-block-theme-blocks-calendar .block-filter {
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}
.wp-block-theme-blocks-calendar .block-filter li {
  display: inline-flex;
  gap: 0.35em;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0.5em 0.7em;
  transition: 0.2s ease;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}
.wp-block-theme-blocks-calendar .block-filter li:before {
  display: none;
}
.wp-block-theme-blocks-calendar .block-filter li:hover {
  background-color: #f4f4f4;
}
.wp-block-theme-blocks-calendar .block-filter li.on {
  background-color: var(--color, #8c1515);
  color: white;
}
.wp-block-theme-blocks-calendar.hide-switcher .block-sources {
  display: none;
}
.wp-block-theme-blocks-calendar.hide-switcher .query-posts {
  padding-top: 0;
}
.wp-block-theme-blocks-calendar:not(.has-sources-filter) .block-sources {
  display: none;
}
.wp-block-theme-blocks-calendar:not(.has-months-filter) .block-months {
  display: none;
}
.wp-block-theme-blocks-calendar.loading .block-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--block-margin, 4rem) * 1) 0;
}
.wp-block-theme-blocks-calendar.loading .block-embed:before {
  content: "Loading events...";
}
.wp-block-theme-blocks-calendar.loading .block-embed:after {
  --size: 30px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 1rem 0 0 calc(var(--size) / -2);
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: var(--size);
  height: var(--size);
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-theme-blocks-calendar.loaded-partial .block-embed .query-posts:after {
  --size: 30px;
  align-self: center;
  margin: 0 auto;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: var(--size);
  height: var(--size);
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-theme-blocks-calendar .block-embed {
  grid-area: embed;
  position: relative;
  transition: filter 0.4s ease-in-out;
}
.wp-block-theme-blocks-calendar .block-embed .fc-col-header-cell-cushion {
  text-decoration: none;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day {
  height: 120px;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day-number {
  margin: 5px;
  text-decoration: none;
  background: #E6A926;
  color: #2e2d29;
  font-size: clamp(0.667rem, 0.341vw + 0.593rem, 0.833rem);
  font-weight: 700;
  width: 4ex;
  text-align: center;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "dot title" ". time";
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-daygrid-event-dot {
  grid-area: dot;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-event-time {
  grid-area: time;
  font-style: italic;
  font-size: 0.8em;
  line-height: 1;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-event-title {
  grid-area: title;
}
@media screen and (max-width: 400px) {
  .wp-block-theme-blocks-calendar .block-embed {
    --fc-daygrid-event-dot-width: 6px;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day-number {
    margin: 0;
    background: none;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-daygrid-event-dot {
    margin: 0 2px 0 0;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-event-title {
    font-weight: 500;
  }
}

.wp-block-theme-blocks-profile {
  --block-profile-width: 70px;
  --block-profile-gap: 2rem;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 calc(var(--block-margin, 4rem) * 1);
  display: grid;
  grid-template-columns: var(--block-profile-width) 1fr auto;
  -moz-column-gap: var(--block-profile-gap);
       column-gap: var(--block-profile-gap);
  grid-template-areas: "photo position toggle" "photo name toggle" "photo dept toggle" "photo content toggle";
  grid-template-rows: auto auto auto 1fr;
  border-top: 2px solid #d4d1d1;
  padding: 1rem 0 0;
}
.wp-block-theme-blocks-profile:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-profile:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-profile + .wp-block-theme-blocks-profile {
  margin-top: calc(var(--block-margin, 4rem) * -0.5);
}
.wp-block-theme-blocks-profile .thumbnail {
  grid-area: photo;
  display: block;
  position: relative;
  width: var(--block-profile-width);
  height: var(--block-profile-width);
  background: #8c1515 url(images/logo-mark.png) 50% 50% no-repeat;
  background-size: auto 50%;
  border-radius: 50%;
}
.wp-block-theme-blocks-profile .thumbnail img {
  display: block;
  width: var(--block-profile-width);
  height: var(--block-profile-width);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  border-radius: 50%;
  background: #8c1515;
}
.wp-block-theme-blocks-profile .position {
  grid-area: position;
  margin: 0;
  font-family: var(--theme-font-sans-serif);
  font-size: 0.8888888889rem;
  font-weight: 700;
  text-transform: uppercase;
}
.wp-block-theme-blocks-profile .name {
  grid-area: name;
  margin-bottom: 0;
  font-size: clamp(1rem, 0.455vw + 0.901rem, 1.222rem);
  font-weight: 400;
}
.wp-block-theme-blocks-profile .department {
  display: block;
  grid-area: dept;
  margin: 0 0 0;
  font-size: 0.8888888889rem;
  font-weight: 400;
  font-style: italic;
  transition: 0.4s ease-in-out;
}
.wp-block-theme-blocks-profile .content {
  grid-area: content;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: 0.4s ease-in-out;
}
.wp-block-theme-blocks-profile .icon {
  grid-area: toggle;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  background: var(--icon-background-color, #8c1515);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.wp-block-theme-blocks-profile .icon:hover {
  --icon-background-color: #b1040e;
}
.wp-block-theme-blocks-profile.on {
  --icon-background-color: #b1040e;
}
.wp-block-theme-blocks-profile.on .content {
  max-height: 50vh;
  overflow: scroll;
  padding-top: 1rem;
}
.wp-block-theme-blocks-profile.on .icon {
  transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-profile {
    grid-template-areas: "photo . ." "photo position toggle" "photo name toggle" "photo dept toggle" "photo . ." "content content content";
    grid-template-rows: 1fr auto auto auto 1fr auto;
  }
}

.wp-block-theme-blocks-promotion {
  --block-extra-padding-bottom: 0px;
  position: relative;
  padding: calc(var(--block-margin, 4rem) * 1.5) calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 1.5 + var(--block-extra-padding-bottom));
  margin: calc(var(--block-margin, 4rem) * 2) auto calc(var(--block-margin, 4rem) * 2) auto;
  max-width: 1000px;
  box-sizing: border-box;
  background: #f4f4f4;
  /*
      &.has-bottom-waves {
          --block-extra-padding-bottom: calc(var(--block-margin, 4rem) * 1);
          .block-waves {
              content:' ';
              display:block;
              position:absolute;
              bottom:0;
              left:0;
              width:100%;
              height:block-margin(4);
              background: no-repeat 50% 100%;
              background-size: cover;
              background-image: var(--background-image, none);
          }
          &.has-dark-bottom-waves {
              --background-image:url(images/banner.png);
          }
          &.has-light-bottom-waves {
              --background-image:url(images/banner.png);
          }
      }
  */
}
.wp-block-theme-blocks-promotion figcaption.block-caption {
  grid-area: caption;
  margin: 0.5rem calc(var(---shadow-width, 2rem) * 2) -1rem 1rem;
  font-size: 0.8em;
  line-height: 1;
}
.wp-block-theme-blocks-promotion > .block-content {
  grid-area: content;
  position: relative;
  z-index: 5;
}
.wp-block-theme-blocks-promotion:not(.is-style-left-image, .is-style-left) > .block-content p {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
@media screen and (min-width: 600px) {
  .wp-block-theme-blocks-promotion:not(.is-style-left-image, .is-style-left) > .block-content p {
    font-size: 1.22em;
  }
}
.wp-block-theme-blocks-promotion > .block-image {
  grid-area: image;
  position: relative;
  z-index: 1;
}
.wp-block-theme-blocks-promotion > .block-background-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--image-size, cover);
     object-fit: var(--image-size, cover);
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-promotion:not(.is-style-left-image) {
  text-align: center;
}
.wp-block-theme-blocks-promotion:not(.is-style-left-image) > .block-content {
  max-width: 775px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-promotion:not(.is-style-left-image) .wp-block-buttons {
  justify-content: center;
}
.wp-block-theme-blocks-promotion.is-style-left {
  --shadow-width: 2rem;
  --offset-x: 4;
  --offset-y: 3;
  text-align: left;
}
.wp-block-theme-blocks-promotion.is-style-left .wp-block-buttons {
  justify-content: unset;
}
.wp-block-theme-blocks-promotion.is-style-left:before {
  content: " ";
  display: block;
  position: absolute;
  top: calc(var(--shadow-width) * var(--offset-y));
  left: calc(var(--shadow-width) * -1);
  width: calc(100% - var(--shadow-width) * var(--offset-x) + var(--shadow-width));
  height: calc(100% - var(--shadow-width) * var(--offset-y) + var(--shadow-width));
  background: url(images/dots.png) 0% 100% repeat;
  clip-path: polygon(0% 0%, var(--shadow-width) 0%, var(--shadow-width) calc(100% - var(--shadow-width)), 100% calc(100% - var(--shadow-width)), 100% 100%, 0% 100%);
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-promotion {
    padding: calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 0.5) calc(var(--block-margin, 4rem) * 1 + var(--block-extra-padding-bottom));
  }
}
.wp-block-theme-blocks-promotion.is-style-data-hub {
  max-width: none;
  padding: calc(var(--block-margin, 4rem) * 2) calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-promotion.is-style-data-hub:before {
  content: " ";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url(images/banner.png) no-repeat 100% 100%;
  background-size: auto 100%;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-promotion.is-style-data-hub:before {
    background-position: 20% 100%;
  }
}
.wp-block-theme-blocks-promotion.is-style-data-hub > .block-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 16rem;
  padding: calc(var(--block-margin, 4rem) * 1) 0;
  color: white;
  font-size: inherit;
}
.wp-block-theme-blocks-promotion.is-style-data-hub > .block-content:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  aspect-ratio: 1;
  width: auto;
  height: 100%;
  translate: -50% 0%;
  background: #8c1515;
  border-radius: 50%;
  transform-origin: 50% 50%;
  scale: 1;
  transition: 0.2s ease;
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-promotion.is-style-data-hub > .block-content {
    min-height: 10rem;
  }
}
.wp-block-theme-blocks-promotion.is-style-data-hub > .block-content.clickable:hover:before {
  scale: 1.025;
}
.wp-block-theme-blocks-promotion.is-style-data-hub .wp-block-button.has-circle-arrow-style .icon.arrow i {
  background-color: #ffffff;
  color: #8c1515;
}
.wp-block-theme-blocks-promotion.is-style-left-image {
  --shadow-width: 2rem;
  --offset-x: 4;
  --offset-y: 3;
  padding: calc(var(--block-margin, 4rem) * 0.5) calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 0.5 + var(--block-extra-padding-bottom)) 0;
  margin-bottom: calc(var(--shadow-width) + calc(var(--block-margin, 4rem) * 0.25));
  display: grid;
  grid-template-columns: 3fr 4fr;
  grid-template-areas: "image content" "caption .";
  align-items: center;
}
.wp-block-theme-blocks-promotion.is-style-left-image:before {
  content: " ";
  display: block;
  position: absolute;
  top: calc(var(--shadow-width) * var(--offset-y));
  left: calc(var(--shadow-width) * -1);
  width: calc(100% - var(--shadow-width) * var(--offset-x) + var(--shadow-width));
  height: calc(100% - var(--shadow-width) * var(--offset-y) + var(--shadow-width));
  background: url(images/dots.png) 0% 100% repeat;
  clip-path: polygon(0% 0%, var(--shadow-width) 0%, var(--shadow-width) calc(100% - var(--shadow-width)), 100% calc(100% - var(--shadow-width)), 100% 100%, 0% 100%);
}
.wp-block-theme-blocks-promotion.is-style-left-image > .block-content {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  padding-top: calc(var(--block-margin, 4rem) * 1);
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-promotion.is-style-left-image > .block-image img, .wp-block-theme-blocks-promotion.is-style-left-image > .block-image .img {
  position: relative;
  translate: calc(var(--shadow-width, 2rem) * -2) 0px;
}
.wp-block-theme-blocks-promotion.is-style-left-image > .block-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-promotion.is-style-left-image.no-image {
  display: block;
  padding-left: calc(var(--block-margin, 4rem) * 1);
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-promotion.is-style-left-image {
    --shadow-width: 1.5rem;
    --offset-x: 2;
    --offset-y: 4;
    display: grid;
    grid-template-columns: auto;
    grid-template-areas: "image" "content";
    grid-template-rows: auto 1fr;
    padding-left: calc(var(--block-margin, 4rem) * 1);
    margin-top: calc(var(--block-margin, 4rem) * 3.5);
  }
  .wp-block-theme-blocks-promotion.is-style-left-image > .block-image {
    margin-top: calc(var(--block-margin, 4rem) * -2.5);
  }
  .wp-block-theme-blocks-promotion.is-style-left-image > .block-image img {
    translate: none;
  }
  .wp-block-theme-blocks-promotion.is-style-left-image > .block-content {
    padding-top: calc(var(--block-margin, 4rem) * 0.5);
    text-align: center;
  }
  .wp-block-theme-blocks-promotion.is-style-left-image > .block-content .wp-block-buttons {
    justify-content: center;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-promotion.is-style-left-image {
    padding-left: calc(var(--block-margin, 4rem) * 0.5);
    padding-right: calc(var(--block-margin, 4rem) * 0.5);
  }
  .wp-block-theme-blocks-promotion.is-style-left-image > .block-content {
    padding-bottom: calc(var(--block-margin, 4rem) * 0.5);
  }
}

.wp-block-theme-blocks-posts {
  position: relative;
}
.wp-block-theme-blocks-posts .query-posts {
  width: 100%;
  padding-top: 0;
}
.wp-block-theme-blocks-posts .block-filters {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-posts:not(.has-filters) .block-filters {
  display: none;
}

.wp-block-theme-blocks-posts-filters + .theme-block.wp-block-theme-blocks-posts {
  margin-top: 0;
}

.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: var(--theme-font-sans-serif);
  font-size: clamp(0.889rem, 0.228vw + 0.84rem, 1rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0.5rem 0 0 0;
}
.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 {
  position: absolute;
  grid-area: slides;
  box-sizing: border-box;
  height: 100%;
  z-index: 1;
  padding: calc(var(--block-margin, 4rem) * 1);
  color: #8c1515;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wp-block-theme-blocks-carousel .block-nav .icon {
  font-size: 40px;
  transition: transform 0.2s ease;
  transform: translate(0, 0);
}
.wp-block-theme-blocks-carousel .block-nav.prev {
  left: 0;
}
.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 .icon {
  transform: translate(3px, 0);
}
.wp-block-theme-blocks-carousel .block-slides {
  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: blue;
  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, 4rem) * 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;
}
.wp-block-theme-blocks-carousel .block-dots {
  --slick-dot-active-color: #b1040e;
  grid-area: dots;
  position: relative;
  display: flex;
  align-self: end;
  justify-content: center;
  z-index: 10;
  width: 100%;
  margin: calc(var(--block-margin, 4rem) * 1) auto 0;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-slides {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav {
  grid-area: dots;
  height: auto;
  width: auto;
  padding: 0 0.5em;
  bottom: 0;
  top: 50%;
  translate: 0 -50%;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav.prev {
  left: auto;
  right: 100%;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav.next {
  right: auto;
  left: 100%;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  width: 2em;
  height: 2em;
  background: #8c1515;
  color: #ffffff;
  border-radius: 50%;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots {
  margin: 0;
  padding: 0 1em;
  width: auto;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots .slick-dots {
  width: 100%;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots .slick-dots li {
  flex-grow: 1;
}
.wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots .slick-dots li button {
  width: 100%;
  border-radius: 1em;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav.prev {
    left: 0;
    right: auto;
  }
  .wp-block-theme-blocks-carousel.is-style-wide-dots .block-nav.next {
    right: 0;
    left: auto;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots {
    margin-left: 3rem;
    margin-right: 3rem;
    width: auto;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots {
    padding: 0;
  }
  .wp-block-theme-blocks-carousel.is-style-wide-dots .block-dots .slick-dots {
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
.is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots {
  margin-left: calc(var(--gutter-left) * -1) !important;
  margin-right: calc(var(--gutter-left) * -1) !important;
}
.is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots > .layout {
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: "slides slides slides" ". captions ." ". dots .";
}
.is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots .slide {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-left);
}
@media screen and (min-width: 768px) {
  .is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots .slide .wp-block-media-text:not(.has-media-on-the-right) {
    margin-left: calc(var(--gutter-left) * -1);
  }
  .is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots .slide .wp-block-media-text.has-media-on-the-right {
    margin-right: calc(var(--gutter-right) * -1);
  }
}
@media screen and (max-width: 767px) {
  .is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots .slide .wp-block-media-text:not(.has-media-on-the-right) .wp-block-media-text__media {
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: auto;
  }
  .is-style-full-width .wp-block-theme-blocks-carousel.is-style-wide-dots .slide .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
    margin-left: auto;
    margin-right: calc(var(--gutter-right) * -1);
  }
}
@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;
  }
}

.wp-block-theme-blocks-promotion-stats .block-statistic {
  position: relative;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #8c1515;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  aspect-ratio: 1;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-optical-sizing: none;
}
.wp-block-theme-blocks-promotion-stats .block-statistic .text {
  display: block;
  padding: 0 1rem;
  font-size: clamp(1rem, 1.138vw + 0.753rem, 1.556rem);
  font-weight: 700;
  line-height: 1;
}
.wp-block-theme-blocks-promotion-stats .block-statistic strong {
  font-size: 3em;
  display: block;
  width: 100%;
  font-weight: 900;
}
.wp-block-theme-blocks-promotion-stats .block-statistic strong em {
  font-size: 0.7em;
  font-style: inherit;
}
.wp-block-theme-blocks-promotion-stats .block-statistic .cta {
  margin-top: calc(var(--block-margin, 4rem) * 0.75);
  margin-bottom: calc(var(--block-margin, 4rem) * -0.5);
  font-weight: 600;
}
.wp-block-theme-blocks-promotion-stats .block-statistic .cta .icon {
  margin-left: 0.5em;
}

.theme-block.wp-block-theme-blocks-promotion-stats {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  padding: calc(var(--block-margin, 4rem) * 2) var(--gutter-right) calc(var(--block-margin, 4rem) * 2) var(--gutter-left);
  background: rgba(140, 21, 21, 0.5);
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media .image, .theme-block.wp-block-theme-blocks-promotion-stats .block-media img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media .image {
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media .image.on {
  opacity: 1;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media img {
  -o-object-fit: var(--image-size, cover);
     object-fit: var(--image-size, cover);
  -o-object-position: var(--focal-point, 50% 0%);
     object-position: var(--focal-point, 50% 0%);
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-media:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 1200px;
  background: no-repeat 50% 100%;
  background-size: cover;
  background-image: url(images/banner.png);
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-statistic {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: calc(var(--block-margin, 4rem) * 1) minmax(0, 1fr) calc(var(--block-margin, 4rem) * 1);
  grid-template-rows: 1fr auto auto 1fr;
  grid-template-areas: ". . ." "prev slides next" "prev cta next" ". . .";
  justify-content: center;
  align-items: center;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-slides {
  grid-area: slides;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-slides > .slide {
  display: inline-block;
  white-space: normal;
  position: relative;
  width: 100%;
}
.theme-block.wp-block-theme-blocks-promotion-stats .cta {
  grid-area: cta;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-nav {
  align-self: center;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #8c1515;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-nav.prev {
  grid-area: prev;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-nav.prev:hover {
  translate: -3px 0;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-nav.next {
  grid-area: next;
}
.theme-block.wp-block-theme-blocks-promotion-stats .block-nav.next:hover {
  translate: 3px 0;
}

.wp-block-theme-blocks-posts-filters {
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 calc(var(--block-margin, 4rem) * 0.25) 0;
}
.wp-block-theme-blocks-posts-filters > .block-filters {
  display: flex;
  flex-wrap: wrap;
  gap: calc(var(--block-margin, 4rem) * 0.5);
  align-items: end;
  justify-content: center;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter {
  margin: 0;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: [image-start] 1fr 2rem [image-end] auto;
  grid-template-areas: "img" "btn" "btn";
  border: 0;
  cursor: pointer;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-image {
  display: block;
  width: 100%;
  min-width: 180px;
  grid-column: 1/-1;
  grid-row: image-start/image-end;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-image .img,
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-image img {
  display: block;
  width: 100%;
  margin: 0 auto;
  transform-origin: 50% 100%;
  transition: 0.4s ease-in-out;
  aspect-ratio: 1/1;
  max-width: var(--block-max-width, 10rem);
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-image img {
  -o-object-position: 50% 100%;
     object-position: 50% 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-image span.img {
  background: #175e54;
  border-radius: 50%;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-label {
  position: relative;
  z-index: 1;
  grid-area: btn;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter .block-label:after {
  display: inline-block;
  content: " ";
  width: var(--filter-button-font-size, 1em);
  height: var(--filter-button-font-size, 1em);
  background: url(images/icon-filter-white.svg) no-repeat 50% 50%;
  background-size: contain;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter.on > .block-label {
  background: #8c1515;
  border-color: #8c1515;
}
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter.off .block-image .img,
.wp-block-theme-blocks-posts-filters .wp-block-theme-blocks-posts-filter.off .block-image img {
  filter: grayscale(1);
  opacity: 0.7;
  scale: 0.9;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-posts-filters {
    --block-max-width: 7rem;
  }
  .wp-block-theme-blocks-posts-filters > .block-filters {
    gap: calc(var(--block-margin, 4rem) * 0.25);
  }
  .wp-block-theme-blocks-posts-filters .wp-block-button .block-label {
    padding: 0.25em 0.5em;
  }
}

.wp-block-theme-blocks-scrapbook {
  --block-padding: calc(var(--block-margin, 4rem) * 1.5);
  --block-gap: 1rem;
  --media-width: minmax(0, 1fr);
  --media-height: 300px;
  --pager-margin: calc(var(--block-margin, 4rem) * 1);
  background: rgba(221, 209, 182, 0.4);
}
.wp-block-theme-blocks-scrapbook .block-label {
  font-weight: 600;
}
.page-blocks > .wp-block-theme-blocks-scrapbook:last-child {
  margin-bottom: calc(var(--page-blocks-padding-bottom) * -1);
}

.theme-block.wp-block-theme-blocks-scrapbook {
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
  display: grid;
  grid-template-columns: var(--gutter-left) auto auto 1fr auto auto var(--gutter-right);
  grid-template-rows: 1fr auto;
  grid-template-areas: "slides slides slides slides slides slides slides" ". prev start dots end next .";
}
.theme-block.wp-block-theme-blocks-scrapbook .block-slides {
  grid-area: slides;
  position: relative;
  z-index: 10;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-label {
  position: relative;
  z-index: 1;
  align-self: center;
  margin-left: var(--block-gap);
  margin-right: var(--block-gap);
}
.theme-block.wp-block-theme-blocks-scrapbook .block-label.start {
  grid-area: start;
  text-align: right;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-label.end {
  grid-area: end;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-nav {
  align-self: center;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-nav.prev {
  grid-area: prev;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-nav.prev:not(.slick-disabled):hover {
  translate: -3px 0px;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-nav.next {
  grid-area: next;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-nav.next:not(.slick-disabled):hover {
  translate: 3px 0px;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-media {
  grid-area: slides;
  align-self: stretch;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--gutter-left) 1fr var(--media-width) var(--gutter-right);
  grid-template-areas: ". . img img";
}
.theme-block.wp-block-theme-blocks-scrapbook .block-media .image {
  grid-area: img;
  position: relative;
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-media .image.on {
  opacity: 1;
  z-index: 1;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-media .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--media-size, contain);
     object-fit: var(--media-size, contain);
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-dots {
  position: relative;
  z-index: 1;
  grid-area: dots;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-dots ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  gap: var(--block-gap);
  flex-wrap: nowrap;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-dots ul li {
  flex-grow: 1;
  min-width: 1rem;
  width: 100%;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-dots ul li button {
  width: 100%;
  height: 0.5rem;
  background: var(--slide-dot-active-color, rgba(209, 194, 152, 0.5));
  border-radius: 2rem;
}
.theme-block.wp-block-theme-blocks-scrapbook .block-dots ul li.slick-active {
  --slide-dot-active-color: #8c1515;
}
@media screen and (max-width: 1024px) {
  .theme-block.wp-block-theme-blocks-scrapbook {
    --media-width: .75fr;
  }
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-scrapbook {
    --block-gap: .5rem;
    --media-height: 75vw;
    --pager-margin:0px;
    padding-bottom: 0;
    grid-template-columns: var(--gutter-left) auto 1fr auto 1fr auto var(--gutter-right);
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-media {
    position: relative;
    display: block;
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-media .image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--media-height);
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-dots {
    --slide-dot-active-color: #ffffff;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-dots ul {
    justify-content: center;
  }
  .theme-block.wp-block-theme-blocks-scrapbook .block-dots ul li {
    flex-grow: 0;
    min-width: 0px;
    max-width: none;
    width: 0.5rem;
  }
  .theme-block.wp-block-theme-blocks-scrapbook:after {
    content: " ";
    display: block;
    background: #d1c298;
    position: relative;
    grid-column: 1/-1;
    grid-row: 2/-1;
  }
}
@media screen and (max-width: 450px) {
  .theme-block.wp-block-theme-blocks-scrapbook .block-label {
    display: none;
  }
}

.wp-block-theme-blocks-scrapbook-slide {
  margin: 0;
}
.wp-block-theme-blocks-scrapbook-slide > .layout {
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--media-width) var(--gutter-right);
  grid-template-rows: calc(var(--block-padding) / 2) calc(var(--block-padding) / 2) 1fr auto auto 1fr var(--pager-margin);
  grid-template-areas: ". . . ." ". . image image" ". . image image" ". title image image" ". content image image" ". . image image" ". . image image";
}
.wp-block-theme-blocks-scrapbook-slide .block-title {
  grid-area: title;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.wp-block-theme-blocks-scrapbook-slide .block-content {
  grid-area: content;
  padding: 0 calc(var(--block-margin, 4rem) * 0.5) 0 0;
}
.wp-block-theme-blocks-scrapbook-slide .block-image {
  grid-area: image;
  position: relative;
  align-self: stretch;
  aspect-ratio: 6/4;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-scrapbook-slide .block-image {
    align-self: flex-start;
  }
}
.wp-block-theme-blocks-scrapbook-slide .block-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: var(--media-size, contain);
     object-fit: var(--media-size, contain);
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-scrapbook-slide {
    padding-top: calc(var(--block-margin, 4rem) * 0.5);
  }
  .wp-block-theme-blocks-scrapbook-slide > .layout {
    grid-template-columns: var(--gutter-left) auto var(--gutter-right);
    grid-template-rows: auto auto var(--media-height);
    grid-template-areas: ". title ." ". content ." "image image image";
  }
  .wp-block-theme-blocks-scrapbook-slide .block-image {
    min-height: auto;
    aspect-ratio: unset;
    height: var(--media-height);
  }
}

.theme-block.wp-block-theme-blocks-scrapbook.is-style-small {
  opacity: 0.4;
  grid-template-areas: "slides slides slides slides slides slides slides" ". nav nav nav nav nav ." !important;
}
.theme-block.wp-block-theme-blocks-scrapbook.is-style-small:after {
  background: #ccc;
}
.theme-block.wp-block-theme-blocks-scrapbook.is-style-small .nav-wrapper {
  display: grid;
  grid-area: nav;
  grid-template-columns: auto auto 1fr auto auto;
  grid-template-areas: "prev start dots end next";
  grid-gap: 0.5rem;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .theme-block.wp-block-theme-blocks-scrapbook.is-style-small .nav-wrapper {
    grid-area: nav;
    width: 50%;
    position: relative;
  }
}
.theme-block.wp-block-theme-blocks-scrapbook.is-style-small .nav-wrapper .block-dots ul li button {
  background: var(--slide-dot-active-color, #ccc);
}
.theme-block.wp-block-theme-blocks-scrapbook.is-style-small .wp-block-theme-blocks-scrapbook-slide > .layout {
  grid-template-areas: ". . . ." ". . image ." ". . image ." ". title image ." ". content image ." ". . image ." ". . image .";
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-scrapbook.is-style-small .wp-block-theme-blocks-scrapbook-slide > .layout {
    grid-template-areas: ". title ." ". content ." ". image .";
  }
}

.wp-block-theme-blocks-stats {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  line-height: 1;
  font-weight: 700;
}
.wp-block-theme-blocks-stats:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-stats:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-stats .block-statistics {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 2em;
}
.wp-block-theme-blocks-stats .block-statistics > .wp-block-theme-blocks-stats-block {
  box-sizing: border-box;
  flex-grow: 1;
  flex-basis: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.wp-block-theme-blocks-stats .statistic {
  display: block;
  gap: 0.5em;
  font-size: 0.9em;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 600;
  letter-spacing: normal;
}
.wp-block-theme-blocks-stats .statistic .wp-block-theme-blocks-count-up {
  margin: 0;
}
.wp-block-theme-blocks-stats .statistic strong {
  font-weight: 700;
}
.wp-block-theme-blocks-stats .statistic .label {
  line-height: 1.2;
  /*
  &:before {
      content:' ';
      display:block;
      width: var(--block-hr-width, 0);;
      height: 5px;
      margin:0 0 .5em;
      background: currentColor;
      border-radius:1rem;
      transition: $appear-transition;
  }
      */
  display: inline-block;
}
.wp-block-theme-blocks-stats .statistic.appeared {
  --block-hr-width: 7rem;
}
.wp-block-theme-blocks-stats .statistic .align-left {
  text-align: left;
}
.wp-block-theme-blocks-stats .statistic .align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-stats .statistic .align-right {
  text-align: right;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-stats .block-statistics {
    -moz-column-gap: calc(var(--block-margin, 4rem) * 0.5);
         column-gap: calc(var(--block-margin, 4rem) * 0.5);
    row-gap: calc(var(--block-margin, 4rem) * 1);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-stats .block-statistics {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
  }
}

.wp-block-theme-blocks-stats-block {
  padding: var(--block-padding-top) 0 0;
  padding-bottom: var(--block-padding-bottom);
}
.wp-block-theme-blocks-stats-block .block-image {
  grid-area: image;
  position: relative;
  display: block;
}
.wp-block-theme-blocks-stats-block .block-image img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-stats-block .statistic {
  grid-area: stat;
}
.wp-block-theme-blocks-stats-block.is-style-default .block-image, .wp-block-theme-blocks-stats-block:not(.is-style-top-image, .is-style-left-image, .is-style-bg-image) .block-image {
  display: none;
}
.wp-block-theme-blocks-stats-block.is-style-default .wp-block-theme-blocks-count-up, .wp-block-theme-blocks-stats-block:not(.is-style-top-image, .is-style-left-image, .is-style-bg-image) .wp-block-theme-blocks-count-up {
  display: block;
  font-size: 54px;
  margin-bottom: 10px;
}
.wp-block-theme-blocks-stats-block.is-style-default .statistic .label, .wp-block-theme-blocks-stats-block:not(.is-style-top-image, .is-style-left-image, .is-style-bg-image) .statistic .label {
  font-family: "Source Sans 3", Helvetica, arial, sans-serif;
  font-size: 18px;
  line-height: initial;
}
.wp-block-theme-blocks-stats-block.is-style-default .statistic .label strong, .wp-block-theme-blocks-stats-block:not(.is-style-top-image, .is-style-left-image, .is-style-bg-image) .statistic .label strong {
  font-weight: 600;
}
.wp-block-theme-blocks-stats-block.is-style-top-image {
  display: grid;
  row-gap: 1rem;
  grid-template-columns: var(--block-image-width, 200px) 1fr;
  grid-template-areas: "image image" "stat stat";
}
.wp-block-theme-blocks-stats-block.is-style-top-image .block-image {
  max-width: 220px;
  margin: 0 auto;
}
.wp-block-theme-blocks-stats-block.is-style-top-image .statistic > div:first-of-type .wp-block-theme-blocks-count-up {
  font-size: clamp(1.778rem, 1.821vw + 1.383rem, 2.667rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: auto;
  width: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-top-image .statistic > div:first-of-type .label {
  font-size: 1rem;
  width: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-left-image {
  display: grid;
  grid-template-columns: var(--block-image-width, 200px) 1fr;
  grid-template-areas: "image stat";
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-basis: 45% !important;
}
.wp-block-theme-blocks-stats-block.is-style-left-image .statistic > div:first-of-type .wp-block-theme-blocks-count-up {
  width: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-left-image .statistic > div:first-of-type .label {
  width: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image {
  position: relative;
  width: auto;
  max-width: 220px;
  min-height: 205px;
  margin: 0 auto;
  min-height: 200px;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image .block-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image .block-image img {
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image .statistic {
  position: relative;
  box-sizing: border-box;
  font-family: "Source Serif 4", serif;
  font-weight: 700;
  line-height: 1;
  width: 100%;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image .statistic .wp-block-theme-blocks-count-up {
  font-size: clamp(1.444rem, 1.138vw + 1.198rem, 2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: auto;
}
.wp-block-theme-blocks-stats-block.is-style-bg-image .statistic .label {
  font-size: 0.9rem;
}

.odometer {
  --odometer-duration: 2s;
  display: inline-block;
  position: relative;
}
.odometer .digit {
  display: inline-block;
  position: relative;
  text-align: center;
}
.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: ease-in-out var(--odometer-duration);
}
.odometer .digit .digits i {
  position: relative;
  width: 1em;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  font-style: normal;
}
.odometer .digit.on .digits {
  transform: translateY(-100%);
}

.wp-block-theme-blocks-count-up {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 800;
  letter-spacing: normal;
  font-optical-sizing: none;
  font-size: var(--block-count-up-font-size, 3.33rem);
  line-height: 1.25;
}
@media screen and (max-width: 761px) {
  .wp-block-theme-blocks-count-up {
    font-size: 2.25rem;
  }
}
.wp-block-theme-blocks-count-up .block-prefix {
  line-height: 1;
}
.wp-block-theme-blocks-count-up .block-count {
  position: relative;
}
.wp-block-theme-blocks-count-up .block-suffix {
  font-size: 0.7em;
}

.wp-block-theme-blocks-topics {
  position: relative;
  margin: 0;
  padding: calc(var(--block-margin, 4rem) * 1) 0;
  background: #175e54;
  color: #ffffff;
}
.wp-block-theme-blocks-topics > .block-title {
  margin: 0 0 calc(var(--block-margin, 4rem) * 1);
  text-align: center;
  color: #a6dac8;
}

.wp-block-theme-blocks-topics-topic {
  position: relative;
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.75);
  padding: 0.7rem 0 0;
  border-top: 1px solid var(--highlight-color, #a6dac8);
  transition: 0.2s ease;
}
.wp-block-theme-blocks-topics-topic.on {
  --highlight-color: #f9a44a;
  --title-icon-rotate: 180deg;
}
.wp-block-theme-blocks-topics-topic .block-title {
  position: relative;
  padding: 0 40px 0 1.7rem;
  font-weight: 600;
  font-size: clamp(0.889rem, 0.683vw + 0.741rem, 1.222rem);
  letter-spacing: normal;
  cursor: pointer;
}
.wp-block-theme-blocks-topics-topic .block-title .icon {
  display: inline-block;
  position: absolute;
  top: 0.25rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--highlight-color, #a6dac8);
  color: #175e54;
  transition: 0.2s ease;
  rotate: var(--title-icon-rotate, 0deg);
}
.wp-block-theme-blocks-topics-topic .block-title .icon.fa-solid {
  font-size: 14px;
  text-align: center;
}
.wp-block-theme-blocks-topics-topic .block-title:after {
  display: block;
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  height: var(--topic-loading-height, 0);
  width: 30px;
  margin: 0 auto;
  background: url(images/loading-white.png) no-repeat center top;
  animation: var(--topic-loading-animation, none);
}
@media screen and (max-width: 600px) {
  .wp-block-theme-blocks-topics-topic {
    padding: 0.7rem 0;
    margin-bottom: 0;
  }
}
.wp-block-theme-blocks-topics-topic.loading {
  --topic-loading-animation: loading 1s steps(19) infinite;
  --topic-loading-height: 30px;
}

.theme-block.wp-block-theme-blocks-topics.is-style-full-width {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
}
.theme-block.wp-block-theme-blocks-topics .block-topics {
  --gap: 1rem;
  --row-gap: 0;
  gap: var(--gap);
  row-gap: var(--row-gap, var(--gap));
  -moz-column-gap: var(--column-gap, var(--gap));
       column-gap: var(--column-gap, var(--gap));
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 4), 1fr);
}
@media screen and (max-width: 1024px) {
  .theme-block.wp-block-theme-blocks-topics .block-topics {
    --column-count: 3;
  }
}
@media screen and (max-width: 767px) {
  .theme-block.wp-block-theme-blocks-topics .block-topics {
    --column-count: 2;
  }
}
@media screen and (max-width: 600px) {
  .theme-block.wp-block-theme-blocks-topics .block-topics {
    --column-count: 1;
  }
}
.theme-block.wp-block-theme-blocks-topics .block-page-content {
  position: relative;
  box-sizing: border-box;
  grid-column: 1/-1;
  grid-row-start: var(--current-row);
  grid-row-end: calc(var(--current-row) + 1);
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  margin-bottom: -1px;
  padding: 0 var(--gutter-right) 0 var(--gutter-left);
  background: #a6dac8;
  color: #2e2d29;
  transition: 0.4s ease-in-out;
  overflow: hidden;
  min-height: 0em;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content:before {
  content: " ";
  display: block;
  position: absolute;
  top: -31px;
  left: 50%;
  width: 66px;
  height: 30px;
  clip-path: polygon(0% -1px, 100% -1px, 50% 100%);
  translate: -50% 0;
  background: #175e54;
  transition: 0.4s ease-in-out;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content.on {
  padding-top: calc(var(--block-margin, 4rem) * 1);
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
  --title-margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
}
.theme-block.wp-block-theme-blocks-topics .block-page-content.on .block-close {
  --icon-close-rotate: 45deg;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content.on:before {
  top: 0;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content .block-close {
  --icon-size: 2rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  background: white;
  transition: 0.4s ease-in-out, scale 0.2s ease;
  cursor: pointer;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content .block-close:hover {
  scale: 1.2;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content .block-close:before, .theme-block.wp-block-theme-blocks-topics .block-page-content .block-close:after {
  content: " ";
  display: block;
  position: absolute;
  height: var(--icon-line-width, 2px);
  top: 50%;
  left: 50%;
  width: 60%;
  translate: -50% -50%;
  background: #175e54;
  transition: 0.4s ease-in-out;
  transform-origin: 50% 50%;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content .block-close:before {
  rotate: var(--icon-close-rotate, 0deg);
}
.theme-block.wp-block-theme-blocks-topics .block-page-content .block-close:after {
  rotate: calc(var(--icon-close-rotate, 0deg) * -1);
}
@media screen and (max-width: 1024px) {
  .theme-block.wp-block-theme-blocks-topics .block-page-content .block-close {
    --icon-size: 1.5rem;
    --icon-line-width: 1.5px;
    top: 1rem;
    right: 1rem;
  }
}
.theme-block.wp-block-theme-blocks-topics .block-page-content > .block-title {
  margin: 0;
  padding: 0;
  text-align: center;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content > .block-content {
  display: none;
  padding: var(--title-margin-bottom) 0 0;
}
.theme-block.wp-block-theme-blocks-topics .block-page-content > .block-content > .is-style-content-width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-theme-blocks-expandable-status {
  --block-padding: 1rem;
  position: relative;
  display: grid;
  -moz-column-gap: calc(var(--block-margin, 4rem) * 0.5);
       column-gap: calc(var(--block-margin, 4rem) * 0.5);
  padding: var(--block-padding) 0;
  border-top: 2px solid var(--primary-color, #175e54);
}
.expand-all + .wp-block-theme-blocks-expandable-status {
  margin-top: 1rem;
}
.wp-block-theme-blocks-expandable-status.theme-block + .wp-block-theme-blocks-expandable-status.theme-block {
  margin-top: calc(var(--block-margin, 4rem) * -1);
}
.wp-block-theme-blocks-expandable-status:not(.on) {
  align-items: start;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  grid-template-areas: "title status";
}
.wp-block-theme-blocks-expandable-status:not(.on) > .block-content {
  display: none;
}
.wp-block-theme-blocks-expandable-status.on {
  row-gap: calc(var(--block-margin, 4rem) * 0.33);
  grid-template-columns: 1fr 2fr;
  grid-template-rows: auto auto 1fr;
  grid-template-areas: "title content" "status content" ". content";
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-expandable-status:not(.on) {
    --block-icon-status-size:1.5rem;
  }
  .wp-block-theme-blocks-expandable-status.on {
    --block-status-label-display: block !important;
    grid-template-columns: auto 1fr;
    grid-template-areas: "title title" "status ." "content content";
  }
}
.wp-block-theme-blocks-expandable-status > .block-title {
  grid-area: title;
  align-self: start;
  display: block;
  position: relative;
  padding: 0 0 0 2rem;
  margin: 0;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: clamp(1.556rem, 0.91vw + 1.358rem, 2rem);
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
}
.wp-block-theme-blocks-expandable-status > .block-title .icon {
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: #8c1515;
  color: #ffffff;
  border-radius: 50%;
}
.wp-block-theme-blocks-expandable-status > .block-title .icon:before, .wp-block-theme-blocks-expandable-status > .block-title .icon:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 20%;
  width: 60%;
  height: 2px;
  background: currentColor;
  margin: -1px 0 0;
  transition: 0.2s ease;
}
.wp-block-theme-blocks-expandable-status > .block-title .icon:before {
  rotate: var(--icon-rotate, -90deg);
}
.wp-block-theme-blocks-expandable-status > .block-title .icon:after {
  rotate: var(--icon-rotate2, 0deg);
  opacity: var(--icon-opacity2, 1);
}
.wp-block-theme-blocks-expandable-status > .block-content {
  grid-area: content;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.wp-block-theme-blocks-expandable-status > .block-status {
  grid-area: status;
  display: grid;
  align-items: center;
  justify-content: start;
  grid-template-areas: "icon label";
  grid-template-columns: auto 6rem;
  gap: 0.5rem;
}
.wp-block-theme-blocks-expandable-status > .block-status.none {
  display: none;
}
.wp-block-theme-blocks-expandable-status > .block-status.planned {
  --block-icon-status-image:url(images/icon-status-planning.svg);
}
.wp-block-theme-blocks-expandable-status > .block-status.in-progress {
  --block-icon-status-image:url(images/icon-status-in-progress.svg);
}
.wp-block-theme-blocks-expandable-status > .block-status.completed {
  --block-icon-status-image:url(images/icon-status-completed.svg);
}
.wp-block-theme-blocks-expandable-status > .block-status.ongoing {
  --block-icon-status-image:url(images/icon-status-ongoing.svg);
}
.wp-block-theme-blocks-expandable-status > .block-status:before {
  content: " ";
  display: block;
  width: var(--block-icon-status-size, 2.5rem);
  height: var(--block-icon-status-size, 2.5rem);
  background: no-repeat 50% 50%;
  background-image: var(--block-icon-status-image);
  background-size: contain;
  grid-area: icon;
}
.wp-block-theme-blocks-expandable-status > .block-status .label {
  grid-area: label;
  display: var(--block-status-label-display, inline-block);
  padding: 0.5em;
  font-weight: 600;
  font-size: 0.7777777778rem;
  line-height: 1.3;
  background: #175e54;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-expandable-status:not(.on) {
    --block-status-label-display: none;
  }
  .wp-block-theme-blocks-expandable-status:not(.on) > .block-status {
    grid-template-columns: auto;
    grid-template-areas: "icon label";
  }
}
.wp-block-theme-blocks-expandable-status.on {
  --icon-rotate: 0deg;
  --icon-rotate2: 90deg;
  --icon-opacity2:0;
}
.wp-block-theme-blocks-expandable-status .block-lens {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  -moz-column-gap: 2em;
       column-gap: 2em;
  font-size: 0.7777777778rem;
  text-transform: uppercase;
  font-weight: 600;
}
.wp-block-theme-blocks-expandable-status .block-lens .lens {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.wp-block-theme-blocks-expandable-status .block-lens .lens:before {
  content: " ";
  display: block;
  width: 2em;
  height: 2em;
  background: #279989 no-repeat 50% 50%;
  background-image: var(--icon-image, none);
  background-size: auto var(--icon-size, 55%);
  border-radius: 50%;
}
.wp-block-theme-blocks-expandable-status .block-lens .lens.resilience {
  --icon-image: url(images/icon-lens-resilience.png);
}
.wp-block-theme-blocks-expandable-status .block-lens .lens.academic {
  --icon-image: url(images/icon-lens-academic.png);
  --icon-size:50%;
}
.wp-block-theme-blocks-expandable-status .block-lens .lens.mitigation {
  --icon-image: url(images/icon-lens-mitigation.png);
  --icon-size:60%;
}
.wp-block-theme-blocks-expandable-status .block-lens .lens.justice {
  --icon-image: url(images/icon-lens-justice.png);
}
.wp-block-theme-blocks-expandable-status .wp-block-buttons.cta {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  order: 1;
}
.wp-block-theme-blocks-expandable-status .wp-block-image {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-theme-blocks-expandable-status .wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-expandable-status .wp-block-image:last-child {
  margin-bottom: 0;
}

.gs-dev-tools {
  z-index: 100000;
  top: var(--wp-admin--admin-bar--height, 0px);
  bottom: auto;
}

.wp-block-theme-blocks-hero-climate {
  position: relative;
  height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
  background: #175e54;
  overflow: hidden;
  margin-bottom: 0;
}
.wp-block-theme-blocks-hero-climate + * {
  position: relative;
  z-index: 5000;
}
.page-blocks > .wp-block-theme-blocks-hero-climate:first-child {
  margin-top: calc(var(--page-blocks-padding-top, 0px) * -1 - var(--wrapper-padding-top, 0px));
}
.wp-block-theme-blocks-hero-climate .layer {
  position: absolute;
}
.wp-block-theme-blocks-hero-climate .layer svg {
  position: relative;
  width: 100%;
  display: block;
  shape-rendering: crispEdges;
}
.wp-block-theme-blocks-hero-climate .layer.scene {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-hero-climate .layer.cable svg {
  display: block;
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-hero-climate #hill1-white {
  z-index: 1000;
  top: 0%;
  left: 50%;
  width: 100%;
  min-width: 1200px;
  translate: -50% 0;
  height: calc(100% + 110px);
  margin-top: -110px;
}
.wp-block-theme-blocks-hero-climate #hill1-white:before {
  content: " ";
  display: block;
  position: absolute;
  top: 109px;
  width: 100%;
  left: 0px;
  height: calc(100% - 109px);
  background: white;
}
.wp-block-theme-blocks-hero-climate #hill1-white svg {
  width: 100%;
  height: 110px;
}
.wp-block-theme-blocks-hero-climate #mountains {
  top: 10%;
  left: -20%;
  width: 140%;
}
.wp-block-theme-blocks-hero-climate #cloud-1 {
  top: 10%;
  left: 70%;
  width: 10%;
}
.wp-block-theme-blocks-hero-climate #cloud-2 {
  top: 8%;
  left: 10%;
  width: 5%;
}
.wp-block-theme-blocks-hero-climate #hill1-paloalto {
  top: 24%;
  left: -25%;
  width: 150%;
  height: 200%;
}
.wp-block-theme-blocks-hero-climate #hill1-paloalto:before {
  content: " ";
  display: block;
  position: absolute;
  top: 20%;
  width: 100%;
  height: 50%;
  width: 100%;
  background: #59b3a9;
}
.wp-block-theme-blocks-hero-climate #buildings {
  top: 30%;
  left: -3%;
  width: 100%;
  height: 80%;
  transform-origin: 50% 0%;
}
.wp-block-theme-blocks-hero-climate #road-2 {
  top: 0%;
  left: 49%;
  width: 7.75%;
}
.wp-block-theme-blocks-hero-climate #building-1 {
  top: 1.5%;
  left: 45.5%;
  width: 5%;
}
.wp-block-theme-blocks-hero-climate #building-1 .window-person {
  opacity: 0.3;
}
.wp-block-theme-blocks-hero-climate #building-2 {
  top: -1%;
  left: 43.5%;
  width: 5%;
}
.wp-block-theme-blocks-hero-climate #building-3 {
  top: -1.5%;
  left: 50%;
  width: 3%;
}
.wp-block-theme-blocks-hero-climate #bushes {
  top: 3%;
  width: 3%;
  left: 44.5%;
}
.wp-block-theme-blocks-hero-climate #tree13 {
  top: 0%;
  width: 1%;
  left: 42.5%;
}
.wp-block-theme-blocks-hero-climate #transformer {
  width: 2%;
  left: 54.5%;
  top: 1.5%;
}
.wp-block-theme-blocks-hero-climate #tree12 {
  width: 2.25%;
  left: 51.25%;
  top: -0.75%;
}
.wp-block-theme-blocks-hero-climate #cable-1 {
  top: -4%;
  width: 20.5%;
  height: 13%;
  left: 33.75%;
}
.wp-block-theme-blocks-hero-climate #cable-2 {
  top: -3%;
  width: 20.5%;
  height: 13%;
  left: 54.5%;
}
.wp-block-theme-blocks-hero-climate #cable-3 {
  top: 1.75%;
  width: 5.25%;
  height: 4%;
  left: 50%;
}
.wp-block-theme-blocks-hero-climate #dots3 {
  width: 120%;
  left: 14%;
  top: 7%;
  height: 11%;
}
.wp-block-theme-blocks-hero-climate #tree6 {
  top: 21%;
  width: 2%;
  left: 20%;
}
.wp-block-theme-blocks-hero-climate #hill1-mint {
  top: 26%;
  left: -10%;
  width: 120%;
  rotate: -5deg;
}
.wp-block-theme-blocks-hero-climate #hill1-palo {
  top: 30%;
  left: -10%;
  width: 120%;
  height: 100%;
  rotate: -6deg;
  transform-origin: 50% 0%;
}
.wp-block-theme-blocks-hero-climate #road-1 {
  top: 33.7%;
  left: 58%;
  width: 40%;
  transform-origin: 0% 0%;
}
.wp-block-theme-blocks-hero-climate #solar-panels {
  top: 30%;
  left: 57%;
  width: 20%;
  transform-origin: 0% 50%;
}
.wp-block-theme-blocks-hero-climate .layer.tree {
  aspect-ratio: 2/3;
  transform-origin: 50% 100%;
}
.wp-block-theme-blocks-hero-climate .layer.tree svg {
  height: 100%;
}
.wp-block-theme-blocks-hero-climate #tree-front {
  top: 42%;
  left: -5%;
  width: 22%;
}
.wp-block-theme-blocks-hero-climate #tree2 {
  top: 31%;
  left: -2%;
  width: 8%;
}
.wp-block-theme-blocks-hero-climate #tree3 {
  top: 38%;
  left: 9%;
  width: 10%;
}
.wp-block-theme-blocks-hero-climate #tree4 {
  top: 29%;
  left: 8%;
  width: 8%;
}
.wp-block-theme-blocks-hero-climate #tree5 {
  top: 31%;
  left: 17%;
  width: 8%;
}
.wp-block-theme-blocks-hero-climate #tree7 {
  top: 30%;
  width: 8%;
  left: 40%;
}
.wp-block-theme-blocks-hero-climate #tree8 {
  top: 32%;
  width: 5%;
  left: 47%;
}
.wp-block-theme-blocks-hero-climate #tree9 {
  top: 46%;
  width: 3%;
  left: 92%;
}
.wp-block-theme-blocks-hero-climate .layer.plant {
  aspect-ratio: 1/1;
  transform-origin: 50% 100%;
}
.wp-block-theme-blocks-hero-climate .layer.plant svg {
  height: 100%;
}
.wp-block-theme-blocks-hero-climate #hill-dots-1 {
  top: 0%;
  left: 20%;
  width: 120%;
}
.wp-block-theme-blocks-hero-climate #garden {
  top: 39%;
  left: 41%;
  width: 40%;
  height: 60%;
}
.wp-block-theme-blocks-hero-climate #woman-planting {
  top: 10%;
  left: 20%;
  width: 25%;
  transform-origin: 100% 100%;
}
.wp-block-theme-blocks-hero-climate #plant1 {
  left: 39%;
  top: 29%;
  width: 5%;
}
.wp-block-theme-blocks-hero-climate #plant2 {
  left: 57%;
  top: 27%;
  width: 5%;
}
.wp-block-theme-blocks-hero-climate #plant3 {
  left: 32%;
  top: 41%;
  width: 6%;
}
.wp-block-theme-blocks-hero-climate #plant4 {
  left: 53%;
  top: 41%;
  width: 6%;
}
.wp-block-theme-blocks-hero-climate #plant5 {
  left: 25%;
  top: 60%;
  width: 8%;
}
.wp-block-theme-blocks-hero-climate #plant6 {
  left: 46%;
  top: 60%;
  width: 8%;
}
.wp-block-theme-blocks-hero-climate #plant7 {
  left: 17%;
  top: 80%;
  width: 10%;
}
.wp-block-theme-blocks-hero-climate #plant8 {
  left: 40%;
  top: 80%;
  width: 10%;
}
.wp-block-theme-blocks-hero-climate #woman-scientist-1 {
  top: 30%;
  width: 60%;
  left: 40%;
  transform-origin: 35% 5%;
}
.wp-block-theme-blocks-hero-climate #tower {
  top: 26%;
  left: 45%;
  width: 5%;
  opacity: 0;
  transform-origin: 50% 100%;
}
.wp-block-theme-blocks-hero-climate #hill-dots-2 {
  top: 0%;
  left: 20%;
  width: 130%;
}
.wp-block-theme-blocks-hero-climate #tree10 {
  top: 37%;
  width: 5%;
  left: 54%;
}
.wp-block-theme-blocks-hero-climate #tree11 {
  top: 22%;
  width: 3%;
  left: 70%;
}
.wp-block-theme-blocks-hero-climate #hero-content {
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3% 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.wp-block-theme-blocks-hero-climate #hero-content #hero-content-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 94, 84, 0.8);
  opacity: 0;
}
.wp-block-theme-blocks-hero-climate #hero-content p,
.wp-block-theme-blocks-hero-climate #hero-content .line {
  display: block;
  opacity: 0;
  translate: 0 calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-hero-climate #hero-content h1 {
  font-size: clamp(2.778rem, 3.414vw + 2.038rem, 4.444rem);
  line-height: 1;
}
.wp-block-theme-blocks-hero-climate #hero-content p {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: clamp(1.111rem, 1.821vw + 0.717rem, 2rem);
  line-height: 1.15;
}
.wp-block-theme-blocks-hero-climate #hero-content p strong {
  font-weight: 700;
}

.wp-block-theme-blocks-scoreboard {
  --block-background-color: #231f20;
  --block-color: #fff;
  --block-font: cursive;
  --block-border-width: .3rem;
  --block-tabs-gap: .3rem;
  --block-tabs-font-size: clamp(1.111rem, 0.455vw + 1.012rem, 1.333rem);
  --block-scoreboard-font: Orbitron, var(--theme-font-sans-serif);
  --block-animation-duration: 1.5s;
  position: relative;
  padding: calc(var(--block-margin, 4rem) * 1) 0 0;
  overflow: hidden;
}
.wp-block-theme-blocks-scoreboard .trees {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 530px;
  transform-origin: 50% 0%;
  scale: 0.75;
}
.wp-block-theme-blocks-scoreboard .tree {
  position: absolute;
  top: 0;
  left: 50%;
  width: 15rem;
  height: 100%;
  background: var(--tree-color, #59b3a9);
  -webkit-mask-image: url(blocks/scoreboard/images/tree.svg);
          mask-image: url(blocks/scoreboard/images/tree.svg);
  -webkit-mask-position: 50% 0%;
          mask-position: 50% 0%;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(1), .wp-block-theme-blocks-scoreboard .tree:nth-child(4) {
  --tree-color: #175e54;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(1) {
  translate: calc(-50% - 27rem) 0%;
  top: 10%;
  height: 80%;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(2) {
  translate: calc(-50% - 15rem) 0%;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(3) {
  translate: calc(-50% + 8rem) 0%;
  top: 5%;
  height: 95%;
  z-index: 1;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(4) {
  translate: calc(-50% + 14rem) 0%;
  top: 7%;
  height: 65%;
}
.wp-block-theme-blocks-scoreboard .tree:nth-child(5) {
  translate: calc(-50% + 20rem) 0%;
}
.wp-block-theme-blocks-scoreboard > .layout {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto [panels-start] auto 1fr [panels-end];
  grid-template-areas: ". year ." "tabs tabs tabs" "panels panels panels";
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1040px) {
  .wp-block-theme-blocks-scoreboard > .layout {
    max-width: none;
  }
}
.wp-block-theme-blocks-scoreboard .block-year {
  position: relative;
  grid-area: year;
  display: block;
  margin: 0 0 -0.1em 0;
  padding: 1.5rem 2rem;
  border-radius: 0.6rem 0.6rem 0 0;
  background-color: var(--block-background-color);
  color: var(--block-color);
  line-height: 1;
  font-size: clamp(1.778rem, 1.138vw + 1.531rem, 2.333rem);
  font-family: var(--block-scoreboard-font);
  font-weight: 500;
}
.wp-block-theme-blocks-scoreboard .block-year:before {
  display: block;
  content: " ";
  position: absolute;
  box-sizing: border-box;
  top: 0.75rem;
  left: 1rem;
  width: calc(100% - 2rem);
  height: calc(100% - 1.5rem);
  border: var(--block-border-width) solid currentColor;
  border-radius: 0.1rem;
}
.wp-block-theme-blocks-scoreboard .block-tabs {
  --button-padding: .2em .5em;
  position: relative;
  z-index: 50;
  grid-area: tabs;
  background: var(--block-background-color);
  padding: var(--block-border-width);
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: var(--block-tabs-gap);
  font-size: var(--block-tabs-font-size);
  line-height: 1;
}
.wp-block-theme-blocks-scoreboard .block-tabs .wp-block-button {
  font-family: "Roboto Slab", var(--theme-font-sans-serif);
  font-weight: 600;
}
.wp-block-theme-blocks-scoreboard .block-tabs .wp-block-button .wp-block-button__link {
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.wp-block-theme-blocks-scoreboard .block-tabs .wp-block-button .wp-block-button__link .icon {
  transition: 0.2s ease;
  transform: scaleY(1);
  font-size: 0.9em;
  margin-top: 4px;
}
.wp-block-theme-blocks-scoreboard .block-tabs .wp-block-button.on .wp-block-button__link {
  border-color: #8c1515;
  background-color: #8c1515;
}
.wp-block-theme-blocks-scoreboard .block-tabs .wp-block-button.on .wp-block-button__link .icon {
  transform: scaleY(-1);
  margin-top: 2px;
}
.wp-block-theme-blocks-scoreboard .block-panels {
  grid-area: panels;
}
.wp-block-theme-blocks-scoreboard .panel-layout {
  --panel-column-gap:2rem;
  grid-area: layout;
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  -moz-column-gap: var(--panel-column-gap);
       column-gap: var(--panel-column-gap);
  grid-template-areas: "left center right";
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.wp-block-theme-blocks-scoreboard .panel {
  grid-area: panel;
  position: relative;
  margin: 0;
  padding: 4.75rem 4rem 4.25rem;
  border-radius: 2.5rem;
  background: var(--block-background-color);
  color: var(--block-color);
}
@media screen and (max-width: 1040px) {
  .wp-block-theme-blocks-scoreboard .panel {
    border-radius: 0;
  }
}
.wp-block-theme-blocks-scoreboard .panel.opened {
  --stripes-play-state: running;
}
.wp-block-theme-blocks-scoreboard .panel:before {
  display: block;
  content: " ";
  position: absolute;
  box-sizing: border-box;
  top: 1.375rem;
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: calc(100% - 2.75rem);
  border: var(--block-border-width) solid currentColor;
  border-radius: 2rem;
}
@keyframes fill-trash-can {
  0% {
    height: 0;
  }
  100% {
    height: calc(var(--fill, 50) / 100 * 100%);
  }
}
.wp-block-theme-blocks-scoreboard .panel .panel-image {
  grid-area: center;
  position: relative;
  z-index: 10;
  align-self: start;
}
.wp-block-theme-blocks-scoreboard .panel .panel-image img {
  display: block;
  width: 100%;
  -o-object-fit: 100% auto;
     object-fit: 100% auto;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-scoreboard .panel .panel-image:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--image-fill-color, #53565a);
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 0%;
          mask-position: 50% 0%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.wp-block-theme-blocks-scoreboard .panel .panel-image .stripes {
  display: block;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--stripes-height, 0%);
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0) 0rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0.5) 0.5rem, rgba(0, 0, 0, 0.5) 1rem);
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 100%;
          mask-position: 50% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation-name: fill-trash-can;
  animation-iteration-count: 1;
  animation-play-state: var(--stripes-play-state, paused);
  animation-duration: var(--block-animation-duration);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.wp-block-theme-blocks-scoreboard .panel .panel-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: center;
  align-self: center;
  justify-self: center;
  width: var(--icon-size, 4rem);
  height: var(--icon-size, 4rem);
  border-radius: 50%;
  background: color-mix(in srgb, var(--block-background-color) 50%, var(--image-fill-color));
}
.wp-block-theme-blocks-scoreboard .panel .panel-icon img {
  display: block;
  width: 60%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic {
  margin: 0;
  width: 100%;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic.is-style-left-panel {
  grid-area: left;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic.is-style-left-panel .statistic-line {
  --highlight-color:var(--highlight-color-override, var(--image-fill-color, inherit));
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic.is-style-right-panel {
  grid-area: right;
  --highlight-color: #fec51d;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic > .block-title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2em;
  margin: 0 0 1rem;
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(1.111rem, 1.138vw + 0.865rem, 1.667rem);
  line-height: 1;
  font-weight: 700;
  color: var(--highlight-color, inherit);
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic strong {
  color: var(--highlight-color, inherit);
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-statistic {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  color: var(--highlight-color, inherit);
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic > .block-statistic {
  font-family: var(--block-scoreboard-font);
  font-size: clamp(2.222rem, 3.983vw + 1.359rem, 4.167rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic > .block-statistic .odometer {
  --odometer-duration: var(--block-animation-duration);
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content {
  margin-top: 1.5rem;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content .statistic-line {
  display: grid;
  grid-template-columns: minmax(3rem, auto) 1fr;
  grid-template-areas: "stat label";
  margin: 1rem 0 0;
  gap: 0.7rem;
  font-weight: 600;
  font-size: 1.5em;
  line-height: 1;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content .statistic-line:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content .statistic-line .block-statistic {
  grid-area: stat;
  text-align: right;
}
.wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content .statistic-line .block-label {
  grid-area: label;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown {
  --highlight-color: var(--image-fill-color);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  grid-column: 1/-1;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-right-panel {
  --highlight-color: #fec51d;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown:before {
  content: " ";
  display: block;
  top: 1.5rem;
  left: 0;
  width: 2px;
  margin: 0 auto;
  height: 1.5rem;
  background: var(--highlight-color);
  border-bottom: 0;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-top: 2px solid var(--highlight-color);
  padding: 0.75em 0.25em 0 0.25em;
  font-weight: 600;
  font-size: 1.2em;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items:before, .wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  width: 2px;
  height: 0.5em;
  background: var(--highlight-color);
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items:before {
  left: 0;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items:after {
  right: 0;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-scoreboard .panel .block-breakdown > .line-items {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown .statistic-line {
  display: flex;
  align-items: center;
  gap: 0.25em;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-scoreboard .panel .block-breakdown .statistic-line:after {
    content: " | ";
    display: inline-block;
    margin: 0 0.25rem 0 0.5rem;
    opacity: 0.3;
  }
  .wp-block-theme-blocks-scoreboard .panel .block-breakdown .statistic-line:last-child:after {
    display: none;
  }
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown .block-statistic {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  color: var(--highlight-color-override, var(--highlight-color, inherit));
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .block-statistic {
  font-family: var(--block-scoreboard-font);
  font-size: clamp(2.222rem, 3.983vw + 1.359rem, 4.167rem);
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown > .block-statistic .odometer {
  --odometer-duration: var(--block-animation-duration);
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel {
  position: absolute;
  z-index: 20;
  grid-area: center;
  grid-column: 2/3;
  width: 100%;
  left: 0;
  bottom: 0;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8em;
  background: #59b3a9 repeating-linear-gradient(135deg, rgba(0, 0, 0, 0) 0rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0.5) 0.5rem, rgba(0, 0, 0, 0.5) 1rem);
  background-position: 50% 0%;
  padding-bottom: 0;
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 100%;
          mask-position: 50% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation-name: label-trash-can;
  animation-iteration-count: 1;
  animation-play-state: var(--stripes-play-state, paused);
  animation-duration: var(--block-animation-duration);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  align-items: end;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel:before {
  display: none;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items {
  padding: 0.3em;
  background: #59b3a9;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  text-align: left;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items:before {
  display: none;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items strong {
  font-weight: inherit;
  font-size: 1.4em;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items .statistic-line {
  justify-content: center;
  font-weight: 700;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items .statistic-line .block-statistic {
  flex-basis: 100%;
  text-align: right;
  font-size: 1.3em;
  color: inherit;
}
.wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel .line-items .statistic-line .block-label {
  flex-basis: 100%;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) and (min-width: 501px) {
  .wp-block-theme-blocks-scoreboard .panel {
    --line-color: #fec51d;
  }
  .wp-block-theme-blocks-scoreboard .panel:after {
    content: " ";
    display: block;
    grid-column: 1/-1;
    grid-row: 1/3;
    width: 2px;
    height: 100%;
    margin: 0 auto;
    background: var(--line-color);
  }
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-landfill,
.wp-block-theme-blocks-scoreboard #panel-scoreboard-recycling {
  --line-color: #fec51d;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro:after {
  display: none;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-statistic {
  --highlight-color: inherit;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image {
  grid-area: center;
  margin-left: calc(var(--panel-column-gap) * -1);
  margin-right: calc(var(--panel-column-gap) * -1);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "two one three";
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-cloned-image {
  position: relative;
  scale: 1.2;
  --icon-size: 2rem;
  display: grid;
  grid-template-areas: "center";
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-cloned-image:nth-child(1) {
  grid-area: one;
  scale: 1.6;
  z-index: 3;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-cloned-image:nth-child(2) {
  grid-area: two;
  z-index: 1;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-cloned-image:nth-child(3) {
  grid-area: three;
  z-index: 1;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-image {
  align-self: center;
}
.wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-image .stripes {
  display: none;
}
.wp-block-theme-blocks-scoreboard.theme-block .block-panels {
  display: grid;
  grid-template-areas: "panel";
}
.wp-block-theme-blocks-scoreboard.theme-block .block-panels .panel {
  display: var(--block-panel-display, none);
}
.wp-block-theme-blocks-scoreboard.theme-block .block-panels .panel.on {
  --block-panel-display:grid;
}
@media screen and (max-width: 940px) {
  .wp-block-theme-blocks-scoreboard .panel-layout {
    grid-template-columns: 2fr 1fr 2fr;
  }
  .wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image .panel-cloned-image {
    --icon-size:2rem;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-scoreboard {
    --panel-image-max-width: 260px;
  }
  .wp-block-theme-blocks-scoreboard .panel-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "center center" "left right";
  }
  .wp-block-theme-blocks-scoreboard .panel-image {
    max-width: 260px;
    margin: 0 auto 2rem;
  }
  .wp-block-theme-blocks-scoreboard #panel-scoreboard-intro .panel-intro-image {
    max-width: 300px;
    margin: 2rem auto;
  }
  .wp-block-theme-blocks-scoreboard .panel .block-breakdown.is-style-left-panel {
    grid-column: 1/-1;
    left: 50%;
    translate: -50% 0%;
    max-width: var(--panel-image-max-width, 260px);
    margin: 0 auto var(--panel-image-margin-bottom, 2rem);
  }
}
@media screen and (max-width: 640px) {
  .wp-block-theme-blocks-scoreboard {
    --panel-image-max-width: 200px;
  }
  .wp-block-theme-blocks-scoreboard .panel {
    padding: 3.75rem 3rem 3.25rem;
  }
  .wp-block-theme-blocks-scoreboard .panel-image {
    max-width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-scoreboard {
    --block-tabs-font-size: clamp(0.889rem, 0.228vw + 0.84rem, 1rem);
    --panel-image-margin-bottom: 0px;
  }
  .wp-block-theme-blocks-scoreboard .block-tabs {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-theme-blocks-scoreboard .panel-layout {
    grid-template-columns: auto;
    grid-template-areas: "left" "center" "right";
  }
  .wp-block-theme-blocks-scoreboard .panel .panel-image {
    margin-bottom: 0;
  }
  .wp-block-theme-blocks-scoreboard .panel .panel-statistic {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-title {
    margin-bottom: 0;
  }
  .wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .wp-block-theme-blocks-scoreboard .panel .panel-statistic .block-content .statistic-line {
    display: inline-grid;
  }
}

.wp-block-theme-blocks-trash-stats {
  --block-background-color: #231f20;
  --block-animation-duration: 1.5s;
  max-width: 300px;
  padding: 0 1rem 0 0;
}
@keyframes label-trash-can {
  0% {
    padding-bottom: 0;
  }
  100% {
    padding-bottom: calc(var(--fill, 50) / 100 * 100%);
  }
}
.wp-block-theme-blocks-trash-stats.last-item {
  padding-right: 0;
}
.wp-block-theme-blocks-trash-stats.visible {
  --stripes-play-state: running;
}
.wp-block-theme-blocks-trash-stats > .layout {
  position: relative;
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  grid-template-rows: auto auto auto 1fr auto auto;
  grid-template-areas: ". title" "bottom media" "bottom-label media" ". media" "top media" "top-label media";
}
.wp-block-theme-blocks-trash-stats > .layout:before {
  content: " ";
  display: block;
  grid-area: media;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -30%;
  width: 120%;
  aspect-ratio: 1/1;
  background: #a6dac8;
  border-radius: 50%;
}
.wp-block-theme-blocks-trash-stats .block-title {
  grid-area: title;
  margin: 0 0 1rem;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: clamp(1.111rem, 1.366vw + 0.815rem, 1.778rem);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.wp-block-theme-blocks-trash-stats .block-number {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.2em 0 0;
  font-size: clamp(1.111rem, 1.366vw + 0.815rem, 1.778rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.wp-block-theme-blocks-trash-stats .block-number .number {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
}
.wp-block-theme-blocks-trash-stats .block-number:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: var(--number-line-width, 100%);
  height: 2px;
  background: #59b3a9;
}
.wp-block-theme-blocks-trash-stats .block-number.top:before {
  display: none;
}
.wp-block-theme-blocks-trash-stats .block-label {
  position: relative;
  font-size: clamp(0.889rem, 0.228vw + 0.84rem, 1rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.wp-block-theme-blocks-trash-stats .block-number.top {
  grid-area: top;
  color: #fec51d;
}
.wp-block-theme-blocks-trash-stats .block-label.top {
  grid-area: top-label;
  padding-bottom: 0.25em;
  white-space: nowrap;
}
.wp-block-theme-blocks-trash-stats .block-label.top:before {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: var(--number-line-width, 120%);
  height: 2px;
  background: #fec51d;
}
.wp-block-theme-blocks-trash-stats .block-number.bottom {
  grid-area: bottom;
  color: #59b3a9;
  --number-line-width: 110%;
}
.block-overlay .wp-block-theme-blocks-trash-stats .block-number.bottom {
  color: #a6dac8;
}
.wp-block-theme-blocks-trash-stats .block-label.bottom {
  grid-area: bottom-label;
}
.wp-block-theme-blocks-trash-stats .trash-image {
  position: relative;
  grid-area: media;
}
.wp-block-theme-blocks-trash-stats .trash-image img {
  display: block;
  width: 100%;
  -o-object-fit: 100% auto;
     object-fit: 100% auto;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  visibility: hidden;
}
.wp-block-theme-blocks-trash-stats .trash-image:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--image-fill-color, #53565a);
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 0%;
          mask-position: 50% 0%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.wp-block-theme-blocks-trash-stats .trash-image .stripes {
  display: block;
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--stripes-height, 0%);
  background: repeating-linear-gradient(135deg, rgba(0, 0, 0, 0) 0rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0.5) 0.5rem, rgba(0, 0, 0, 0.5) 1rem);
  background-position: 50% 0%;
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 100%;
          mask-position: 50% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation-name: fill-trash-can;
  animation-iteration-count: 1;
  animation-play-state: var(--stripes-play-state, paused);
  animation-duration: var(--block-animation-duration);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.wp-block-theme-blocks-trash-stats .trash-image .label {
  position: absolute;
  z-index: 12;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: var(--label-padding-top, 0);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8em;
  background: #59b3a9 repeating-linear-gradient(135deg, rgba(0, 0, 0, 0) 0rem, rgba(0, 0, 0, 0) 0.5rem, rgba(0, 0, 0, 0.5) 0.5rem, rgba(0, 0, 0, 0.5) 1rem);
  background-position: 50% 0%;
  -webkit-mask-image: var(--image-src);
          mask-image: var(--image-src);
  -webkit-mask-size: 100% auto;
          mask-size: 100% auto;
  -webkit-mask-position: 50% 100%;
          mask-position: 50% 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  animation-name: label-trash-can;
  animation-iteration-count: 1;
  animation-play-state: var(--stripes-play-state, paused);
  animation-duration: var(--block-animation-duration);
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
}
.wp-block-theme-blocks-trash-stats .trash-image .label .text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em;
  gap: 0.25em;
  background: #59b3a9;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1;
  text-align: left;
}
.wp-block-theme-blocks-trash-stats .trash-image .label .text strong {
  font-weight: inherit;
  font-size: 1.4em;
}
.wp-block-theme-blocks-trash-stats .trash-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-area: media;
  align-self: center;
  justify-self: center;
  aspect-ratio: 1/1;
  width: 60%;
  border-radius: 50%;
  background: color-mix(in srgb, var(--block-background-color) 50%, var(--image-fill-color));
}
.wp-block-theme-blocks-trash-stats .trash-icon img {
  display: block;
  width: 60%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-trash-stats {
    max-width: none;
  }
  .wp-block-theme-blocks-trash-stats > .layout {
    grid-template-areas: "title title title" "media bottom top" "media bottom-label top-label";
    grid-template-columns: auto 1fr 1fr;
  }
  .wp-block-theme-blocks-trash-stats > .layout:before {
    display: none;
  }
  .wp-block-theme-blocks-trash-stats .block-title {
    text-align: left;
    margin-bottom: 0.5rem;
  }
  .wp-block-theme-blocks-trash-stats .trash-image {
    display: none;
  }
  .wp-block-theme-blocks-trash-stats .block-number:before,
  .wp-block-theme-blocks-trash-stats .block-label:before {
    display: none !important;
  }
  .wp-block-theme-blocks-trash-stats .trash-icon {
    position: relative;
    top: auto;
    left: auto;
    translate: 0% 0%;
    width: var(--trash-icon-width, 5rem);
    background-color: var(--image-fill-color);
  }
}
@media screen and (max-width: 450px) {
  .wp-block-theme-blocks-trash-stats {
    --trash-icon-width: 3rem;
  }
}

.wp-block-theme-blocks-alert {
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  margin: 0 auto 1rem;
  max-width: 500px;
  background: #ffffff;
  color: #2e2d29;
  font-weight: 600;
  border: 1px solid #2e2d29;
  box-shadow: 3px 3px 0px #2e2d29;
  text-align: left;
  /*
      &:before {
          @include icon-font('triangle-exclamation');

      }
  */
}
.wp-block-theme-blocks-alert .block-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  text-align: center;
  font-size: 36px;
  line-height: 1;
  color: #8c1515;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.heading {
  position: relative;
  margin: 0 0 0.75rem 0;
  padding: 0;
  clear: both;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 700;
  font-style: normal;
  font-optical-sizing: none;
  -webkit-font-smoothing: antialiased;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.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,
.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,
.h1 a, .h2 a, .h3 a, .h4 a, .h5 a, .h6 a,
.heading a {
  display: inline-block;
  color: inherit;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.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,
.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;
}
.page-blocks > h1.has-text-align-center,
.page-blocks > h2.has-text-align-center,
.page-blocks > h3.has-text-align-center,
.page-blocks > h4.has-text-align-center,
.page-blocks > h5.has-text-align-center,
.page-blocks > h6.has-text-align-center,
.page-blocks > .h1.has-text-align-center, .page-blocks > .h2.has-text-align-center, .page-blocks > .h3.has-text-align-center, .page-blocks > .h4.has-text-align-center, .page-blocks > .h5.has-text-align-center, .page-blocks > .h6.has-text-align-center,
.page-blocks > .heading.has-text-align-center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
h1 + .theme-block.is-style-content-width, h1 + .theme-block.is-style-full-width, h1 + .theme-block.wp-block-image,
h2 + .theme-block.is-style-content-width,
h2 + .theme-block.is-style-full-width,
h2 + .theme-block.wp-block-image,
h3 + .theme-block.is-style-content-width,
h3 + .theme-block.is-style-full-width,
h3 + .theme-block.wp-block-image,
h4 + .theme-block.is-style-content-width,
h4 + .theme-block.is-style-full-width,
h4 + .theme-block.wp-block-image,
h5 + .theme-block.is-style-content-width,
h5 + .theme-block.is-style-full-width,
h5 + .theme-block.wp-block-image,
h6 + .theme-block.is-style-content-width,
h6 + .theme-block.is-style-full-width,
h6 + .theme-block.wp-block-image,
.h1 + .theme-block.is-style-content-width,
.h1 + .theme-block.is-style-full-width,
.h1 + .theme-block.wp-block-image, .h2 + .theme-block.is-style-content-width, .h2 + .theme-block.is-style-full-width, .h2 + .theme-block.wp-block-image, .h3 + .theme-block.is-style-content-width, .h3 + .theme-block.is-style-full-width, .h3 + .theme-block.wp-block-image, .h4 + .theme-block.is-style-content-width, .h4 + .theme-block.is-style-full-width, .h4 + .theme-block.wp-block-image, .h5 + .theme-block.is-style-content-width, .h5 + .theme-block.is-style-full-width, .h5 + .theme-block.wp-block-image, .h6 + .theme-block.is-style-content-width, .h6 + .theme-block.is-style-full-width, .h6 + .theme-block.wp-block-image,
.heading + .theme-block.is-style-content-width,
.heading + .theme-block.is-style-full-width,
.heading + .theme-block.wp-block-image {
  margin-top: 3em;
}
h1 + .wp-block-buttons,
h2 + .wp-block-buttons,
h3 + .wp-block-buttons,
h4 + .wp-block-buttons,
h5 + .wp-block-buttons,
h6 + .wp-block-buttons,
.h1 + .wp-block-buttons, .h2 + .wp-block-buttons, .h3 + .wp-block-buttons, .h4 + .wp-block-buttons, .h5 + .wp-block-buttons, .h6 + .wp-block-buttons,
.heading + .wp-block-buttons {
  margin-top: 1rem;
}
h1.has-image-icon:before,
h2.has-image-icon:before,
h3.has-image-icon:before,
h4.has-image-icon:before,
h5.has-image-icon:before,
h6.has-image-icon:before,
.h1.has-image-icon:before, .h2.has-image-icon:before, .h3.has-image-icon:before, .h4.has-image-icon:before, .h5.has-image-icon:before, .h6.has-image-icon:before,
.heading.has-image-icon:before {
  --icon-size: 1.7em;
  content: " ";
  display: block;
  margin: 0 0 0.7rem;
  width: var(--icon-size);
  height: var(--icon-size);
  background: var(--icon) no-repeat 50% 50%;
  background-size: contain;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.wp-block-theme-blocks-promotion .block-content h1.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content h2.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content h3.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content h4.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content h5.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content h6.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content .h1.has-image-icon:before, .wp-block-theme-blocks-promotion .block-content .h2.has-image-icon:before, .wp-block-theme-blocks-promotion .block-content .h3.has-image-icon:before, .wp-block-theme-blocks-promotion .block-content .h4.has-image-icon:before, .wp-block-theme-blocks-promotion .block-content .h5.has-image-icon:before, .wp-block-theme-blocks-promotion .block-content .h6.has-image-icon:before,
.wp-block-theme-blocks-promotion .block-content .heading.has-image-icon:before {
  margin-left: auto;
  margin-right: auto;
}
h1.has-image-icon.has-left-icon,
h2.has-image-icon.has-left-icon,
h3.has-image-icon.has-left-icon,
h4.has-image-icon.has-left-icon,
h5.has-image-icon.has-left-icon,
h6.has-image-icon.has-left-icon,
.h1.has-image-icon.has-left-icon, .h2.has-image-icon.has-left-icon, .h3.has-image-icon.has-left-icon, .h4.has-image-icon.has-left-icon, .h5.has-image-icon.has-left-icon, .h6.has-image-icon.has-left-icon,
.heading.has-image-icon.has-left-icon {
  display: flex;
  align-items: center;
}
h1.has-image-icon.has-left-icon.has-text-align-center,
h2.has-image-icon.has-left-icon.has-text-align-center,
h3.has-image-icon.has-left-icon.has-text-align-center,
h4.has-image-icon.has-left-icon.has-text-align-center,
h5.has-image-icon.has-left-icon.has-text-align-center,
h6.has-image-icon.has-left-icon.has-text-align-center,
.h1.has-image-icon.has-left-icon.has-text-align-center, .h2.has-image-icon.has-left-icon.has-text-align-center, .h3.has-image-icon.has-left-icon.has-text-align-center, .h4.has-image-icon.has-left-icon.has-text-align-center, .h5.has-image-icon.has-left-icon.has-text-align-center, .h6.has-image-icon.has-left-icon.has-text-align-center,
.heading.has-image-icon.has-left-icon.has-text-align-center {
  justify-content: center;
}
h1.has-image-icon.has-left-icon.has-text-align-right,
h2.has-image-icon.has-left-icon.has-text-align-right,
h3.has-image-icon.has-left-icon.has-text-align-right,
h4.has-image-icon.has-left-icon.has-text-align-right,
h5.has-image-icon.has-left-icon.has-text-align-right,
h6.has-image-icon.has-left-icon.has-text-align-right,
.h1.has-image-icon.has-left-icon.has-text-align-right, .h2.has-image-icon.has-left-icon.has-text-align-right, .h3.has-image-icon.has-left-icon.has-text-align-right, .h4.has-image-icon.has-left-icon.has-text-align-right, .h5.has-image-icon.has-left-icon.has-text-align-right, .h6.has-image-icon.has-left-icon.has-text-align-right,
.heading.has-image-icon.has-left-icon.has-text-align-right {
  justify-content: end;
}
h1.has-image-icon.has-left-icon:before,
h2.has-image-icon.has-left-icon:before,
h3.has-image-icon.has-left-icon:before,
h4.has-image-icon.has-left-icon:before,
h5.has-image-icon.has-left-icon:before,
h6.has-image-icon.has-left-icon:before,
.h1.has-image-icon.has-left-icon:before, .h2.has-image-icon.has-left-icon:before, .h3.has-image-icon.has-left-icon:before, .h4.has-image-icon.has-left-icon:before, .h5.has-image-icon.has-left-icon:before, .h6.has-image-icon.has-left-icon:before,
.heading.has-image-icon.has-left-icon:before {
  --icon-size:2.5em;
  margin: 0 1rem 0 0;
  border: 0;
}

.h1,
h1 {
  font-size: clamp(2.333rem, 2.048vw + 1.89rem, 3.333rem);
  line-height: 1.1;
}

.h2,
h2 {
  font-size: clamp(1.778rem, 1.138vw + 1.531rem, 2.333rem);
  line-height: 1.15;
}

.h3,
h3 {
  font-size: clamp(1.444rem, 1.138vw + 1.198rem, 2rem);
  line-height: 1.15;
}

.h4,
h4 {
  font-family: var(--theme-font-sans-serif);
  font-size: clamp(1.333rem, 0.455vw + 1.235rem, 1.556rem);
  font-weight: 600;
  line-height: 1.2;
}

.h5,
h5 {
  font-family: var(--theme-font-sans-serif);
  font-size: clamp(1.111rem, 0.228vw + 1.062rem, 1.222rem);
  font-weight: 600;
  line-height: 1.3;
}

.h6,
h6 {
  font-family: var(--theme-font-sans-serif);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

strong.heading {
  font-family: var(--theme-font-sans-serif);
  font-size: 1.2em;
  font-weight: 700;
}

:where([class*=wp-block]:not(.wp-block-separator, .is-style-section-heading),
[class*=theme-block],
p,
ol,
ul) + h1:not(.is-style-section-heading), :where([class*=wp-block]:not(.wp-block-separator, .is-style-section-heading),
[class*=theme-block],
p,
ol,
ul) + h2:not(.is-style-section-heading) {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

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

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

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

.h1 + .h2, .h1 + h2, .h1 + .h3, .h1 + h3, .h1 + .h4, .h1 + h4, h1 + .h2, h1 + h2, h1 + .h3, h1 + h3, h1 + .h4, h1 + h4,
.h2 + .h2,
.h2 + h2,
.h2 + .h3,
.h2 + h3,
.h2 + .h4,
.h2 + h4, h2 + .h2, h2 + h2, h2 + .h3, h2 + h3, h2 + .h4, h2 + h4,
.h3 + .h2,
.h3 + h2,
.h3 + .h3,
.h3 + h3,
.h3 + .h4,
.h3 + h4, h3 + .h2, h3 + h2, h3 + .h3, h3 + h3, h3 + .h4, h3 + h4 {
  margin-top: -0.5rem;
}

.h4 + .h5, .h4 + h5, h4 + .h5, h4 + h5 {
  margin-top: -0.25em;
}

.is-style-expandable {
  --highlight-color: #b1040e;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  text-decoration: none;
}
h1:not(.is-style-expandable) + .is-style-expandable, h2:not(.is-style-expandable) + .is-style-expandable, h3:not(.is-style-expandable) + .is-style-expandable, h4:not(.is-style-expandable) + .is-style-expandable, h5:not(.is-style-expandable) + .is-style-expandable, h6:not(.is-style-expandable) + .is-style-expandable {
  margin-top: calc(var(--block-margin, 4rem) * 0.25);
}
.is-style-expandable:hover {
  text-decoration: underline;
}
.is-style-expandable:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.4em;
  font-size: 0.6em;
  text-align: center;
  margin: 0.15em 0 0 0;
  border-radius: 50%;
  transition: all 0.2s 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: "\+";
  color: #ffffff;
  background: var(--highlight-color);
  transform: rotate(90deg);
}
.is-style-expandable:before:hover {
  background: #8c1515;
}
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:focus:before {
  background-color: #8c1515;
}
.is-style-expandable.opened:before {
  transform: rotate(180deg);
  content: "\f068";
  background-color: #8c1515;
}
@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-top: calc(var(--block-margin, 4rem) * 0.25);
  padding-bottom: 1.5em;
}
.expand-content:last-child {
  padding-bottom: 0;
}
.expand-content + .is-style-expandable {
  margin-top: 0.75em;
}
.expand-content > .alignleft:first-child + ol,
.expand-content > .alignleft:first-child + ul,
.expand-content > .alignright:first-child + ol,
.expand-content > .alignright:first-child + ul {
  margin-top: 0;
}
.expand-content + h1:not(.is-style-expandable), .expand-content + h2:not(.is-style-expandable), .expand-content + h3:not(.is-style-expandable), .expand-content + h4:not(.is-style-expandable), .expand-content + h5:not(.is-style-expandable), .expand-content + h6:not(.is-style-expandable) {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

h1.is-style-section-heading,
h2.is-style-section-heading,
h3.is-style-section-heading {
  margin-top: calc(var(--block-margin, 4rem) * 1.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
  padding: 0;
  font-size: clamp(1.667rem, 2.845vw + 1.05rem, 3.056rem);
  font-weight: 500;
  text-align: center;
}
h1.is-style-section-heading:first-child,
h2.is-style-section-heading:first-child,
h3.is-style-section-heading:first-child {
  margin-top: 0;
}
h1.is-style-section-heading:last-child,
h2.is-style-section-heading:last-child,
h3.is-style-section-heading:last-child {
  margin-bottom: 0;
}
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;
}
h1.is-style-section-heading + .is-style-intro,
h2.is-style-section-heading + .is-style-intro,
h3.is-style-section-heading + .is-style-intro {
  margin: calc(var(--block-margin, 4rem) * -0.25) auto calc(var(--block-margin, 4rem) * 0.5);
  text-align: center;
}
h1.is-style-section-heading + .is-style-intro:last-child,
h2.is-style-section-heading + .is-style-intro:last-child,
h3.is-style-section-heading + .is-style-intro:last-child {
  margin-bottom: 0;
}

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

.wp-block-buttons {
  gap: 1em;
}

.wp-block-buttons.has-heading > .heading {
  margin-right: 1rem;
  font-weight: 600;
  font-size: clamp(1.667rem, 0.341vw + 1.593rem, 1.833rem);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .wp-block-buttons.has-heading > .heading {
    margin-right: 0;
    width: 100%;
    line-height: 1.1;
  }
}

.wp-block-buttons.is-style-tabs {
  --button-padding: .25rem 1rem;
  position: relative;
  z-index: 10;
  margin: calc(var(--block-margin, 4rem) * 1.5) 0 1em;
  padding: 0 0 0.5em;
  border-bottom: 2px solid #b1040e;
  font-size: 0.94em;
}
.wp-block-buttons.is-style-tabs:last-child {
  margin-bottom: 0;
}
.wp-block-buttons.is-style-tabs .wp-block-button .icon.arrow {
  display: none !important;
}
.wp-block-buttons.is-style-tabs .wp-block-button:not(.is-style-download) + .wp-block-button.is-style-download {
  justify-self: end;
  margin-left: auto;
}

button.wp-block-button {
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  font-size: inherit;
  border: 0;
}

.wp-block-button {
  position: relative;
  display: inline-block;
  --primary-color: #b1040e;
  --alternate-color: #ffffff;
  --arrow-hover-offset: 2px;
  font-family: var(--theme-font-sans-serif);
}
.wp-block-button .icon.arrow {
  height: 1.3em;
  --translate-arrow: var(--arrow-hover-offset) 0;
}
.wp-block-button .icon.arrow i {
  display: inline-block;
  margin-right: -0.5em;
  transition: translate 0.2s ease;
}
.wp-block-button .icon.arrow.up {
  --translate-arrow: 0 calc(var(--arrow-hover-offset) * -1);
}
.wp-block-button .icon.arrow.up-right, .wp-block-button .icon.arrow.up-right-popup {
  --translate-arrow: var(--arrow-hover-offset) calc(var(--arrow-hover-offset) * -1);
}
.wp-block-button .icon.arrow.up-right-popup:before {
  top: 1px;
  right: -3px;
}
.wp-block-button .icon.arrow.down-right {
  --translate-arrow: var(--arrow-hover-offset) calc(var(--arrow-hover-offset) * 1);
}
.wp-block-button .icon.arrow.down {
  --translate-arrow: 0 var(--arrow-hover-offset);
}
.wp-block-button .icon.arrow.down-left {
  --translate-arrow: calc(var(--arrow-hover-offset) * -1) calc(var(--arrow-hover-offset) * 1);
}
.wp-block-button .icon.arrow.left {
  --translate-arrow: calc(var(--arrow-hover-offset) * -1) 0;
}
.wp-block-button .icon.arrow.up-left {
  --translate-arrow: calc(var(--arrow-hover-offset) * -1) calc(var(--arrow-hover-offset) * -1);
}
.wp-block-button .icon.arrow.plus {
  --translate-arrow:0 0;
}
.wp-block-button .icon.arrow.plus i {
  transition: 0.2s ease;
}
.wp-block-button.has-left-arrow .icon.arrow {
  margin-right: 0;
  margin-left: -0.5em;
}
.wp-block-button.has-circle-arrow-style .icon.arrow i {
  display: inline-block;
  top: 50%;
  margin-top: -0.65em;
  width: 1.3em;
  height: 1.3em;
  line-height: 1.3em;
  border-radius: 50%;
  background: #b1040e;
}
.wp-block-button.has-circle-arrow-style:hover .icon.arrow i {
  background-color: #8c1515;
}
.wp-block-button.has-circle-arrow-style.is-style-fill .icon.arrow i {
  background-color: #8c1515;
}
.wp-block-button.has-circle-arrow-style.is-style-outline .icon.arrow {
  color: #ffffff;
}
.wp-block-button > .label {
  font-weight: 600;
}
.wp-block-button > .wp-block-button__link {
  display: inline-flex;
  align-items: start;
  gap: 0.5em;
  padding: var(--button-padding, 0.5em 1.5em);
  border-radius: 0;
  font-weight: 600;
  color: inherit;
  text-align: left;
  line-height: 1.3;
}
.clickable:hover .wp-block-button > .wp-block-button__link .icon.arrow i, .wp-block-button > .wp-block-button__link:hover .icon.arrow i {
  translate: var(--translate-arrow, none);
}
.clickable:hover .wp-block-button > .wp-block-button__link .icon.arrow.up-right-popup:before, .wp-block-button > .wp-block-button__link:hover .icon.arrow.up-right-popup:before {
  scale: 1.1;
}
.wp-block-button:not(.is-styled) > .wp-block-button__link {
  border: 2px solid transparent;
  background: #b1040e;
  color: #ffffff;
}
.wp-block-button:not(.is-styled) > .wp-block-button__link.has-palo-alto-green-background-color, .wp-block-button:not(.is-styled) > .wp-block-button__link.has-palo-verde-background-color {
  --hover-background-color: #2e2d29;
}
.wp-block-button:not(.is-styled) > .wp-block-button__link:hover {
  border-color: var(--hover-background-color, #8c1515) !important;
  background-color: var(--hover-background-color, #8c1515) !important;
}
.wp-block-button.on > .wp-block-button__link, .wp-block-button.switcher-on > .wp-block-button__link {
  border-color: #b1040e;
  background-color: #b1040e;
  color: #ffffff;
}
.wp-block-button.has-switcher {
  display: flex;
  align-items: stretch;
}
.wp-block-button.has-switcher > .wp-block-button__link {
  width: auto;
}
.wp-block-button.has-switcher > .wp-block-button__link:after {
  margin: 0 0 0 0.5em;
  transition: transform 0.2s 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: "\f0ab";
}
.wp-block-button.has-switcher.switcher-on > .wp-block-button__link:after {
  transform: rotate(180deg);
}
.wp-block-button.has-switcher .block-switcher {
  position: static;
  display: none;
  grid-template-columns: auto;
  grid-template-areas: "current";
}
.wp-block-button.has-switcher .block-switcher .label {
  display: none;
}
.wp-block-button.has-switcher .block-switcher .current {
  display: none;
  align-self: stretch;
  padding-left: 0.75em;
  padding-right: 0.75em;
  background: rgba(177, 4, 14, 0.25);
  border: 0;
  min-width: 0em;
}
.wp-block-button.has-switcher .block-switcher .current:after {
  display: none;
}
.wp-block-button.has-switcher .block-switcher ul {
  padding: 0.5em 0 0.75em 0;
  background: #b1040e;
  color: #ffffff;
  border: 0;
}
.wp-block-button.has-switcher .block-switcher ul > li {
  padding: var(--button-padding);
  background: none;
  color: inherit;
  border-bottom: 0;
}
.wp-block-button.has-switcher .block-switcher ul > li:before {
  display: none;
}
.wp-block-button.has-switcher .block-switcher ul > li:hover {
  text-decoration: underline;
}
@media (min-width: 1025px) {
  .wp-block-button.has-switcher.on .block-switcher, .wp-block-button.has-switcher.switcher-on .block-switcher {
    display: grid;
  }
  .wp-block-button.has-switcher.on .block-switcher {
    display: grid;
  }
  .wp-block-button.has-switcher.on .block-switcher .current {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .wp-block-button.has-switcher .block-switcher {
    display: grid;
  }
  .wp-block-button.has-switcher.on .block-switcher .current {
    display: flex;
    align-items: center;
  }
  .wp-block-button.has-switcher select {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.wp-block-button.is-style-outline > .wp-block-button__link {
  border: 2px solid currentColor;
  background-color: transparent;
  color: #2e2d29;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
  background-color: #8c1515;
  border-color: #8c1515;
  color: #ffffff;
}
.wp-block-button.is-style-text .icon.arrow i {
  --icon-size:10px;
  /*            
              background: $color-cardinal-bright-red;
              // margin-top:-11px;
              width:22px;
              height:22px;
              border:4px solid $color-cardinal-bright-red;
              border-radius:50%;
              color: white;
  */
}
.wp-block-button.is-style-text.has-circle-arrow-style .icon.arrow i {
  color: #ffffff;
}
.wp-block-button.is-style-text > .label {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
.wp-block-button.is-style-text > .wp-block-button__link {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
.wp-block-button.is-style-text > .wp-block-button__link:hover {
  color: #b1040e;
}
.has-background .wp-block-button.is-style-text > .wp-block-button__link:hover {
  color: inherit;
}
.wp-block-button.is-style-download > .wp-block-button__link {
  padding: 0;
  background: none;
  border: 0;
  color: #2e2d29;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.wp-block-button.is-style-download > .wp-block-button__link:before {
  --icon-size: 1.75em;
  font-size: 14px;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  background: #b1040e;
  color: #ffffff;
  border-radius: 50%;
  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: "\f019";
  display: inline-flex;
  justify-content: center;
}
.wp-block-button.is-style-download > .wp-block-button__link:hover {
  color: #b1040e;
}
.wp-block-button.load-more {
  border: 0;
}
.wp-block-button.load-more.done {
  --hover-background-color: #ffffff;
  cursor: default;
}
.wp-block-button.load-more.done > .wp-block-button__link {
  cursor: inherit;
  background: inherit;
  color: inherit;
  border: 0;
}
.wp-block-button.expand-all {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

.wp-block-image {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
}
.wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-image:last-child {
  margin-bottom: 0;
}
.wp-block-image.alignright {
  margin-left: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-image.alignleft {
  margin-right: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
@media screen and (max-width: 767px) {
  .wp-block-image.alignright, .wp-block-image.alignleft {
    margin-left: auto;
    margin-right: auto;
    float: none;
    margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
  }
}
.wp-block-image img {
  display: block;
  width: 100%;
}
.wp-block-image figcaption {
  display: block;
  margin: 0.5em 0 0 auto;
  text-align: right;
  font-size: 0.8em;
  line-height: 1;
  max-width: 500px;
}

.wp-block-image.is-style-icon {
  --icon-size: 100px;
  margin: 0;
}
.wp-block-image.is-style-icon img {
  max-width: var(--icon-size);
  max-height: var(--icon-size);
  margin: 0 auto;
}

.wp-block-group {
  position: relative;
  margin-top: calc(var(--block-margin, 4rem) * var(--block-margin-multiplier, 1));
  margin-bottom: calc(var(--block-margin, 4rem) * var(--block-margin-multiplier, 1));
}
.wp-block-group.is-position-sticky {
  position: sticky;
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-separator + .wp-block-group, h1 + .wp-block-group, h2 + .wp-block-group, h3 + .wp-block-group, h4 + .wp-block-group, h5 + .wp-block-group, h6 + .wp-block-group, .heading + .wp-block-group {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

.wp-block-group.is-style-tab-content {
  display: none;
  margin-bottom: calc(var(--block-margin, 4rem) * 1.5);
}
.wp-block-group.is-style-tab-content.on {
  display: block;
}

.wp-block-group.paging {
  margin-top: calc(var(--block-margin, 4rem) * 2);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "prev . next";
}
.wp-block-group.paging .post-navigation-link-previous {
  grid-area: prev;
}
.wp-block-group.paging .post-navigation-link-next {
  grid-area: next;
}
@media screen and (max-width: 600px) {
  .wp-block-group.paging {
    margin-top: calc(var(--block-margin, 4rem) * 1);
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
  }
  .wp-block-group.paging .post-navigation-link__label {
    display: none;
  }
  .wp-block-group.paging .post-navigation-link-previous > a .post-navigation-link__title {
    display: flex;
    flex-direction: column;
  }
  .wp-block-group.paging .post-navigation-link-next {
    text-align: right;
    margin: 0 !important;
  }
  .wp-block-group.paging .post-navigation-link-next > a .post-navigation-link__title {
    display: flex;
    flex-direction: column-reverse;
  }
}

.wp-block-group.has-background {
  padding: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-group.has-background:not(.is-style-full-width) {
  padding: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-group.has-background.is-style-full-width {
  padding: calc(var(--block-margin, 4rem) * 1) var(--gutter-right) calc(var(--block-margin, 4rem) * 1) var(--gutter-left);
}
.page-blocks > .wp-block-group.has-background:last-child {
  margin-bottom: calc(var(--page-blocks-padding-bottom) * -1);
}

.wp-block-group.has-background-circle {
  --circle-size: 300px;
  --circle-top:0px;
}

@media screen and (max-width: 500px) {
  .wp-block-group.is-full-width-mobile {
    width: calc(100% + 8.06rem);
    left: calc(var(--wp--preset--spacing--80) * -1 + var(--gutter-left));
  }
}

.wp-block-group.bottom-promotions {
  gap: calc(var(--block-margin, 4rem) * 0.75);
}
.wp-block-group.bottom-promotions > .wp-block-theme-blocks-promotion {
  padding-left: calc(var(--block-margin, 4rem) * 0.5);
  padding-right: calc(var(--block-margin, 4rem) * 0.5);
  flex-basis: 100%;
}
.wp-block-group.bottom-promotions > .wp-block-theme-blocks-promotion .block-content {
  max-width: 600px;
}
.wp-block-group.bottom-promotions > .wp-block-theme-blocks-promotion p {
  font-size: 1em;
  font-family: var(--theme-font-sans-serif);
}
.page-blocks > .wp-block-group.bottom-promotions:last-child {
  margin-bottom: calc(var(--page-blocks-padding-bottom) * -1 + calc(var(--block-margin, 4rem) * 1));
}
@media screen and (min-width: 500px) {
  .page-blocks > .wp-block-group.bottom-promotions:last-child {
    margin-bottom: calc(var(--page-blocks-padding-bottom) * -1 - calc(var(--block-margin, 4rem) * 2));
  }
}
@media screen and (min-width: 901px) {
  .page-blocks > .wp-block-group.bottom-promotions:last-child > .wp-block-theme-blocks-promotion:last-child {
    translate: 0px calc(var(--block-margin, 4rem) * 1);
  }
}
.wp-block-group.bottom-promotions.equal-cards {
  padding: 0 calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 1);
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  .wp-block-group.bottom-promotions {
    flex-direction: column;
    padding: calc(var(--block-margin, 4rem) * 1) 0 0 !important;
    margin: 0 0 calc(var(--block-margin, 4rem) * 0.75);
  }
}

.wp-block-group.highlight > .wp-block-image {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-group.highlight > .wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-group.highlight > .wp-block-image:last-child {
  margin-bottom: 0;
}

.wp-block-gallery {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  /*
      &,
      &.is-layout-flex {
          display:grid !important;
          figure.wp-block-image {
              width:100% !important;
              img {
                  width:100%;
              }
          }
      }
      --gallery-block--gutter-size: 1rem;

      grid-template-columns: repeat(var(--block-columns, 3), 1fr);

      grid-auto-flow: row;

  */
}
.wp-block-gallery:first-child {
  margin-top: 0;
}
.wp-block-gallery:last-child {
  margin-bottom: 0;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: relative;
  bottom: auto;
  left: auto;
  text-align: right;
  background: none;
  color: inherit;
  padding: 0;
  margin: 1em 0 0;
  max-height: none;
  width: auto;
  margin-left: auto;
}
.wp-block-gallery.has-nested-images.is-style-full-width figure.wp-block-image figcaption {
  padding: 0 1rem;
}

/*
.wp-block-gallery-wrap.full-width {
    padding-left:block-margin(1);
    padding-right:block-margin(1);
    > .wp-block-gallery {
        --wp--style--gallery-gap-default: .5rem;
        max-width:1024px;
        margin-left:auto;
        margin-right:auto;
    }
    @media screen and (max-width:$menu-breakpoint) {
        padding-left:var(--gutter-left);
        padding-right:var(--gutter-right);
    }
}
.wp-block-gallery.columns-1 {
    --block-columns: 1;

}
.wp-block-gallery.columns-2 {
    --block-columns: 2;
    @media screen and (max-width:$mobile-breakpoint) {
        --block-columns: 1;        
    }
}
.wp-block-gallery.columns-default,
.wp-block-gallery.columns-3 {
    --gallery-block-gutter-size: 3;
    @media screen and (max-width:$mobile-breakpoint) {
        --block-columns: 1;

    }
}
.wp-block-gallery.columns-4 {
    --block-columns: 4;
    @media screen and (max-width:1024px) {
        --block-columns: 2;

    }
    @media screen and (max-width:$mobile-breakpoint) {
        --block-columns: 1;        
    }
}
*/
.wp-block-gallery.is-style-carousel {
  margin-top: calc(var(--block-margin, 4rem) * 0.75);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.75);
  --aspect-ratio: 2/3;
  position: relative;
  display: block;
}
.wp-block-gallery.is-style-carousel:first-child {
  margin-top: 0;
}
.wp-block-gallery.is-style-carousel:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .main-content.single-post > .layout > .page-blocks > .wp-block-gallery.is-style-carousel {
    margin-left: calc(var(--block-margin, 4rem) * -2);
    margin-right: calc(var(--block-margin, 4rem) * -2);
  }
}
.wp-block-gallery.is-style-carousel .block-slides {
  position: relative;
  display: block;
}
.wp-block-gallery.is-style-carousel .block-slides > figcaption {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75em;
  font-size: 0.8em;
  line-height: 1.3;
  text-align: left;
  font-style: normal;
  background: #3c3c3c;
  color: #ffffff;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image {
  position: relative;
  white-space: normal;
  display: block;
  margin: 0;
  background: #d4d1d1;
  /*
  .image {
      position:relative;
      padding:0 0 calc(var(--aspect-ratio) * 100%);

      img {
          display:block;
          position:absolute;
          top:0;
          left:0;
          width:100%;
          height:100%;
          margin:0;
          padding:0;
          object-fit:cover;
          object-position:50% 50%;
          max-height:75vh;


      }
  }
  */
  /*
  height:0;
  width:auto;


  */
}
.wp-block-gallery.is-style-carousel figure.wp-block-image img {
  display: block;
  max-height: 75vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-height: 700px) {
  .wp-block-gallery.is-style-carousel figure.wp-block-image img {
    max-height: 525px;
  }
}
.wp-block-gallery.is-style-carousel figure.wp-block-image figcaption {
  display: none;
}
.wp-block-gallery.is-style-carousel .slick-track {
  display: flex;
  align-items: flex-start;
}
.wp-block-gallery.is-style-carousel .pager {
  position: absolute;
  z-index: 1;
  top: var(--image-height, calc(100% - 1em));
  right: 0;
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
}
.wp-block-gallery.is-style-carousel .nav:not(.slick-arrow) {
  display: none;
}
.wp-block-gallery.is-style-carousel .captions {
  display: block;
  min-height: 2em;
  margin: 0.5rem 0 0 auto;
  padding: 0 3em 0 0;
  max-width: 500px;
  font-size: 0.8rem;
  text-align: right;
}
.wp-block-gallery.is-style-carousel .slick-dots {
  position: absolute;
  z-index: 10000;
  bottom: 1em;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}
.wp-block-gallery.is-style-carousel .slick-arrow {
  --arrow-hover-offset:0px;
  position: absolute;
  top: calc(var(--image-height) / 2);
  transform: translate(0, -50%);
}
.wp-block-gallery.is-style-carousel .slick-arrow.next {
  left: 100%;
  margin: 0 0 0 calc(var(--arrow-size) * 2 + var(--arrow-hover-offset));
}
.wp-block-gallery.is-style-carousel .slick-arrow.prev {
  right: 100%;
  margin: 0 calc(var(--arrow-size) * 2 + var(--arrow-hover-offset)) 0 0;
}
.wp-block-gallery.is-style-carousel .slick-arrow:not(.slick-disabled):hover {
  --arrow-hover-offset:3px;
}
@media screen and (max-width: 1249px) {
  .wp-block-gallery.is-style-carousel .slick-arrow.next {
    margin-left: calc((var(--arrow-size)) + var(--arrow-hover-offset));
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.prev {
    margin-right: calc((var(--arrow-size)) + var(--arrow-hover-offset));
  }
}
@media screen and (max-width: 980px) {
  .wp-block-gallery.is-style-carousel {
    max-width: none;
    /*
    .slick-arrow {
        //display: none !important;
        top:0;
        transform:none;
        height: var(--image-height);
        line-height: var(--image-height);
        display:flex;
        align-items:center;
        justify-content:center;

        &.next {
            left:auto;
            right: 0;
            padding-left:2em;
            padding-right:1.5em;
            margin-left:0;
        }
        &.prev {
            right:auto;
            left:0;
            padding-right:2em;
            padding-left:1.5em;
            margin-right:0;
        }
    }
        */
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.next {
    margin-left: 1rem;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.prev {
    margin-right: 1rem;
  }
  .wp-block-gallery.is-style-carousel figure.wp-block-image .image {
    border-radius: 0;
  }
  .wp-block-gallery.is-style-carousel figure.wp-block-image figcaption {
    display: none;
    padding-left: 4.6875vw;
    padding-right: calc(4.6875vw + 5em);
  }
  .wp-block-gallery.is-style-carousel .captions {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-gallery.is-style-carousel .slick-arrow.next {
    margin-left: calc(var(--arrow-size) / -2);
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.prev {
    margin-right: calc(var(--arrow-size) / -2);
  }
}

.wp-block-gallery.is-style-logos {
  --gallery-block--gutter-size: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.wp-block-gallery.is-style-logos .wp-block-image {
  width: auto;
  max-width: 120px;
  max-height: 80px;
}
.wp-block-gallery.is-style-logos .wp-block-image img {
  max-width: 120px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-gallery.is-style-logos figcaption {
  display: none;
}

.wp-block-quote {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 0.25) calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 1.5);
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 700;
  font-size: clamp(1rem, 0.91vw + 0.803rem, 1.444rem);
  font-optical-sizing: none;
  line-height: 1.4;
}
.wp-block-quote.has-cardinal-bright-red-color, .wp-block-quote.has-cardinal-digital-red-color, .wp-block-quote.has-cardinal-red-color, .wp-block-quote.has-palo-alto-green-color {
  --highlight-color: #a6dac8;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote:before {
  content: " ";
  display: block;
  position: absolute;
  top: -0.7rem;
  left: -1rem;
  width: 3rem;
  height: 3rem;
  background: var(--highlight-color, #f9a44a);
}
.wp-block-quote p {
  margin-block-end: 0.75rem;
}
.wp-block-quote cite {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}
@media screen and (max-width: 767px) {
  .wp-block-quote {
    margin-left: 1rem;
  }
}
.wp-block-quote.is-style-image {
  padding-left: 0;
  display: grid;
  grid-template-areas: "image quote" "image cite";
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .wp-block-quote.is-style-image {
    grid-template-areas: "image" "quote" "cite";
  }
}
.wp-block-quote.is-style-image:before {
  z-index: -1;
}
.wp-block-quote.is-style-image .block-image {
  grid-area: image;
  margin-right: 1.5rem;
}
.wp-block-quote.is-style-image .block-image img {
  width: 175px;
  height: 175px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.wp-block-quote.is-style-image p {
  grid-area: quote;
}
.wp-block-quote.is-style-image .cite {
  grid-area: cite;
}

.wp-block-embed {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .main-content.post .wp-block-embed {
    margin-right: calc((var(--side-width) / 2 + var(--side-gap)) * -1);
  }
  .main-content.post.location .wp-block-embed {
    margin-right: 0;
  }
}

.wp-block-embed.is-type-video {
  --block-border-radius: 1rem;
  border-radius: var(--block-border-radius);
  background: #000;
}
.wp-block-embed.is-type-video.wp-embed-aspect-9-16 {
  --aspect-ratio: 1.777;
}
.wp-block-embed.is-type-video.wp-embed-aspect-4-3 {
  --aspect-ratio: .75;
}
.wp-block-embed.is-type-video.wp-embed-aspect-1-1 {
  --aspect-ratio: 1;
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper {
  position: relative;
  padding: 0 0 calc(var(--aspect-ratio, 0.5625) * 100%);
  /*
  &:before {
      content:' ';
      display:block;
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:100%;
      border-radius:var(--header-border-radius);
      background:rgba($color-black, .5);

  }
  > .media-embed,
  > .media-embed > 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 > .wp-block-embed__wrapper > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: var(--block-border-radius);
}

.wp-block-embed.is-type-video.has-preview-poster {
  /*
  .page-blocks > & {
      max-width:800px;
      margin-left:auto;
      margin-right:auto;
  }
  */
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--block-border-radius);
  background: rgba(46, 45, 41, 0.5);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > .media-embed,
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > .media-embed > iframe {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--block-border-radius);
}
.wp-block-embed.is-type-video.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 {
  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 {
  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(--block-border-radius);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.wp-block-embed.is-type-video.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: #b1040e;
  color: #ffffff;
  font-size: 50px;
  border-radius: 50%;
  border: 0px solid currentColor;
  text-align: center;
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
  text-indent: 5px;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #b1040e;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:before, .wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  z-index: 2;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed img {
  opacity: 0.25;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed:after {
  display: none;
}
.wp-block-embed.is-type-video.has-preview-poster > figcaption {
  margin: 0;
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 1;
  font-size: 0.8em;
  line-height: 1.3;
}
.wp-block-embed.is-type-video.has-preview-poster + .wp-block-button.play {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
  text-align: center;
}
.wp-block-embed.is-type-video.has-preview-poster + .wp-block-button.play:last-child {
  margin-bottom: 0;
}

.wp-block-separator {
  margin-block-start: calc(var(--block-margin, 4rem) * 0.7);
  margin-block-end: calc(var(--block-margin, 4rem) * 0.7);
  width: 100%;
  border: 2px solid currentColor;
  border-width: 2px 0 0;
  height: 0;
  transition: 0.4s ease-in-out;
}
.wp-block-separator.trigger-on-scroll {
  width: 0;
}
.wp-block-separator.trigger-on-scroll.appeared {
  width: 100%;
}

:where(body .page-blocks) ul, :where(body .page-blocks) ol {
  margin-block-start: 2rem;
  margin-block-end: 2rem;
}
:where(body .page-blocks) ul:first-child, :where(body .page-blocks) ol:first-child {
  margin-block-start: 0;
}
:where(body .page-blocks) ul:last-child, :where(body .page-blocks) ol:last-child {
  margin-block-end: 0;
}
:where(body .page-blocks) ul > li, :where(body .page-blocks) ol > li {
  margin-block-end: 0.5em;
}
:where(body .page-blocks) ul > li:last-child, :where(body .page-blocks) ol > li:last-child {
  margin-block-end: 0;
}
:where(body .page-blocks) ul > li::marker {
  color: #b1040e;
}

ul.is-style-unformatted, ol.is-style-unformatted {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.is-style-unformatted > li, ol.is-style-unformatted > li {
  margin-block-end: 1rem;
}
ul.is-style-unformatted > li:last-child, ol.is-style-unformatted > li:last-child {
  margin-block-end: 0;
}

.wp-block-columns {
  position: relative;
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-columns:first-child {
  margin-top: 0;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 781px) {
  .wp-block-columns {
    display: block;
  }
  .wp-block-columns .wp-block-column {
    margin-left: auto;
    margin-right: auto;
  }
}
.wp-block-columns > .wp-block-column {
  position: relative;
}
@media screen and (min-width: 768px) {
  .wp-block-columns > .wp-block-column.has-padding-left {
    padding-left: 2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-left > .wp-block-image {
    margin-left: -2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-right {
    padding-right: 2em;
  }
  .wp-block-columns > .wp-block-column.has-padding-right > .wp-block-image {
    margin-right: -2em;
  }
}
@media screen and (max-width: 781px) {
  .wp-block-columns.has-no-child-margin-mobile {
    gap: 0.5rem;
  }
  .wp-block-columns.has-no-child-margin-mobile > .wp-block-column ul {
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .wp-block-columns.mobile-carousel .wp-block-column.slick-slide {
    margin-left: 0;
  }
  .wp-block-columns.mobile-carousel .slick-list {
    position: relative;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
  }
  .wp-block-columns.mobile-carousel .slick-slide {
    padding: 4.6875vw;
  }
}

.wp-block-columns.is-style-hub {
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 0;
  transition: 0.2s ease;
}
.wp-block-columns.is-style-hub > .wp-block-column:first-child {
  background: url(images/banner.png) no-repeat 60% 100%;
  background-size: auto 100%;
  border-bottom-left-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block-columns.is-style-hub > .wp-block-column:first-child .wp-block-image {
  width: 50%;
  height: auto;
  background-color: #b1040e;
  padding: 1.25rem;
  border-radius: 50%;
  margin-bottom: 0;
}
@media screen and (max-width: 1023px) {
  .wp-block-columns.is-style-hub > .wp-block-column:first-child {
    background-position-x: 100%;
    background-size: 100% 100%;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 0;
  }
  .wp-block-columns.is-style-hub > .wp-block-column:first-child .wp-block-image {
    width: 30%;
    padding: 1rem;
    margin: 1rem auto;
  }
}
.wp-block-columns.is-style-hub > .wp-block-column:nth-child(2) {
  padding: 2.5em 2.375em 2.5em 0;
}
.wp-block-columns.is-style-hub > .wp-block-column:nth-child(2) h3 {
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
}
.wp-block-columns.is-style-hub > .wp-block-column:nth-child(2) h3 a {
  text-decoration: none;
}
.wp-block-columns.is-style-hub > .wp-block-column:nth-child(2) h3::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: "\f0a9";
  color: #b1040e;
  font-size: 28px;
  margin-left: 0.5rem;
  transition: 0.2s ease;
}
@media screen and (max-width: 1023px) {
  .wp-block-columns.is-style-hub > .wp-block-column:nth-child(2) {
    padding: 0 2rem 2rem 1.5rem;
  }
}
.wp-block-columns.is-style-hub:hover {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.15);
}
.wp-block-columns.is-style-hub:hover .wp-block-column h3::after {
  transform: translateX(10px);
}
@media screen and (max-width: 1023px) {
  .wp-block-columns.is-style-hub {
    flex-wrap: wrap !important;
  }
  .wp-block-columns.is-style-hub:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}

@media screen and (max-width: 767px) {
  .is-content-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .is-content-centered > * {
    text-align: center;
  }
}
.wp-block-post-navigation-link.post-navigation-link-next {
  text-align: left;
}
.wp-block-post-navigation-link.post-navigation-link-next .icon {
  margin-left: 0.5em;
}
.wp-block-post-navigation-link.post-navigation-link-next:hover .icon {
  transform: translate(3px, 0);
}
.wp-block-post-navigation-link.post-navigation-link-previous {
  text-align: left;
}
.wp-block-post-navigation-link.post-navigation-link-previous .post-navigation-link__label {
  text-align: right;
}
.wp-block-post-navigation-link.post-navigation-link-previous .icon {
  margin-right: 0.5em;
}
.wp-block-post-navigation-link.post-navigation-link-previous:hover .icon {
  transform: translate(-3px, 0);
}
.wp-block-post-navigation-link a {
  text-decoration: none;
}
.wp-block-post-navigation-link a .icon {
  transition: 0.2s ease;
}
.wp-block-post-navigation-link a:hover .icon {
  color: #b1040e;
}
.wp-block-post-navigation-link .post-navigation-link__label {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  color: #767676;
}
.wp-block-post-navigation-link .post-navigation-link__title {
  font-size: clamp(1rem, 0.797vw + 0.827rem, 1.389rem);
  font-weight: 600;
}

.wp-block-media-text {
  gap: var(--gap, calc(var(--block-margin, 4rem) * 1));
}
.wp-block-media-text.has-overflow-hidden {
  overflow: hidden;
}
.wp-block-media-text img, .wp-block-media-text video {
  border: 0;
}
.wp-block-media-text > .wp-block-media-text__content {
  padding-left: 0;
  padding-right: 0;
}
.wp-block-media-text > .wp-block-media-text__media img {
  aspect-ratio: var(--aspect-ratio, 1.25);
  width: 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-media-text.has-circle-crop > .wp-block-media-text__media img {
  border-radius: 50%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-media-text.has-background:not(.is-style-full-width) .wp-block-media-text__media {
  align-self: stretch;
}
.wp-block-media-text.has-background:not(.is-style-full-width) .wp-block-media-text__media img {
  min-height: 100%;
}
.wp-block-media-text.has-background:not(.is-style-full-width):not(.has-media-on-the-right) > .wp-block-media-text__content {
  padding-right: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-media-text.has-background:not(.is-style-full-width).has-media-on-the-right > .wp-block-media-text__content {
  padding-left: calc(var(--block-margin, 4rem) * 0.5);
}
@media screen and (max-width: 767px) {
  .wp-block-media-text {
    display: block;
  }
  .wp-block-media-text > .wp-block-media-text__content {
    grid-area: content;
    grid-column: auto;
    grid-row: auto;
    padding: calc(var(--block-margin, 4rem) * 0.25) 0 0 0;
  }
  .wp-block-media-text:not(.has-mobile-stacked-media) > .wp-block-media-text__media {
    grid-area: media;
    grid-column: auto;
    grid-row: auto;
    order: -1;
    display: block;
    width: 100%;
    max-width: 409.6px;
    justify-content: start;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-media-text.is-stacked-on-mobile {
    gap: 1rem;
  }
  .wp-block-media-text.is-stacked-on-mobile > .wp-block-media-text__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.wp-block-media-text.is-style-full-width {
  margin-top: calc(var(--block-margin, 4rem) * 1);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
  padding: 0 var(--gutter-right) 0 var(--gutter-left);
}
.wp-block-media-text.is-style-full-width:first-child {
  margin-top: 0;
}
.wp-block-media-text.is-style-full-width:last-child {
  margin-bottom: 0;
}
.wp-block-media-text.is-style-full-width.has-background:not(.is-image-fill) {
  padding-top: calc(var(--block-margin, 4rem) * 1);
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
}
@media screen and (min-width: 768px) {
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill.has-media-on-the-right > .wp-block-media-text__media {
    margin-right: calc(var(--gutter-right) * -1);
  }
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill:not(.has-media-on-the-right) > .wp-block-media-text__media {
    margin-left: calc(var(--gutter-left) * -1);
  }
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill > .wp-block-media-text__content {
    padding-top: calc(var(--block-margin, 4rem) * 1);
    padding-bottom: calc(var(--block-margin, 4rem) * 1);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill > .wp-block-media-text__media {
    width: auto;
    display: block;
    max-width: none;
  }
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill > .wp-block-media-text__media img {
    width: auto;
  }
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill > .wp-block-media-text__media {
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-right) * -1);
  }
  .wp-block-media-text.is-style-full-width.has-background.is-image-fill > .wp-block-media-text__content {
    padding-top: calc(var(--block-margin, 4rem) * 0.5);
  }
}
.wp-block-media-text.is-style-full-width.has-background + .wp-block-media-text.is-style-full-width.has-background.is-style-full-width {
  margin-top: calc(var(--block-margin, 4rem) * -1);
}
.wp-block-media-text.is-style-full-width > .wp-block-media-text__media {
  align-self: stretch;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: start;
}
.wp-block-media-text.is-style-full-width > .wp-block-media-text__media img {
  aspect-ratio: var(--aspect-ratio, 1.25);
  width: 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-media-text.is-style-full-width > .wp-block-media-text__media video {
  display: block;
  width: 80%;
  margin: 0 auto;
}
.wp-block-media-text.is-style-full-width.has-circle-crop > .wp-block-media-text__media img {
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .wp-block-media-text.is-style-full-width {
    display: block;
    flex-direction: column;
    grid-template-columns: auto !important;
    grid-template-areas: "media" "content";
  }
  .wp-block-media-text.is-style-full-width:after {
    content: " ";
    display: block;
    clear: both;
  }
  .wp-block-media-text.is-style-full-width.has-mobile-stacked-media > .wp-block-media-text__media {
    display: block;
    margin: 0 auto;
    padding: 0 var(--gutter-right) 0 var(--gutter-left);
  }
  .wp-block-media-text.is-style-full-width.has-mobile-stacked-media > .wp-block-media-text__media img {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 800px;
  }
  .wp-block-media-text.is-style-full-width.has-mobile-stacked-media > .wp-block-media-text__content {
    padding-top: 1rem;
  }
  .wp-block-media-text.is-style-full-width.is-image-fill > .wp-block-media-text__media {
    min-height: 60vw;
  }
}

.wp-block-media-text.has-background:not(.is-style-full-width) {
  --border-radius: 0rem;
  border-radius: var(--border-radius);
}
.wp-block-media-text.has-background:not(.is-style-full-width) > .wp-block-media-text__content {
  padding-top: calc(var(--block-margin, 4rem) * 1);
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
}
@media screen and (min-width: 601px) {
  .wp-block-media-text.has-background:not(.is-style-full-width) > .wp-block-media-text__media {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }
  .wp-block-media-text.has-background:not(.is-style-full-width) > .wp-block-media-text__media img {
    border-radius: var(--border-radius) 0 0 var(--border-radius);
  }
  .wp-block-media-text.has-background:not(.is-style-full-width).has-media-on-the-right > .wp-block-media-text__media {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
  .wp-block-media-text.has-background:not(.is-style-full-width).has-media-on-the-right > .wp-block-media-text__media img {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-media-text.has-background:not(.is-style-full-width) > .wp-block-media-text__media {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
  .wp-block-media-text.has-background:not(.is-style-full-width) > .wp-block-media-text__media img {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
  }
}

.wp-block-theme-blocks-progress-bar {
  --adjustedTarget: calc(var(--target) - 20px);
  --progress: var(--adjustedTarget, 100%);
  --trackColor: var(--backgroundTrack, lightgray);
  max-width: 900px;
  width: 100%;
  height: 30px;
  display: block;
  position: relative;
  margin: 6rem auto;
}
@media screen and (max-width: 900px) {
  .wp-block-theme-blocks-progress-bar.filled-bar-cursor {
    transform: scale(0.85) !important;
    transform-origin: center;
    margin-left: -2rem !important;
  }
}
@media screen and (max-width: 480px) {
  .wp-block-theme-blocks-progress-bar.filled-bar-cursor {
    transform: scale(0.75) !important;
  }
}
.wp-block-theme-blocks-progress-bar::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--backgroundTrack);
  z-index: 1;
  border-radius: 30px;
}
.wp-block-theme-blocks-progress-bar .progress {
  background: var(--progressBar);
  height: 102%;
  transition: width 2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  animation: progress-bar-fill 2s ease-in-out;
  z-index: 2;
}
.wp-block-theme-blocks-progress-bar .copy {
  position: absolute;
  top: 100%;
  right: 0;
  display: inline-flex;
  gap: 1rem;
}
.wp-block-theme-blocks-progress-bar .copy .total {
  display: none;
}
.wp-block-theme-blocks-progress-bar .cursor {
  position: absolute;
  top: -25px;
  left: var(--progress);
  width: 75px;
  height: 80px;
  margin: 4px 0 0 -50px;
  background-size: contain;
  animation: progress-owl-bar-fill 2s ease-in-out;
  z-index: 3;
}
.wp-block-theme-blocks-progress-bar .cursor .tooltip {
  display: none;
}
.wp-block-theme-blocks-progress-bar .wp-block-theme-blocks-count-up {
  top: 30px;
  width: -moz-max-content;
  width: max-content;
}

@keyframes progress-bar-fill {
  from {
    width: 0;
  }
  to {
    width: var(--progress);
  }
}
@keyframes progress-owl-bar-fill {
  from {
    left: 0;
  }
  to {
    left: var(--progress);
  }
}
.wp-block-theme-blocks-progress-bar .owl {
  content: " ";
  display: block;
  position: absolute;
  top: -25px;
  left: var(--progress);
  width: 90px;
  height: 80px;
  margin: 4px 0 0 -60px;
  background: no-repeat 50% 50%;
  background-size: contain;
  animation: progress-owl-bar-fill 2s ease-in-out;
  z-index: 3;
}
.wp-block-theme-blocks-progress-bar .owl.animating .frame.fly {
  --owl-opacity:1;
}
.wp-block-theme-blocks-progress-bar .owl.animating.landed .frame.fly {
  visibility: hidden;
}
.wp-block-theme-blocks-progress-bar .owl.animating.landed .frame.point {
  visibility: visible;
}
.wp-block-theme-blocks-progress-bar .owl.animating.throwing .frame.point {
  visibility: hidden;
}
.wp-block-theme-blocks-progress-bar .owl.animating.throwing .frame.trash {
  visibility: visible;
}
.wp-block-theme-blocks-progress-bar .owl .frame {
  --owl-opacity:1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat;
  background-position: var(--owl-position, 50% 0%);
  background-image: var(--owl-image);
  background-size: auto var(--owl-scale, 100%);
  visibility: hidden;
}
.wp-block-theme-blocks-progress-bar .owl .frame.fly {
  visibility: visible;
  transition: opacity 0.4s ease-in-out;
  opacity: var(--owl-opacity, 0);
  --owl-scale: 85%;
  --owl-image:url(images/owls/fly.png);
}
.wp-block-theme-blocks-progress-bar .owl .frame.point {
  --owl-scale: 100%;
  --owl-image:url(images/owls/point-right.png);
  --owl-position: 65% 0%;
}
.wp-block-theme-blocks-progress-bar .owl .frame.trash {
  --owl-scale: 90%;
  --owl-image:url(images/owls/with-trash.png);
}

@media (max-width: 768px) {
  .wp-block-theme-blocks-progress-bar .cursor {
    --target: clamp(0%, var(--target), 79%);
  }
}
.wp-block-theme-blocks-progress-bar .progress {
  animation: progress-bar-fill 2s ease-in-out forwards;
}

.wp-block-theme-blocks-count-up {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-weight: 800;
  letter-spacing: normal;
  font-optical-sizing: none;
  font-size: var(--block-count-up-font-size, 3.33rem);
  animation: progress-owl-bar-fill 2s ease-in-out forwards;
  display: inline-block;
  line-height: 1.25;
}
@media screen and (max-width: 761px) {
  .wp-block-theme-blocks-count-up {
    font-size: 2.25rem;
  }
}
.wp-block-theme-blocks-count-up .block-prefix {
  line-height: 1;
}
.wp-block-theme-blocks-count-up .block-count {
  position: relative;
}
.wp-block-theme-blocks-count-up .block-suffix {
  font-size: 0.7em;
}

.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.alt {
  height: 1rem;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.alt .cursor::before {
  background: #175e54;
  border-color: #175e54;
  top: 2px;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.alt .progress {
  height: calc(1rem + 2px);
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.alt .block-statistics .wp-block-theme-blocks-count-up {
  color: #fff !important;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.alt .block-statistics .wp-block-theme-blocks-count-up.appeared {
  color: #fff !important;
}

.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl::before {
  border: 1px solid rgba(0, 0, 0, 0.0784313725);
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl .cursor {
  transition: 0.25s all ease-in-out;
  opacity: 0;
  width: 125px;
  margin: 4px 0 0 var(--cursorMarginRight);
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl .cursor img {
  top: -15px;
  position: relative;
  transform: translateX(-7%);
  transition: 1.25s all ease-in-out 0.5s;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl .cursor:before {
  content: "";
  position: absolute;
  width: var(--cursorWidth, 130px);
  height: 30px;
  background: #fff;
  border: 3px solid var(--progressBar);
  z-index: -1;
  right: 1.5rem;
  top: 5px;
  height: 66%;
  border-radius: 100px;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl .block-statistics .wp-block-theme-blocks-count-up {
  position: absolute;
  z-index: 3;
  font-size: 2rem !important;
  color: var(--progressBar);
  pointer-events: none;
  opacity: 0;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl .block-statistics .wp-block-theme-blocks-count-up.appeared {
  opacity: 1;
  transform: translate(-2em, -2.2rem);
  font-size: 1.8rem !important;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.appeared .cursor {
  opacity: 1;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom-owl.appeared .cursor img {
  transform: translateX(11%);
}

.wp-block-theme-blocks-progress-bar.is-stanford-custom .cursor {
  width: 120px;
  height: 120px;
  top: -46px;
}
.wp-block-theme-blocks-progress-bar.is-stanford-custom .block-statistics .wp-block-theme-blocks-count-up.appeared {
  position: absolute;
  z-index: 3;
  transform: translate(-0.6em, -2.5rem);
  font-size: 2.35em !important;
  pointer-events: none;
}

.wp-block-theme-blocks-progress-bar.has-no-counter .wp-block-theme-blocks-count-up {
  display: none;
}

.wp-block-theme-blocks-progress-bar.has-small-text .wp-block-theme-blocks-count-up {
  font-size: 2rem;
}
@media screen and (max-width: 761px) {
  .wp-block-theme-blocks-progress-bar.has-small-text .wp-block-theme-blocks-count-up {
    font-size: 1.5rem;
  }
}

.wp-block-theme-blocks-progress-bar.has-tooltip .cursor .tooltip,
.wp-block-theme-blocks-progress-bar.has-fixed-tooltip .cursor .tooltip {
  display: block;
  font-size: 2rem;
  position: absolute;
  bottom: 120%; /* place above the cursor */
  left: 50%;
  transform: translateX(-50%);
  background: #2e2d29; /* match bar color or use theme var */
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.875rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.wp-block-theme-blocks-progress-bar.has-tooltip .cursor .tooltip::after,
.wp-block-theme-blocks-progress-bar.has-fixed-tooltip .cursor .tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: #2e2d29 transparent transparent transparent;
}
.wp-block-theme-blocks-progress-bar.has-tooltip .cursor:hover .tooltip, .wp-block-theme-blocks-progress-bar.has-tooltip .cursor:focus .tooltip,
.wp-block-theme-blocks-progress-bar.has-fixed-tooltip .cursor:hover .tooltip,
.wp-block-theme-blocks-progress-bar.has-fixed-tooltip .cursor:focus .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

.wp-block-theme-blocks-progress-bar.has-fixed-tooltip .cursor .tooltip {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

.cursor.show-tooltip .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}/*# sourceMappingURL=style.css.map */