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

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
/*
Fonts
*/
/*
Colors
*/
/*
New colors
*/
/*
Responsive breakpoints
*/
/*
Animations
*/
/*
Misc
*/
:root {
  --font-base-size: 18px;
  --gutter: calc((100vw - 1400px) / 2);
  --gutter-left: calc((100vw - 1400px) / 2);
  --gutter-right: calc((100vw - 1400px) / 2);
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
  --block-margin: 4rem;
}
@media screen and (max-width: 1544.8275862069px) {
  :root {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
    --gutter: 4.6875vw;
  }
}
@media screen and (max-width: 1450px) {
  :root {
    --block-margin: 2.8rem;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --block-margin: 2.4rem;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --block-margin: 2.6rem;
  }
}

@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: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #000000;
  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: white;
}

body {
  padding: 0 0 0px 0;
  background: white;
  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;
}

.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: "Source Sans 3", sans-serif;
}

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

.text-headline {
  font-family: "Bricolage Grotesque", sans-serif;
}

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

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

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

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

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

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

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

.text-white {
  color: white;
}

.text-black {
  color: #000000;
}

.text-red {
  color: #FF4A1A;
}

.text-green {
  color: #005F4E;
}

.text-blue {
  color: #38B9FF;
}

.text-orange {
  color: #FF4A1A;
}

.text-gray {
  color: #555555;
}

.text-nowrap {
  white-space: nowrap;
}

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

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

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

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

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

img,
a > img {
  border: 0;
}

a {
  color: currentColor;
  transition: 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;
}
a:hover {
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
}
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%;
}

/*
.has-background {
    @include has-colors('background-color');
}
.has-text-color {
    @include has-colors('color');
}
*/
#wpadminbar {
  z-index: 1101;
}

/*
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-margin-bottom--x2 {
  margin-bottom: calc(var(--block-margin, 4rem) * 2) !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: #000000;
}

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

.has-black-background-color {
  --background-color: #000000;
}

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

.query-posts {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  --gap: 2rem;
  --column-gap: var(--gap);
  --row-gap: calc(var(--block-margin, 4rem) * 2);
  --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 {
  width: 100% !important;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}
@media screen and (max-width: 767px) {
  .query-posts {
    --row-gap: calc(var(--block-margin, 4rem) * 1.55);
  }
}

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

.query-posts.all-states {
  --row-gap: calc(var(--block-margin, 4rem) * 0.75);
  --column-gap:0px;
}
.query-posts.all-states .hentry.off {
  display: none !important;
}

/*

.query-posts.four-across.with-promos {
    > .hentry.promo-wide { order:-50 !important}
    > .hentry:nth-child(1),
    > .hentry:nth-child(2),
    > .hentry:nth-child(3),
    > .hentry:nth-child(4),
    > .hentry:nth-child(5),
    > .hentry:nth-child(6),
    > .hentry:nth-child(7),
    > .hentry:nth-child(8) {
        order:-100;
    }

    @media screen and (max-width:1200px) {
        > .hentry:nth-child(7),
        > .hentry:nth-child(8) {
            order:unset;
        }
    }
}
*/
input[type=submit],
input[type=button],
button {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 50px;
  text-decoration: none;
  background-color: #000;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  border: 0;
  letter-spacing: normal;
  font-size: 0.8888888889rem;
  line-height: 1.13;
  padding: 0.6rem 2em;
  transition: all 0.2s linear;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.aligncenter,
button.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover {
  text-decoration: none;
  background: #000000;
  color: white;
  border-color: #000000;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
input[type=submit].done,
input[type=button].done,
button.done {
  cursor: default;
  color: #555;
  border-color: #555;
}
input[type=submit].done:hover,
input[type=button].done:hover,
button.done:hover {
  color: #555;
  background: none;
}
@media screen and (max-width: 767px) {
  input[type=submit],
  input[type=button],
  button {
    padding: 0.8em 2em;
  }
}

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

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

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
textarea,
select[multiple] {
  line-height: 1;
  margin: 0;
  padding: 0.6rem 1.35rem;
  border: 2px solid var(--input-border-color, currentColor);
  border-radius: 2rem;
  background: #fff;
  box-sizing: border-box;
  font-family: "Source Sans 3", sans-serif;
  font-size: 0.8888888889rem;
  font-weight: 600;
}

textarea {
  width: 100%;
  border-radius: 1rem;
}

.input.select {
  --input-border-radius: var(--border-radius, 1.4em);
  --input-icon-size: var(--icon-size, .8em);
  --input-padding: var(--padding, .6rem);
  --input-font-size: var(--font-size, 1rem);
  --input-border-width:2px;
  position: relative;
  z-index: 1;
  padding: 0;
  background: none;
  box-sizing: border-box;
  cursor: pointer;
  font-family: "Source Sans 3", sans-serif;
}
.input.select .label {
  min-width: 100px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  padding: var(--input-padding) 2.5em var(--input-padding) 1.2rem;
  font-weight: 600;
  font-size: 0.8888888889rem;
  line-height: 1;
  text-transform: uppercase;
  border: var(--input-border-width) solid var(--input-border-color, currentColor);
  border-radius: var(--input-border-radius);
  background: var(--input-background-color, white) none;
  opacity: 1;
  transition: min-width 0.2s ease;
}
.input.select .label:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  right: 1.5em;
  width: var(--input-icon-size);
  height: var(--input-icon-size);
  margin-top: calc(var(--input-icon-size) / -2);
  border: var(--input-border-width) solid currentColor;
  border-width: var(--input-border-width) var(--input-border-width) 0 0;
  transition: transform 0.2s ease, margin 0.2s ease;
}
.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, currentColor);
  border-top-width: 0;
  box-sizing: border-box;
  background: var(--background-color, white) none;
  font-size: var(--input-font-size);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  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 1.5em var(--input-padding) 1.2rem;
  margin: 0;
  transition: background-color 0.2s ease;
}
.input.select .options .option:before {
  content: " ";
  display: block;
  margin: 0 0 var(--input-padding) 0;
  height: var(--input-border-width);
  width: 101.3%;
  background: currentColor;
  opacity: 0.7;
}
.input.select .options .option:last-child {
  margin-bottom: 0;
  padding-bottom: calc(var(--input-padding) + var(--input-padding) * 0.5);
}
.input.select .options .option:hover {
  background-color: #FF4A1A;
  color: #000000;
}
.input.select .options .option:hover:before {
  opacity: 0;
}
.input.select.on {
  --input-border-color: #000000;
}
.input.select.on .label {
  min-width: 200px;
  border-radius: var(--input-border-radius) var(--input-border-radius) 0 0;
  border-bottom-color: transparent;
}
.input.select.on .label:after {
  transform: rotate(135deg) translate(0, -5px);
  margin-top: calc(var(--input-icon-size) / -2 - 0.4em);
}
.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 .has-background .gform_wrapper.gravity-theme {
  --input-border-color: transparent;
}

body #wrap .gform_wrapper.gravity-theme ::-webkit-input-placeholder {
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.8888888889rem;
}
body #wrap .gform_wrapper.gravity-theme :-moz-placeholder {
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.8888888889rem;
}
body #wrap .gform_wrapper.gravity-theme ::-moz-placeholder {
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.8888888889rem;
}
body #wrap .gform_wrapper.gravity-theme :-ms-input-placeholder {
  font-weight: 400;
  font-family: "Source Sans 3", sans-serif;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.8888888889rem;
}
body #wrap .gform_wrapper.gravity-theme .gform_previous_button.button {
  color: #000000;
  border: 2px solid var(--input-border-color, currentColor);
  line-height: 1;
}
body #wrap .gform_wrapper.gravity-theme .gform_previous_button.button:hover {
  color: white;
  background: #000000;
  border-color: #000000;
}
body #wrap .gform_wrapper.gravity-theme input[type=text],
body #wrap .gform_wrapper.gravity-theme input[type=email],
body #wrap .gform_wrapper.gravity-theme input[type=number],
body #wrap .gform_wrapper.gravity-theme input[type=url],
body #wrap .gform_wrapper.gravity-theme textarea {
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  font-size: 0.8888888889rem;
  line-height: 1;
}
body #wrap .gform_wrapper.gravity-theme textarea {
  padding: 1rem 1.25rem;
}
body #wrap .gform_wrapper.gravity-theme input[type=submit] {
  background-color: #ffb600;
  color: #000000;
  font-weight: 900;
  line-height: 1;
}
body #wrap .gform_wrapper.gravity-theme input[type=submit]:hover {
  background-color: #000000;
  color: white;
}
body #wrap .gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
  font-style: normal;
}
body #wrap .gform_wrapper.gravity-theme .gfield_label {
  font-size: 0.8888888889rem;
  font-weight: 600;
  text-transform: uppercase;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox .gchoice,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio .gchoice,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice {
  position: relative;
  line-height: 1;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 500;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice input.gfield-choice-input,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox .gchoice input.gfield-choice-input,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio .gchoice input.gfield-choice-input,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice input.gfield-choice-input {
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translate(0, -50%);
  cursor: pointer;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox .gchoice label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio .gchoice label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice label {
  cursor: pointer;
  display: block;
  max-width: none;
  padding: 0.6rem 1.35rem 0.6rem 3rem;
  border: 2px solid var(--input-border-color, currentColor);
  background: white;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.2s ease;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice label:hover,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox .gchoice label:hover,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio .gchoice label:hover,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice label:hover {
  background-color: #ffb600;
  color: #000000;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_radio .gchoice input.gfield-choice-input:checked + label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_radio .gfield_checkbox .gchoice input.gfield-choice-input:checked + label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_radio .gchoice input.gfield-choice-input:checked + label,
body #wrap .gform_wrapper.gravity-theme .ginput_container_checkbox .gfield_checkbox .gchoice input.gfield-choice-input:checked + label {
  background: #000000;
  color: white;
}
body #wrap .gform_wrapper.gravity-theme .gfield.hide-next-button .ginput_container_radio {
  --input-icon-size: .6em;
  --input-border-width: 2px;
}
body #wrap .gform_wrapper.gravity-theme .gfield.hide-next-button .ginput_container_radio .gfield_radio .gchoice input.gfield-choice-input {
  visibility: hidden;
}
body #wrap .gform_wrapper.gravity-theme .gfield.hide-next-button .ginput_container_radio .gfield_radio .gchoice label {
  padding-left: 1.35rem;
}
body #wrap .gform_wrapper.gravity-theme .gfield.hide-next-button .ginput_container_radio .gfield_radio .gchoice label:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  transform-origin: 50% 50%;
  transform: rotate(45deg);
  right: 1.5em;
  width: var(--input-icon-size);
  height: var(--input-icon-size);
  margin-top: calc(var(--input-icon-size) / -2);
  border: var(--input-border-width) solid currentColor;
  border-width: var(--input-border-width) var(--input-border-width) 0 0;
  transition: 0.2s ease;
}
body #wrap .gform_wrapper.gravity-theme .gfield.hide-next-button .ginput_container_radio .gfield_radio .gchoice label:hover:after {
  margin-right: -3px;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_select {
  position: relative;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_select.field_focused {
  z-index: 100;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_select:has(.input.select.on) {
  z-index: 100;
}
body #wrap .gform_wrapper.gravity-theme .input.select select {
  z-index: 2;
  width: 100%;
  height: 100%;
  visibility: visible;
}
body #wrap .gform_wrapper.gravity-theme .input.select .options {
  display: none !important;
}
body #wrap .gform_wrapper.gravity-theme .ginput_container_time input[type=number] {
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
}
body #wrap .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border-width: 2px;
}
body #wrap .gform_wrapper.gravity-theme .gform_page_footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
body #wrap .gform_wrapper.gravity-theme .gform_page_footer .gform_ajax_spinner {
  position: absolute;
  left: 100%;
  margin: 0 0 0 10px;
}

/*
// form block label //
#gform_page_2_1 .gfield_label.gform-field-label {
    display: none;
}

// form page heading //
.gfield_html {
    margin-bottom: 2rem;
}

// parent container group for all radio buttons //
.gform_wrapper .gfield.buttonized .gfield_radio,
.gform_wrapper .gfield.buttonized .gfield_checkbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 1.55rem;
}

// parent container group for individual radio button //
.gform_wrapper .gfield.buttonized .gfield_radio .gchoice,
.gform_wrapper .gfield.buttonized .gfield_checkbox .gchoice {
    display: grid;
    grid-template-columns: 1em auto;
    align-items: center;
    max-width: 100%;
    width: 100%;
    color: $color-black;
    background-color: $color-white;
    border: 2px solid transparent;
    border-radius: 30px;
    transition: $hover-transition;

    &:hover {
        border-color: $color-black;

        label::after {
            right: -2.5%;
        }
    }
}

// radio button and checkbox button label //
.gform_wrapper .gfield.buttonized .gfield_radio label,
.gform_wrapper .gfield.buttonized .gfield_checkbox label {
    font-family: $font-sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: .9em;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.07px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .4rem 0 .4rem .2rem;
    position: relative;

    &::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        color: $color-black;
        font-style: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        font-size: 14px;
        position: absolute;
        right: -2%;
        top: 20%;
        transition: $hover-transition;
    }

    @media screen and (max-width: $mobile-breakpoint) {
        line-height: 1.4;

        &::after {
            top: revert;
            right: -4%;
        }
    }
}

.gform_wrapper .gfield.buttonized input[type="radio"]:focus+label,
.gform_wrapper .gfield.buttonized input[type="checkbox"]:focus+label,
.gform_wrapper .gfield.buttonized input[type="radio"]:checked+label,
.gform_wrapper .gfield.buttonized input[type="checkbox"]:checked+label {
    transition: $hover-transition;
}

// radio and check button element check mark //
.gform_wrapper .gfield.buttonized input[type="radio"],
.gform_wrapper .gfield.buttonized input[type="checkbox"] {

    // hide default radio button icon
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.gform_wrapper.gravity-theme .gfield input,
.gform_wrapper.gravity-theme .gfield select {
    max-width: revert !important;
}

// text input elements //
.gform_wrapper.gravity-theme .gform_fields{ 
    grid-row-gap: 1.55rem !important;
    margin-bottom: 4rem !important;
}

.ginput_container .ginput_address_line_1,
.ginput_container .ginput_address_city,
.ginput_container .ginput_address_state {
    margin-bottom: 1.55rem !important;
}

.gform_wrapper.gravity-theme .gfield textarea,
.ginput_container.ginput_container_text input,
.ginput_container.ginput_container_website input,
.ginput_container.ginput_container_phone input,
.ginput_container.ginput_container_email input,
.ginput_container.ginput_container--name .name_first input,
.ginput_container.ginput_container--name .name_last input,
.ginput_container .ginput_address_line_1 input,
.ginput_container .ginput_address_city input, 
.ginput_container .ginput_address_zip input {
    font-family: $font-sans-serif;
    padding: 8px 23px !important;
    color: $color-black;
    border-radius: 22px;
    font-size: .9em !important;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.07px;

    &::placeholder {
        text-transform: uppercase;
    }
}

.gform_wrapper.gravity-theme .gfield textarea.large {
    padding-top: 16px !important;
}

// field labels
.gform_wrapper.gravity-theme .gfield_label {
    display: none !important;
}

// drop down selectors //
.ginput_container .ginput_address_state {

    select {
        background: $color-white;
        border-radius: 22px;
        border: $color-white;
        text-transform: uppercase;
        font-family: $font-sans-serif;
        padding: 8px 23px !important;
        color: $color-gray;
        font-size: .9em !important;
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: 0.07px;
        appearance: none;
    }
}

// validation errors //
.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 15px;
    letter-spacing: 0;
}

.gform_wrapper.gravity-theme .gfield_validation_message,
.gform_wrapper.gravity-theme .validation_message {
    border-radius: 15px;
}

// submit, previous, and next button element //
input.gform_button,
input.gform_button[type="submit"],
input.gform_previous_button,
input.gform_next_button,
input.gform-theme-button,
.gform_wrapper.gravity-theme .gform_previous_button.button,
.gform_wrapper.gravity-theme .gform_next_button.button {
    font-weight: 600;
    color: $color-white !important;
    letter-spacing: 0;
    font-size: 0.94em;
    padding: 0.5rem 1.75rem;
    font-family: $font-sans-serif;
    text-transform: uppercase;
}

input.gform_button[type="submit"] {
    border: 2px solid $color-dark-green;
    background-color: $color-dark-green;

    &:hover {
        background-color: $color-yellow;
        border-color: $color-yellow;
        color: $color-black !important;
    }
}

input.gform_previous_button,
.gform_wrapper.gravity-theme .gform_previous_button.button {
    background-color: $color-dark-purple !important;
    border: 2px solid $color-dark-purple;

    &:hover {
        background-color: $color-black !important;
        border-color: $color-black;
    }
}

.gform_wrapper.gravity-theme .gform_footer,
.gform_wrapper.gravity-theme .gform_page_footer {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    justify-content: space-between;
}

.gform_ajax_spinner {
    display: none;
}

@media screen and (max-width: 767px) {
    .wp-block-group.has-background>.gform_wrapper {
        padding: 0;
    }

    input.gform_button,
    input.gform_previous_button,
    input.gform_next_button,
    input.gform-theme-button,
    .gform_wrapper.gravity-theme .gform_previous_button.button,
    .gform_wrapper.gravity-theme .gform_next_button.button {
        line-height: 1 !important;
    }

    .gform_wrapper .gfield.buttonized .gfield_radio .gchoice,
    .gform_wrapper .gfield.buttonized .gfield_checkbox .gchoice {
        column-gap: 0;
    }

    .gform_wrapper.gravity-theme .gfield.gfield--width-full {
        margin-bottom: 0 !important;
    }

    .gform_wrapper.gravity-theme .ginput_complex span.name_first {
        margin-bottom: 1.55rem !important;
    }

    .gform_wrapper.gravity-theme .ginput_complex span.name_last {
        margin-bottom: 0 !important;
    }
}
*/
.posts-nav {
  clear: both;
  margin: 4em 0 2em;
  white-space: nowrap;
}
.posts-nav.max-page-1 {
  display: none;
}
.posts-nav.no-ajax {
  visibility: visible;
}
.posts-nav.ajax-pager {
  visibility: visible;
  text-align: center;
  margin: 0;
}
.posts-nav:after {
  content: " ";
  display: block;
  clear: both;
}
.posts-nav ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.posts-nav ul li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  padding: 0;
  list-style: none;
  color: #aaa;
}
.posts-nav ul li.page_info {
  display: none;
}
.posts-nav ul li a {
  display: block;
  padding: 0.5em 0.7em;
  line-height: normal;
  text-decoration: none;
  border: 0;
}
.posts-nav ul li a:hover {
  color: white;
  background: #555555;
}
.posts-nav ul li.active_page {
  color: white;
  background: #FF4A1A;
}
.posts-nav ul li.active_page a {
  padding: 0.5em 1em;
  color: #fff;
}

.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: thumbnail;
}
.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: #005F4E;
  text-transform: uppercase;
  font-weight: 600;
}

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

.hentry.promo {
  padding: 2rem;
  background: #000000;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hentry.promo .title {
  margin: 0;
  font-size: clamp(1.156rem, 0.592vw + 1.027rem, 1.444rem);
  line-height: 1.3;
}
.hentry.promo .title strong {
  display: block;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 2.162vw + 1.032rem, 2.556rem);
  font-weight: 600;
}
.hentry.promo form {
  margin: calc(var(--block-margin, 4rem) * 0.5) 0;
  width: 100%;
}
.hentry.promo form .fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.hentry.promo form .fields input[type=email] {
  padding: 0.5em 1em;
  width: 100%;
  text-align: center;
  border-radius: 50px;
  border: 0;
}
.hentry.promo form .fields button {
  background: white;
  color: #000000;
}
.hentry.promo form .fields button:hover {
  background-color: #BC195B;
  color: white;
}
.hentry.promo .content {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.hentry.excerpt .thumbnail {
  grid-area: image;
  position: relative;
  display: block;
  padding: 0 0 100%;
  margin: 0 0 1rem;
  background: var(--background-color, #eee);
}
.hentry.excerpt .thumbnail img,
.hentry.excerpt .thumbnail .img {
  display: block;
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  -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%;
}
.hentry.excerpt .thumbnail .img {
  background: #000000;
}
.hentry.excerpt.no-crop .thumbnail img {
  border-radius: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hentry.excerpt .meta {
  grid-area: meta;
  margin: 1em 0;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.667rem, 0.228vw + 0.617rem, 0.778rem);
  line-height: 1.15;
}
.hentry.excerpt .title {
  grid-area: title;
  font-size: clamp(1.111rem, 0.683vw + 0.963rem, 1.444rem);
  font-weight: 500;
  line-height: 1.2;
}
.hentry.excerpt .title a {
  display: inline;
  text-decoration: none;
  background: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #000000, #000000);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
  padding-bottom: 2px;
}
.hentry.excerpt .title a:hover {
  color: #000000;
  background-size: 0 0.1em, 100% 0.1em;
}
.hentry.excerpt .date {
  grid-area: date;
  margin: 1em 0;
  text-transform: uppercase;
  font-size: clamp(0.667rem, 0.228vw + 0.617rem, 0.778rem);
  font-weight: 500;
  line-height: 1.15;
}
.hentry.excerpt .content {
  line-height: 1.3;
}
.hentry.excerpt:nth-child(5n) {
  --background-color: white;
}
.hentry.excerpt .bookmark {
  position: absolute;
  top: 0;
  left: 1.5em;
  width: 1.7em;
  height: 2em;
  background: #000;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - 0.75em), 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% calc(100% - 0.75em), 0% 100%);
  transition: height 0.2s ease;
}
.hentry.excerpt:hover .bookmark {
  height: 2.3em;
}
@media screen and (max-width: 767px) {
  .hentry.excerpt {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "image meta" "image title" "image date" "image content";
    grid-template-rows: auto auto auto 1fr;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    align-items: start;
  }
  .hentry.excerpt .meta,
  .hentry.excerpt .date {
    font-size: 12px;
    line-height: 1.2;
    margin: 0 0 1.4em;
  }
  .hentry.excerpt .title {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media screen and (max-width: 500px) {
  .hentry.excerpt {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}

.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;
  color: #555555;
}

.hentry.state-preview {
  text-align: center;
  border-bottom: 2px solid currentColor;
  padding-bottom: var(--row-gap, 2rem);
}
.hentry.state-preview:hover .title a {
  color: currentColor;
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
  --link-text-decoration-color-hover: currentColor;
}
.hentry.state-preview:hover .image:before {
  transform: scale(1.05);
}
.hentry.state-preview:hover .image:after {
  transform: scale(1.05);
}
.hentry.state-preview .title {
  margin-bottom: 0.75rem;
}
.hentry.state-preview .title a {
  position: relative;
  display: inline-block;
  text-underline-offset: 0.1em;
  -webkit-text-decoration: underline solid transparent;
          text-decoration: underline solid transparent;
  text-decoration-color: var(--link-text-decoration-color-initial, currentColor);
  text-decoration-thickness: 1.5px;
  --link-text-decoration-color-initial: transparent;
  transition: 0.25s ease;
}
.hentry.state-preview .image {
  position: relative;
  display: block;
  width: 100%;
  height: 120px;
  margin: 0;
}
.hentry.state-preview .image:before, .hentry.state-preview .image:after {
  content: " ";
  display: block;
  position: absolute;
  background: no-repeat 50% 50%;
  background-size: contain;
  transition: 0.25s ease;
}
.hentry.state-preview .image:before {
  --size: 80%;
  top: calc((100% - var(--size)) / 2);
  left: calc((100% - var(--size)) / 2);
  width: var(--size);
  height: var(--size);
}
.hentry.state-preview .image:after {
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-image: var(--state-image);
}
@media screen and (min-width: 1201px) {
  :not(.filtered) + .query-posts .hentry.state-preview:nth-child(5n+1):nth-last-child(-n+5), :not(.filtered) + .query-posts .hentry.state-preview:nth-child(5n+1):nth-last-child(-n+5) ~ .hentry {
    border-bottom: 0;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  :not(.filtered) + .query-posts .hentry.state-preview:nth-child(4n+1):nth-last-child(-n+4), :not(.filtered) + .query-posts .hentry.state-preview:nth-child(4n+1):nth-last-child(-n+4) ~ .hentry {
    border-bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  :not(.filtered) + .query-posts .hentry.state-preview:nth-child(3n+1):nth-last-child(-n+3), :not(.filtered) + .query-posts .hentry.state-preview:nth-child(3n+1):nth-last-child(-n+3) ~ .hentry {
    border-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  :not(.filtered) + .query-posts .hentry.state-preview:nth-child(2n+1):nth-last-child(-n+2), :not(.filtered) + .query-posts .hentry.state-preview:nth-child(2n+1):nth-last-child(-n+2) ~ .hentry {
    border-bottom: 0;
  }
}
.hentry.state-preview:nth-child(15n) .image:before {
  background-image: url(images/shapes/red.svg);
}
.hentry.state-preview:nth-child(15n-1) .image:before {
  background-image: url(images/shapes/green.svg);
}
.hentry.state-preview:nth-child(15n-2) .image:before {
  background-image: url(images/shapes/purple.svg);
}
.hentry.state-preview:nth-child(15n-3) .image:before {
  background-image: url(images/shapes/yellow.svg);
}
.hentry.state-preview:nth-child(15n-4) .image:before {
  background-image: url(images/shapes/blue.svg);
}
.hentry.state-preview:nth-child(15n-5) .image:before {
  background-image: url(images/shapes/purple.svg);
}
.hentry.state-preview:nth-child(15n-6) .image:before {
  background-image: url(images/shapes/blue.svg);
}
.hentry.state-preview:nth-child(15n-7) .image:before {
  background-image: url(images/shapes/red.svg);
}
.hentry.state-preview:nth-child(15n-8) .image:before {
  background-image: url(images/shapes/green.svg);
}
.hentry.state-preview:nth-child(15n-9) .image:before {
  background-image: url(images/shapes/yellow.svg);
}
.hentry.state-preview:nth-child(15n-10) .image:before {
  background-image: url(images/shapes/green.svg);
}
.hentry.state-preview:nth-child(15n-11) .image:before {
  background-image: url(images/shapes/purple.svg);
}
.hentry.state-preview:nth-child(15n-12) .image:before {
  background-image: url(images/shapes/yellow.svg);
}
.hentry.state-preview:nth-child(15n-13) .image:before {
  background-image: url(images/shapes/blue.svg);
}
.hentry.state-preview:nth-child(15n-14) .image:before {
  background-image: url(images/shapes/red.svg);
}

.hentry.cta {
  padding: calc(var(--block-margin, 4rem) * 1) calc(var(--block-margin, 4rem) * 0.75);
  background: var(--background-color, #02AA8C);
  display: flex;
  flex-direction: column;
}
.hentry.cta .title {
  margin: 0;
  flex-grow: 1;
  line-height: 1.3;
}
.hentry.cta .title a {
  display: inline;
  text-decoration: none;
  background: linear-gradient(to right, transparent, transparent), linear-gradient(to right, #000000, #000000);
  background-size: 100% 0.11em, 0 0.11em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
  padding-bottom: 2px;
}
.hentry.cta .title a:hover {
  color: #000000;
  background-size: 0 0.11em, 100% 0.11em;
}
.hentry.cta > .wp-block-button {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}
.hentry.cta:nth-child(5n) {
  --background-color: #8DAAFC;
}
.hentry.cta:nth-child(5n+1) {
  --background-color: #ffb600;
}
.hentry.cta:nth-child(5n+2) {
  --background-color: #38B9FF;
}
.hentry.cta:nth-child(5n+3) {
  --background-color: #8DAAFC;
}
.hentry.cta:nth-child(5n+4) {
  --background-color: #38B9FF;
}

.hentry.profile .thumbnail {
  position: relative;
  display: block;
  padding: 0 0 100%;
  margin: 0 0 0.5rem;
}
.hentry.profile .thumbnail img,
.hentry.profile .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%);
}
.hentry.profile .title {
  margin: 0;
  font-size: clamp(1.111rem, 0.683vw + 0.963rem, 1.444rem);
  font-weight: 500;
  line-height: 1.2;
}
.hentry.profile .title a {
  display: inline;
  text-decoration: none;
  background: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #000000, #000000);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
  padding-bottom: 2px;
}
.hentry.profile:hover .title a {
  color: #000000;
  background-size: 0 0.1em, 100% 0.1em;
}
.hentry.profile .position {
  margin-top: 0.5em;
  font-size: clamp(0.667rem, 0.228vw + 0.617rem, 0.778rem);
  line-height: 1.15;
  color: gray;
}

p {
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.42;
  font-weight: 400;
}
p, .is-layout-flow > p {
  margin-block-start: 0;
  margin-block-end: 1em;
}
.page-blocks > p {
  max-width: 740px;
}
p:last-child {
  margin-block-end: 0;
}

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

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

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

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

p.is-style-intro {
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  p.is-style-intro {
    font-size: 1.07rem;
    line-height: 1.35;
  }
}

.site-header {
  --header-padding: 20px;
  --background-color: white;
  --color: #000000;
  --icon-size: 1.4em;
  --logo-width: 230px;
  box-sizing: border-box;
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  background: var(--background-color);
  color: #000000;
  transition: 0.3s ease-in-out, transform 0.4s ease-in-out;
  transform: translate(0%, 0%);
  /*body.has-transparent-header & {
      --background-color: transparent;
      color: white;
      &:before {
          content:' ';
          display:block;
          position:absolute;
          top:0;
          left:0;
          width:100%;
          height:100%;
          background:linear-gradient(0deg, rgba(#000, 0), rgba(#000, .2) 50%);
          opacity:1;
          transition: $nav-transition;
      }
  }
  */
  /*
  body.scrolled.scroll-up & {
      --background-color:white;
      color: #000000;
      &:before {
          display:none;
      }
  }
  */
  /*
  body.flyout-on.has-transparent-header &,
  body.scrolled.has-transparent-header & {
      --background-color:white;
      color: #000000;
      &:before {
          display:none;
      }
  }
  */
  /*

  body.scrolled:not(.scroll-top) & {
      --background-color: white;
      --color: #000000;

  }
  body.scrolled.scrolled-up & {
      transform:translate(0, 0%);

  }
  */
}
body.scrolled:not(.scroll-up, .menu-on) .site-header {
  transform: translate(0, -100%);
}
body.scrolled.admin-bar:not(.scroll-up, .menu-on) .site-header {
  transform: translate(0, calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}
body:not(.scrolled) .site-header {
  padding-top: var(--alert-height, 0px);
}
body.scrolled.menu-on .site-header {
  opacity: 1;
}
.site-header .menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-header > .layout {
  position: relative;
  z-index: 1;
  padding: 0 var(--gutter-right) 0 var(--gutter-left);
  box-sizing: border-box;
  display: grid;
  align-items: start;
  grid-template-columns: var(--logo-width) minmax(1em, 1fr) 5fr minmax(1em, 1fr) auto auto;
  grid-template-rows: var(--header-padding) auto var(--header-padding);
  grid-template-areas: "logo . .   . .   ." "logo . nav . cta toggle" "logo . .   . .   .";
  background: var(--background-color);
}
.site-header .block-logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 0.1em;
}
@media screen and (min-width: 1250px) {
  .site-header .block-logo {
    padding-bottom: 0.7rem;
  }
}
@media screen and (max-width: 1100px) {
  .site-header .block-logo {
    padding-top: 0.8em;
  }
}
@media screen and (max-width: 767px) {
  .site-header .block-logo {
    padding-top: 1em;
  }
}
.site-header .block-logo a {
  display: block;
}
@media screen and (max-width: 1250px) {
  .site-header .block-logo a {
    padding-bottom: 1em;
  }
}
.site-header .block-logo a svg,
.site-header .block-logo a img {
  display: block;
  width: 100%;
  fill: currentColor;
}
@media screen and (max-width: 767px) {
  .site-header .block-logo a svg,
  .site-header .block-logo a img {
    width: 83%;
  }
}
.site-header .flyout-menu {
  box-sizing: border-box;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: calc(var(--block-margin, 4rem) * 0.75) var(--gutter-right) calc(var(--block-margin, 4rem) * 1) var(--gutter-left);
  background: white;
  overflow: auto;
}
@media screen and (min-width: 1100px) {
  .site-header .flyout-menu:after {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0.5em 0 0;
    height: 0.5em;
    background: linear-gradient(90deg, #38B9FF 0%, #38B9FF 50%, #8DAAFC 50%, #8DAAFC 70%, #ffb600 70%, #ffb600 80%, #FF4A1A 80%, #FF4A1A 100%);
  }
}
.site-header .block-nav {
  --gap: 2em;
  grid-area: nav;
  display: flex;
  align-items: start;
  line-height: 1.25;
  font-weight: 600;
  font-size: clamp(0.833rem, 0.797vw + 0.661rem, 1.222rem);
  text-transform: uppercase;
}
.site-header .block-nav a {
  text-decoration: none;
  color: inherit;
}
.site-header .block-nav > ul {
  display: inline-flex;
  justify-content: center;
  gap: var(--gap);
}
@media screen and (min-width: 1400px) {
  .site-header .block-nav > ul {
    --gap: 3rem;
  }
}
.site-header .block-nav > ul > li {
  position: relative;
}
.site-header .block-nav > ul > li.about-us {
  --link-min-width:4em;
}
.site-header .block-nav > ul > li > a {
  position: relative;
  z-index: 2006;
  display: inline-block;
  padding: 0 0 1em 0;
  min-width: var(--link-min-width, 5em);
}
.site-header .block-nav > ul > li > a:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0.25em;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: 0.2s ease;
  opacity: 0;
}
.site-header .block-nav > ul > li > a:hover:before {
  width: 100%;
  opacity: 1;
}
.site-header .block-nav > ul > li > a .v {
  position: absolute;
  right: 0;
  bottom: 1.1em;
  line-height: 1;
  transform: rotate(0deg);
  transition: 0.2s ease;
}
.site-header .block-nav > ul > li > a .v: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: "\f105";
}
.site-header .block-nav > ul > li.current-menu-item:not(.is-anchor-link) > a:before, .site-header .block-nav > ul > li.current-menu-ancestor > a:before, .site-header .block-nav > ul > li.on > a:before, .site-header .block-nav > ul > li.hover > a:before {
  opacity: 1;
  width: 100%;
}
.site-header .block-nav > ul > li.has-submenu > a {
  padding-right: 1.2em;
}
.site-header .block-nav > ul > li.has-submenu.on .v {
  transform: rotate(90deg);
}
.site-header .block-nav > ul > li:has(> ul) > a {
  padding-right: 1.2em;
}
.site-header .block-nav > ul > li:has(> ul).on .v {
  transform: rotate(90deg);
}
.site-header .block-nav .toggle.search {
  margin: 0 0 0.5em var(--gap);
  align-self: center;
}
.site-header .block-nav .toggle.search .label {
  display: none;
}
.site-header .block-cta {
  grid-area: cta;
  white-space: nowrap;
}
.site-header .block-cta .wp-block-button > .wp-block-button__link {
  background-color: #ffb600;
  border: 2px solid #ffb600;
}
.site-header .block-toggle {
  display: none;
  grid-area: toggle;
  position: relative;
  z-index: 100;
  height: 100%;
  margin: 0 0 0 1em;
}
.site-header .block-toggle .toggle.menu {
  --width: 25px;
  --height: 14px;
  --bar-thickness: 2px;
  display: flex;
  position: relative;
  width: var(--width);
  height: 100%;
  align-items: center;
  color: currentColor;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.site-header .block-toggle .toggle.menu .icon {
  display: block;
  position: relative;
  width: var(--width);
  height: var(--height);
  transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  border: var(--bar-thickness) solid currentColor;
  border-width: var(--bar-thickness) 0;
  box-sizing: border-box;
}
.site-header .block-toggle .toggle.menu .icon:before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--bar-thickness);
  background: currentColor;
  transform: translate(0, -50%);
}
.site-header .block-toggle .toggle.menu:before, .site-header .block-toggle .toggle.menu:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  margin: calc(var(--bar-thickness) / -2) 0 0;
  transform-origin: 50% 50%;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: rotate(0deg);
  opacity: 0;
  background: currentColor;
}
body.menu-on .site-header .block-toggle .toggle.menu:before, body.menu-on .site-header .block-toggle .toggle.menu:after {
  opacity: 1;
}
body.menu-on .site-header .block-toggle .toggle.menu:before {
  transform: rotate(-45deg);
}
body.menu-on .site-header .block-toggle .toggle.menu:after {
  transform: rotate(-135deg);
}
body.menu-on .site-header .block-toggle .toggle.menu .icon {
  opacity: 0;
  transform: rotate(-45deg);
}
@media screen and (min-width: 1101px) {
  .site-header .block-nav > ul > li > a {
    transition: none;
  }
  .site-header .block-nav > ul > li > ul {
    display: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 0;
    width: 22em;
    padding: 0.5em 0 0;
    margin: 0 0 0 -1em;
    list-style: none;
    background: white;
    line-height: 1;
    font-size: 0.9em;
  }
  .site-header .block-nav > ul > li > ul:after {
    content: " ";
    display: block;
    margin: 0.5em 0 0;
    height: 0.5em;
    background: linear-gradient(90deg, #38B9FF 0%, #38B9FF 50%, #8DAAFC 50%, #8DAAFC 70%, #ffb600 70%, #ffb600 80%, #FF4A1A 80%, #FF4A1A 100%);
  }
  .site-header .block-nav > ul > li > ul > li > a {
    display: block;
    padding: 0.75em 1em;
  }
  .site-header .block-nav > ul > li > ul > li > a:hover {
    text-decoration: underline;
  }
  .site-header .flyout-menu {
    top: 0;
    transform: translate(0, -100%);
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  .site-header .flyout-menu.on {
    top: 100%;
    opacity: 1;
    transform: translate(0, 0%);
  }
}
@media screen and (max-width: 1400px) {
  .site-header {
    --logo-width: 200px;
  }
  .site-header .block-nav {
    font-size: clamp(0.833rem, 0.114vw + 0.809rem, 0.889rem);
    line-height: 1.25;
  }
}
@media screen and (min-width: 1251px) and (max-width: 1399px) {
  .site-header {
    --logo-width: 170px;
  }
  .site-header .block-logo {
    margin-top: -0.4em;
  }
}
@media screen and (max-width: 1250px) {
  .site-header {
    --logo-width: 150px;
  }
  .site-header .block-nav {
    --gap: 1.5em;
  }
}
@media screen and (max-width: 1100px) {
  .site-header {
    --header-padding: 20px;
  }
  .site-header .layout {
    grid-template-columns: var(--logo-width) 1fr auto;
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "logo . toggle" "nav nav nav" "cta cta cta";
  }
  .site-header .block-toggle {
    display: block;
  }
  .site-header .block-logo {
    height: auto;
  }
  .site-header .block-nav {
    --gap: 1rem;
    padding: calc(var(--block-margin, 4rem) * 0.5) 0;
    flex-direction: column;
    font-size: 0.8333333333rem;
    font-weight: 500;
    line-height: 1.25;
  }
  .site-header .block-nav > ul {
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) and (max-height: 700px) {
  .site-header .block-nav > ul {
    --gap:.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .site-header .block-nav > ul > li > a {
    padding: 0.25rem 0;
    font-size: 1.5rem;
  }
  .site-header .block-nav > ul > li > a:before {
    display: none;
  }
  .site-header .block-nav > ul > li.mobile-small {
    font-size: 1rem;
  }
  .site-header .block-nav > ul > li.mobile-sep:before {
    content: " ";
    display: block;
    margin: 3em 0 0;
    border-top: 2px solid currentColor;
    padding: 1rem 0 0;
  }
}
@media screen and (max-width: 1100px) and (max-height: 700px) {
  .site-header .block-nav > ul > li.mobile-sep:before {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 1100px) and (max-height: 600px) {
  .site-header .block-nav > ul > li.mobile-sep:before {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 1100px) {
  .site-header .block-nav > ul > li.has-bottom-border {
    margin-bottom: 0;
  }
  .site-header .block-nav > ul > li.has-bottom-border:after {
    content: " ";
    display: block;
    margin: 4rem 0 1rem;
    width: 100%;
    height: 1.5px;
    background: currentColor;
  }
  .site-header .block-nav > ul > li.secondary {
    margin-left: 0;
  }
  .site-header .block-nav > ul > li.secondary > a {
    font-size: 1.2rem;
  }
  .site-header .block-nav > ul > li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    padding-right: 0;
  }
  .site-header .block-nav > ul > li.has-submenu > a .v {
    position: relative;
    bottom: 0;
    margin: 0;
    line-height: 1;
    --icon-size: 1.25em;
    /*
    &:before {
        content:' ';
        display:block;
        position:absolute;
        width:1em;
        height:1em;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
        margin:.1em 0 0;
        border:2px solid currentColor;
        border-radius:50%;
    }
    */
  }
  .site-header .block-nav > ul > li.has-submenu > a .v:after {
    display: inline-block;
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: var(--icon-size);
    border: 2px solid currentColor;
    border-radius: 50%;
    text-align: center;
    font-size: calc(var(--icon-size) * 0.5);
  }
  .site-header .block-nav > ul > li.has-submenu > ul {
    display: none;
    margin: 0.25em 0 1em 1em;
    padding: 0;
    list-style: none;
    font-size: 0.9em;
  }
  .site-header .block-nav > ul > li.has-submenu > ul > li > a {
    display: block;
    padding: 0.5em 0;
  }
  .site-header .block-nav > ul > li.has-submenu.on > ul {
    display: block;
  }
  .site-header .block-nav > ul > li.has-submenu.has-flyout-menu > a .v {
    transform: none;
  }
  .site-header .block-nav .toggle.search {
    display: flex;
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    font-size: 0.8333333333rem;
    line-height: 1.25;
    font-size: 1.2rem;
  }
  .site-header .block-nav .toggle.search .label {
    display: inline-block;
    margin-right: 0.5em;
  }
  .site-header .block-cta {
    text-align: left;
    align-self: end;
    padding: calc(var(--block-margin, 4rem) * 1) 0 0;
  }
}
@media screen and (max-width: 1100px) and (max-height: 700px) {
  .site-header .block-cta {
    padding-top: calc(var(--block-margin, 4rem) * 0.25);
  }
}
@media screen and (max-width: 1100px) {
  .site-header .block-nav,
  .site-header .block-cta {
    transition: 0.3s ease-in-out;
    opacity: 1;
  }
  body:not(.menu-on) .site-header .block-nav,
  body:not(.menu-on) .site-header .block-cta {
    padding-top: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .site-header > .layout {
    height: 100%;
  }
  body.menu-on .site-header {
    height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px));
    padding-bottom: calc(var(--block-margin, 4rem) * 1);
    --background-color: white;
    color: #000000;
  }
  body.menu-on .site-header:before {
    display: none;
  }
  body.menu-on .site-header .block-nav,
  body.menu-on .site-header .block-cta {
    display: block;
  }
  .site-header .flyout-menu {
    z-index: 5;
    top: var(--header-height, 0px);
    height: calc(100dvh - var(--header-height, 0px) - var(--wp-admin--admin-bar--height, 0px));
    margin-top: 0.8rem;
    transition: 0.3s ease-in-out;
    transform: translate(-110%, 0);
  }
  .site-header .flyout-menu.on {
    transform: translate(0%, 0);
  }
}
@media screen and (max-width: 767px) {
  .site-header .block-nav > ul {
    gap: 0.3rem;
  }
  .site-header .block-nav > ul > li > a {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
  }
}

#policy-priorities-menu .block-policies {
  --gap: .75em;
  display: flex;
  flex-direction: column;
  row-gap: var(--gap);
}
@media screen and (max-height: 750px) {
  #policy-priorities-menu {
    font-size: 0.8rem;
    padding-top: calc(var(--block-margin, 4rem) * 0.75);
  }
}
@media screen and (max-height: 800px) {
  #policy-priorities-menu {
    padding-top: 0rem;
    font-size: 0.7rem;
  }
}
@media screen and (min-width: 1101px) {
  #policy-priorities-menu {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-areas: "title policies";
  }
  #policy-priorities-menu .block-title {
    grid-area: title;
    align-self: center;
    max-width: 5em;
  }
  #policy-priorities-menu .block-policies {
    --gap: 1.25em;
    grid-area: policies;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
  }
}
@media screen and (max-width: 1100px) {
  #policy-priorities-menu .block-policies {
    --gap:1.5em;
  }
  #policy-priorities-menu .block-title.close {
    --icon-size: 1.25em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 2rem;
    font-size: 1.75rem;
  }
  #policy-priorities-menu .block-title.close:before {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    text-transform: none;
    content: "\f104";
    margin: 0 0.5em 0 0;
    width: var(--icon-size);
    height: var(--icon-size);
    line-height: var(--icon-size);
    border: 2px solid currentColor;
    border-radius: 50%;
    text-align: center;
    font-size: calc(var(--icon-size) * 0.5);
  }
}

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

#bottom {
  margin: calc(var(--block-margin, 4rem) * 1) 0 0;
  padding: calc(var(--block-margin, 4rem) * 1.25) 0;
  background: #ffb600;
  text-align: center;
  display: grid;
  grid-template-columns: var(--gutter-left) 1fr var(--gutter-right);
  grid-template-areas: ". main .";
  /*
  .fields {
      display:flex;
      align-items:stretch;
      max-width:560px;
      margin: 1.75rem auto 0;
      background:$color-white;
      padding:0;
      border-radius:100px;
      height: 2.11em;

      input[type="email"] {
          width:100%;
          padding: 0.6em 1em 0.8em 1.75em;
          font-size:15px;
          border:0;
          background:none;
          flex-grow:1;
          border-radius:100px 0 0 100px;
          font-weight: 700;
          text-transform: uppercase;

          &::placeholder {
              color: $color-gray;
              opacity: 1;
          }
      }
      button {
          background:$color-green;
          color:white;
          border:0;
      }
  }
  */
}
#bottom .block-main {
  grid-area: main;
}
#bottom h2 {
  text-transform: uppercase;
}
#bottom p {
  font-size: 1.05rem;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#bottom button {
  margin: 1.75rem 0 0;
}
#bottom button:hover {
  background-color: #BC195B;
}
#bottom .message {
  display: none;
  margin: 1em 0 0;
  font-size: 0.8em;
}
#bottom .message.on {
  display: block;
}
#bottom .message.error {
  color: red;
}

.site-footer {
  --logo-width: 150px;
  --icon-size: 28px;
  box-sizing: border-box;
  position: relative;
  display: grid;
  grid-template-columns: var(--logo-width) 1fr 1fr auto;
  grid-template-areas: "logo address contact links";
  align-items: start;
  -moz-column-gap: calc(var(--block-margin, 4rem) * 1);
       column-gap: calc(var(--block-margin, 4rem) * 1);
  row-gap: calc(var(--block-margin, 4rem) * 0.25);
  font-size: 0.7222222222rem;
  line-height: 1.4;
  font-weight: 600;
  padding: calc(var(--block-margin, 4rem) * 1) var(--gutter-left) calc(var(--block-margin, 4rem) * 1.5) var(--gutter-right);
}
.site-footer a {
  position: relative;
  display: inline-block;
  text-underline-offset: 0.1em;
  --link-text-decoration-color-initial: transparent;
}
.site-footer a:hover {
  --link-text-decoration-color-hover: currentColor;
}
.site-footer .block-address a,
.site-footer .block-contact .label a,
.site-footer .block-links a {
  text-decoration: none;
}
.site-footer .block-address a:after,
.site-footer .block-contact .label a:after,
.site-footer .block-links a:after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 2px;
  margin: -0.1em 0 0;
  background: currentColor;
  transition: 0.2s ease;
}
.site-footer .block-address a:hover:after,
.site-footer .block-contact .label a:hover:after,
.site-footer .block-links a:hover:after {
  width: 100%;
}
.site-footer .block-logo {
  grid-area: logo;
}
.site-footer .block-logo a {
  display: block;
}
.site-footer .block-logo a img {
  display: block;
  width: var(--logo-width);
  padding-top: 0.2rem;
}
@media screen and (max-width: 1200px) {
  .site-footer .block-logo a img {
    --logo-width: 180px;
    padding-bottom: 1.5rem;
  }
}
.site-footer .block-contact {
  grid-area: contact;
  display: flex;
  align-items: start;
  gap: 1em;
  -moz-column-gap: 3em;
       column-gap: 3em;
}
.site-footer .block-contact .label {
  display: inline-block;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-footer .block-contact .links {
  display: inline-block;
}
.site-footer .block-contact ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-flex;
  gap: 0.5rem;
  transform: translate(0, -1ex);
}
.site-footer .block-contact ul li a {
  display: block;
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  font-size: calc(var(--icon-size) * 0.6);
  text-align: center;
  color: #000000;
  position: relative;
}
.site-footer .block-contact ul li a:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: transparent;
  transition: 0.2s ease;
}
.site-footer .block-contact ul li a:hover:before {
  background-color: var(--hover-color, #38B9FF);
}
.site-footer .block-contact ul li:nth-child(2) {
  --hover-color: #ffb600;
}
.site-footer .block-contact ul li:nth-child(3) {
  --hover-color: #BC195B;
}
.site-footer .block-contact ul li:nth-child(4) {
  --hover-color: #8DAAFC;
}
.site-footer .block-contact ul li:nth-child(5) {
  --hover-color: #ffb600;
}
.site-footer .block-contact ul li:nth-child(6) {
  --hover-color: #38B9FF;
}
.site-footer .block-address {
  grid-area: address;
  text-transform: uppercase;
}
.site-footer .block-address p {
  font-weight: 600;
}
.site-footer .block-links {
  --column-gap: 2em;
  grid-area: links;
  display: flex;
  align-items: start;
  gap: 1em;
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
  text-transform: uppercase;
}
.site-footer .block-links ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: top;
  flex-wrap: wrap;
  gap: 1em;
  -moz-column-gap: var(--column-gap);
       column-gap: var(--column-gap);
}
.site-footer .block-links ul.menu li {
  display: inline-block;
}
.site-footer .block-links ul.menu li a {
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .site-footer {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "logo . " "address contact" "links links";
  }
}
@media screen and (max-width: 767px) {
  .site-footer {
    --icon-size: 36px;
    grid-template-columns: auto;
    grid-template-areas: "logo" "address" "contact" "links";
  }
  .site-footer .block-contact {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .site-footer .block-contact ul {
    gap: 2em;
  }
  .site-footer .block-contact ul li a {
    text-align: left;
    width: auto;
  }
}
@media screen and (max-width: 500px) {
  .site-footer .block-contact {
    flex-direction: column;
    gap: 1em;
  }
  .site-footer .block-contact .label {
    display: block;
  }
  .site-footer .block-links {
    flex-direction: column;
  }
  .site-footer .block-links ul.menu {
    flex-direction: column;
  }
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

#footer-cloned {
  z-index: -1000;
  visibility: hidden;
  opacity: 0;
}

.icon.theme-custom.theme-search {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: var(--icon-size, 1em);
  height: var(--icon-size, 1em);
  background: url(images/search.svg) no-repeat 50% 50%;
  background-size: contain;
  border: 0;
}
@media screen and (max-width: 1100px) {
  .icon.theme-custom.theme-search {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }
}

.wrap {
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 1544.8275862069px) {
  .wrap {
    margin: 0 4.6875%;
  }
}

.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) * -1);
  margin-right: calc(var(--gutter-right) * -1);
}
#wrap > .theme-block.has-background {
  margin-top: 0;
  margin-bottom: 0;
}

body.has-js .appear-on-scroll {
  opacity: 0;
}
body.has-js .appear-on-scroll.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.appeared {
  opacity: 1;
  transform: translate(0px, 0px);
}
body.no-js .appear-on-scroll {
  opacity: 1;
  transform: none;
}

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

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

.main-content {
  --padding-bottom: calc(var(--block-margin, 4rem) * 1);
  --block-size: clamp(4.444rem, 20.484vw + 0.006rem, 14.444rem);
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  background: var(--background-color);
  color: var(--color);
}
body.has-transparent-header .main-content {
  margin-top: calc(var(--header-height, 90px) * -1);
}
.main-content > .layout {
  position: relative;
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: ". title ." ". blocks ." ". filters ." ". posts ." ". pager .";
}
.main-content .page-blocks {
  position: relative;
  grid-area: blocks;
  min-height: 50vh;
}
body.archive .main-content .page-blocks {
  min-height: 0;
}
.main-content .block-page-title {
  grid-area: title;
  margin: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 0.5);
}
.main-content .block-page-title h1 {
  max-width: none;
  text-transform: none;
}
.single-post .main-content .block-page-title h1, .single-resource .main-content .block-page-title h1, .single-action .main-content .block-page-title h1 {
  font-size: clamp(1.556rem, 2.39vw + 1.038rem, 2.722rem);
  line-height: 1.11;
}
@media screen and (max-width: 767px) {
  .single-post .main-content .block-page-title h1, .single-resource .main-content .block-page-title h1, .single-action .main-content .block-page-title h1 {
    line-height: 1.08;
  }
}
.main-content .block-page-title .subtitle {
  margin: 0 auto;
  max-width: 20em;
  font-size: clamp(1.111rem, 0.683vw + 0.963rem, 1.444rem);
}
.main-content .block-filters {
  grid-area: filters;
}
.main-content .query-posts {
  grid-area: posts;
}
.main-content .block-pager {
  grid-area: pager;
  margin: calc(var(--block-margin, 4rem) * 1.75) 0;
}
@media screen and (max-width: 767px) {
  .main-content .block-pager {
    margin: calc(var(--block-margin, 4rem) * 1) 0;
  }
}
.main-content .block-featured-image {
  grid-area: featured;
}
.main-content .block-featured-image .image {
  position: relative;
  z-index: 1;
  width: calc(var(--block-size) * 2);
  height: calc(var(--block-size) * 2);
  margin: 0 0 0 auto;
  background: var(--featured-image-background-color, #005F4E);
}
.main-content .block-featured-image .image 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%);
  border-radius: var(--image-border-radius, 50%);
}
.main-content .block-featured-image.no-crop {
  --image-border-radius: 0;
}
.main-content .block-meta-top {
  grid-area: meta-top;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.main-content .block-meta-top a {
  text-decoration: none;
}
.main-content .block-meta-top a:hover {
  text-decoration: underline;
}
.main-content .block-meta-top .post-type {
  display: inline-block;
  padding: 0.6em 1em;
  margin-right: 0.5em;
  background: #38B9FF;
}
.main-content .block-meta-top .post-type.action {
  background-color: #38B9FF;
}
.main-content .block-meta-top .post-type.resource {
  background-color: #38B9FF;
}
.main-content .block-meta-bottom {
  grid-area: meta-bottom;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  padding: calc(var(--block-margin, 4rem) * 0.25) 0 0;
  border-top: 2px solid currentColor;
  font-size: 0.8em;
  text-transform: uppercase;
  gap: 2em;
  font-weight: 600;
}
.main-content .block-meta-bottom a {
  text-decoration: none;
}
.main-content .block-meta-bottom a:hover {
  text-decoration: underline;
}
.main-content .block-meta-bottom .social-share {
  display: inline-flex;
  gap: 0.5em;
}
.main-content .block-meta-bottom .social-share a {
  display: inline-block;
  padding: 0 0 0 1em;
  position: relative;
}
.main-content .block-meta-bottom .social-share a:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 22px;
  height: 22px;
  z-index: -1;
  background-color: transparent;
  transition: 0.2s ease;
  left: var(--hover-space, 8px);
}
.main-content .block-meta-bottom .social-share a:hover:before {
  background-color: var(--hover-color, #38B9FF);
}
.main-content .block-meta-bottom .social-share a:nth-of-type(2) {
  --hover-color: #ffb600;
  --hover-space: 10px;
}
@media screen and (max-width: 767px) {
  .main-content .block-meta-bottom .social-share {
    margin-top: calc(var(--block-margin, 4rem) * 0.25);
  }
}
@media screen and (max-width: 767px) {
  .main-content .block-meta-bottom {
    flex-direction: column;
    gap: 0;
  }
}
.main-content .block-promo-bottom {
  grid-area: promo-bottom;
  margin: calc(var(--block-margin, 4rem) * 1) 0;
}
.main-content .block-promo-bottom .hentry.promo {
  padding-top: calc(var(--block-margin, 4rem) * 0.75);
  padding-bottom: calc(var(--block-margin, 4rem) * 0.75);
}
.main-content .block-related {
  grid-area: related;
  padding: 0 var(--gutter-right) calc(var(--block-margin, 4rem) * 0.5) var(--gutter-left);
  margin: calc(var(--block-margin, 4rem) * 2) calc(var(--gutter-right) * -1) 0 calc(var(--gutter-left) * -1);
}
.main-content .block-related h2 {
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
  padding: 0 0 calc(var(--block-margin, 4rem) * 0.5);
}
.main-content .block-related h2 span {
  display: inline-block;
  max-width: 10em;
}
.main-content .hr-blocks {
  grid-area: hr;
  margin: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 0.98);
  height: calc(var(--block-margin, 4rem) * 0.7);
  display: grid;
  grid-template-columns: var(--gutter-left) 3fr 2fr 1fr var(--gutter-right);
}
.main-content .hr-blocks .block {
  position: relative;
  grid-row: 1/2;
}
.main-content .hr-blocks .block:nth-child(1) {
  grid-column: 1/2;
  background: #BC195B;
}
.main-content .hr-blocks .block:nth-child(2) {
  grid-column: 2/3;
  background: #BC195B;
}
.main-content .hr-blocks .block:nth-child(3) {
  grid-column: 3/4;
  background: #ffb600;
}
.main-content .hr-blocks .block:nth-child(4) {
  grid-column: 4/5;
  background: #ffb600;
}
.main-content .hr-blocks .block:nth-child(5) {
  grid-column: 5/6;
  background: #ffb600;
}

.main-content.action {
  --wp-block-group-padding-multiplier: 1;
}
.main-content.action > .layout {
  padding-top: calc(var(--block-margin, 4rem) * 3);
  grid-template-areas: ". meta-top ." ". title ." "hr hr hr" ". blocks ." ". meta-bottom ." ". related .";
}
.main-content.action .page-blocks,
.main-content.action .block-meta-bottom {
  margin-left: auto;
  margin-right: auto;
  max-width: 740px;
}
.main-content.action .block-page-title {
  text-align: center;
  margin: 0;
}
.main-content.action .block-meta-top {
  justify-content: center;
}

.section-take-action .main-content .query-posts {
  row-gap: 2rem;
}

.main-content.post,
.main-content.state {
  --main-content-width: 750px;
  --page-gutter: calc((100vw - var(--gutter-left) - var(--gutter-right) - var(--main-content-width)) / 2);
  --featured-image-background-color: #38B9FF;
  /*
  .block-featured-image {
      grid-column-start: start-main;
      grid-column-end: end-main;
      grid-row: 1/2;


  }*/
}
.main-content.post > .layout,
.main-content.state > .layout {
  padding: calc(var(--block-margin, 4rem) * 1) 0 0;
  grid-template-columns: var(--gutter-left) var(--page-gutter) [start-main] minmax(0, 1fr) [end-main] var(--page-gutter) var(--gutter-right);
  grid-template-rows: auto;
}
.main-content.post.has-featured-image > .layout,
.main-content.state.has-featured-image > .layout {
  grid-template-areas: ". top top top ." "hr hr hr hr hr" ". . blocks . ." ". . meta-bottom . ." ". . promo-bottom . ." ". related related related .";
}
.main-content.post.has-featured-image .block-top,
.main-content.state.has-featured-image .block-top {
  position: relative;
  padding: 0 0 calc(var(--block-margin, 4rem) * 0.45);
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.98);
  grid-area: top;
  display: grid;
  grid-template-columns: 1fr calc(var(--block-margin, 4rem) * 1) calc(var(--block-size) * 2 + var(--block-margin, 4rem) * 2);
  grid-template-rows: 1fr auto;
  grid-template-areas: "meta-top . featured" "title . featured";
  border-bottom: 2px solid currentColor;
}
.main-content.post.has-featured-image .block-meta-top,
.main-content.state.has-featured-image .block-meta-top {
  align-self: end;
}
.main-content.post.has-featured-image .block-featured-image,
.main-content.state.has-featured-image .block-featured-image {
  align-self: end;
  position: relative;
  height: calc(var(--block-size) * 2);
}
.main-content.post.has-featured-image .block-featured-image:before, .main-content.post.has-featured-image .block-featured-image:after,
.main-content.state.has-featured-image .block-featured-image:before,
.main-content.state.has-featured-image .block-featured-image:after {
  content: " ";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0;
}
.main-content.post.has-featured-image .block-featured-image:before,
.main-content.state.has-featured-image .block-featured-image:before {
  top: 0;
  background: #ffb600;
}
.main-content.post.has-featured-image .block-featured-image:after,
.main-content.state.has-featured-image .block-featured-image:after {
  bottom: 0;
  background: #BC195B;
}
@media screen and (max-width: 1024px) {
  .main-content.post.has-featured-image .block-top,
  .main-content.state.has-featured-image .block-top {
    grid-template-columns: 1fr calc(var(--block-margin, 4rem) * 1) calc(var(--block-size) * 2 + var(--block-margin, 4rem) * 1);
  }
}
@media screen and (max-width: 767px) {
  .main-content.post.has-featured-image .block-top,
  .main-content.state.has-featured-image .block-top {
    grid-template-columns: auto;
    grid-template-areas: "featured" "meta-top" "title";
  }
  .main-content.post.has-featured-image .block-featured-image,
  .main-content.state.has-featured-image .block-featured-image {
    margin: 0 auto calc(var(--block-margin, 4rem) * 0.5) 0;
    padding-right: calc(var(--block-margin, 4rem) * 1);
  }
}
.main-content.post.no-featured-image > .layout,
.main-content.state.no-featured-image > .layout {
  padding-top: calc(var(--block-margin, 4rem) * 3);
  grid-template-columns: var(--gutter-left) var(--page-gutter) [start-main] minmax(0, 1fr) [end-main] var(--page-gutter) var(--gutter-right);
  grid-template-areas: ". meta-top meta-top meta-top ." ". title    title    title    ." "hr hr hr hr hr" ". . blocks . ." ". . meta-bottom . ." ". . promo-bottom . ." ". related related related .";
}
.main-content.post.no-featured-image .block-page-title,
.main-content.post.no-featured-image .block-meta-top,
.main-content.state.no-featured-image .block-page-title,
.main-content.state.no-featured-image .block-meta-top {
  text-align: center;
}
.main-content.post.no-featured-image .block-meta-top,
.main-content.state.no-featured-image .block-meta-top {
  justify-content: center;
}
.main-content.post .block-page-title,
.main-content.state .block-page-title {
  margin: 0;
}

.main-content.state {
  --page-gutter: calc((100vw - var(--gutter-left) - var(--gutter-right) - var(--main-content-width)) / 2);
}
.main-content.state .page-blocks {
  padding-bottom: calc(var(--block-margin, 4rem) * 1);
  min-height: 20vh;
}
.main-content.state .block-page-title {
  margin-bottom: calc(var(--block-margin, 4rem) * 0.25);
}
.main-content.state .block-page-title h1 {
  max-width: none;
}
.main-content.state .block-filters {
  padding-top: 0;
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
  padding: 0 0 calc(var(--block-margin, 4rem) * 0.25);
  text-align: center;
}
.main-content.state .block-filters .block-title {
  margin-top: calc(var(--block-margin, 4rem) * 2);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.25);
  padding: calc(var(--block-margin, 4rem) * 0.25) 0 0;
  text-align: left;
}
.main-content.state .block-filters .block-title:after {
  content: " ";
  display: block;
  height: 2px;
  background: currentColor;
  margin: calc(var(--block-margin, 4rem) * 0.25) 0 0;
  transition: 0.4s ease-in-out;
}
.main-content.state .block-filters .block-title.appear-on-scroll:after {
  width: 0;
}
.main-content.state .block-filters .block-title.appear-on-scroll.appeared:after {
  width: 100%;
}
.main-content.state .block-filters .block-title > .text {
  display: inline-block;
}
.main-content.state .last-updated {
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
  font-style: italic;
  font-size: 0.8em;
  font-weight: 400;
}
@media screen and (min-width: 1025px) {
  .main-content.state > .layout {
    grid-template-areas: ". title  title title  ." ". blocks blocks blocks ." ".  filters filters filters  ." ".  posts posts posts  ." ".  pager pager pager  .";
  }
}
@media screen and (max-width: 1200px) {
  .main-content.state > .layout {
    grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  }
}
.main-content.state .wp-block-group.is-style-full-width {
  margin-top: 0;
}

.main-content.team {
  --featured-image-background-color: #38B9FF;
  padding: calc(var(--block-margin, 4rem) * 1) 0 0;
}
.main-content.team > .layout {
  grid-template-columns: var(--gutter-left) calc(var(--block-size) * 2) calc(var(--block-margin, 4rem) * 1.5) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: ". featured . . ." ". featured . title ." ". sep sep sep ." ". . . blocks ." ". . . meta-bottom ." ". related related related .";
}
.main-content.team > .layout:before {
  content: " ";
  display: block;
  grid-area: sep;
  height: 2px;
  width: 100%;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 calc(var(--block-margin, 4rem) * 1);
  background: currentColor;
}
.main-content.team .page-blocks {
  min-height: 25vh;
}
.main-content.team .block-page-title {
  margin: 0;
}
.main-content.team .block-page-title h1 {
  margin-bottom: 0.5rem;
}
.main-content.team .block-page-title .subtitle {
  margin-left: 0;
}
@media screen and (max-width: 940px) {
  .main-content.team > .layout {
    grid-template-columns: var(--gutter-left) auto var(--gutter-right);
    grid-template-areas: ". featured ." ". title ." ". sep ." ". blocks ." ". meta-bottom ." ". related .";
  }
  .main-content.team .block-featured-image {
    max-width: 385px;
    margin: 0 0 calc(var(--block-margin, 4rem) * 0.75);
  }
  .main-content.team .block-featured-image .image {
    height: auto;
    width: auto;
    padding: 0 0 100% 0;
  }
}

.main-content.search > .layout {
  grid-template-areas: ". title ." ". results ." ". posts ." ". pager ." ". search .";
}
.main-content.search .block-search {
  grid-area: search;
  margin-top: calc(var(--block-margin, 4rem) * 1);
  width: 100%;
}
.main-content.search .block-search .field {
  display: flex;
  align-items: center;
  border-radius: 50px;
  padding: 0 0 0 1em;
  gap: 1em;
}
.main-content.search .block-search .field input[type=text] {
  flex-grow: 1;
  padding: 0.4em 1em;
  border: 2px solid #000000;
  border-radius: 50px;
  font-weight: 600;
}
.main-content.search .block-search .field button {
  box-sizing: border-box;
  border: 2px solid #000000;
  background-color: #000000;
}
.main-content.search .block-search .field button:hover {
  background-color: transparent;
  color: #000000;
}
.main-content.search .block-search .field ::-webkit-input-placeholder {
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
.main-content.search .block-search .field :-moz-placeholder {
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
.main-content.search .block-search .field ::-moz-placeholder {
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
.main-content.search .block-search .field :-ms-input-placeholder {
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
}
@media screen and (max-width: 500px) {
  .main-content.search .block-search .field {
    flex-direction: column;
    padding: 0;
  }
  .main-content.search .block-search .field input[type=text] {
    width: 100%;
  }
}
.main-content.search .block-search-results {
  grid-area: results;
  width: 100%;
  max-width: 52rem;
  margin: 0 auto calc(var(--block-margin, 4rem) * 1);
  padding: 0.5em 0 0;
  display: grid;
  align-items: start;
  gap: 1em;
  grid-template-columns: 1fr auto;
  grid-template-areas: "desc sort";
  border-top: 1px solid rgba(85, 85, 85, 0.3);
}
.main-content.search .block-search-results .description {
  grid-area: desc;
}
.main-content.search .block-search-results .sort {
  grid-area: sort;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.main-content.search .block-page-title {
  text-align: center;
}
.main-content.search .block-search,
.main-content.search .query-posts {
  margin-left: auto;
  margin-right: auto;
  max-width: 52rem;
}
@media screen and (max-width: 700px) and (min-width: 501px) {
  .main-content.search .block-search-results .sort {
    gap: 0.25em;
    flex-direction: column;
    align-items: end;
  }
}
@media screen and (max-width: 500px) {
  .main-content.search .block-search-results {
    grid-template-columns: auto;
    grid-template-areas: "desc" "sort";
  }
}

.main-content.program:before {
  content: " ";
  display: block;
  height: var(--block-size);
  background: linear-gradient(90deg, #ffb600 0%, #ffb600 32%, #02AA8C 32%, #02AA8C 43%, #FF4A1A 43%, #FF4A1A 61%, #38B9FF 61%, #38B9FF 100%);
}
.main-content.program .block-page-title {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "post-type subtitle" "title title";
  align-items: center;
  gap: 1rem;
  margin: calc(var(--block-margin, 4rem) * 1) 0 calc(var(--block-margin, 4rem) * 2);
}
.main-content.program .block-page-title .post-type,
.main-content.program .block-page-title .subtitle {
  line-height: 1;
}
.main-content.program .block-page-title .post-type {
  grid-area: post-type;
  display: inline-block;
  padding: 0.5em 0.7em;
  background: #8DAAFC;
  font-weight: 600;
  text-transform: uppercase;
}
.main-content.program .block-page-title .subtitle {
  grid-area: subtitle;
  display: block;
  font-size: clamp(1rem, 0.683vw + 0.852rem, 1.333rem);
  text-transform: none;
  margin: 0;
}
.main-content.program .block-page-title h1 {
  grid-area: title;
  text-transform: none;
  max-width: 16em;
}
@media screen and (max-width: 500px) {
  .main-content.program .block-page-title {
    margin-bottom: calc(var(--block-margin, 4rem) * 1.5);
    grid-template-areas: "post-type ." "subtitle subtitle" "title title";
  }
}
.main-content.program h2.is-style-section-heading,
.main-content.program .wp-block-group.has-background {
  margin-top: calc(var(--block-margin, 4rem) * 1.65);
}
@media screen and (max-width: 767px) {
  .main-content.program h2.is-style-section-heading,
  .main-content.program .wp-block-group.has-background {
    margin-top: calc(var(--block-margin, 4rem) * 1.8);
  }
}
@media screen and (max-width: 767px) {
  .main-content.program h2.has-subheading:before {
    margin-bottom: 0.5rem;
  }
  .main-content.program .wp-block-group.has-background {
    padding: calc(var(--block-margin, 4rem) * 1);
  }
}

body.theme .page-blocks > .has-background + .has-background {
  margin-top: calc(calc(var(--block-margin, 4rem) * -1) - 1px);
}

ul.social-icons {
  --size:1.5em;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1em;
}
ul.social-icons a {
  display: inline-block;
  width: var(--size);
  height: var(--size);
  line-height: var(--size);
  text-align: center;
  border-radius: 50%;
  font-size: 24px;
}

#query-posts.loading {
  min-height: 25vh;
}
#query-posts.loading:before {
  position: absolute;
  right: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}

.theme-block.search .fields {
  display: flex;
  gap: 1em;
}
.theme-block.search .fields input[type=text] {
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .theme-block.search .fields {
    flex-direction: column;
  }
}

.social-links {
  gap: 1.5rem;
}

.error404 .wp-block-buttons {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}
.error404 .wp-block-buttons > * {
  flex-basis: 100%;
}
@media screen and (max-width: 767px) {
  .error404 .wp-block-buttons {
    flex-direction: column;
  }
}

.button-toggle {
  --border-radius: 100px;
  --button-color: #FF4A1A;
  display: inline-flex;
  border: 2px solid var(--button-color);
  border-radius: var(--border-radius);
}
.button-toggle > a {
  display: inline-block;
  padding: 0.5em 1em;
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
}
.button-toggle > a.on {
  background: var(--button-color);
}
.button-toggle > a:first-child {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}
.button-toggle > a:last-child {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

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

.slick-arrow {
  --arrow-size: 40px;
  margin: 0;
  cursor: pointer;
  font-size: 30px;
  color: var(--color, #000000);
  width: var(--arrow-size);
  height: var(--arrow-size);
  line-height: var(--arrow-size);
  transition: background-color 0.2s ease, transform 0.2s ease, margin 0.2s ease;
  text-align: center;
}
.slick-arrow .icon {
  transition: all 0.2s ease;
}
.slick-arrow.slick-disabled {
  cursor: default;
  opacity: 0.1;
}

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

#posts-filter {
  --gap: 1.3em;
  margin: 0 0 calc(var(--block-margin, 4rem) * 1);
}
#posts-filter .layout {
  display: grid;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  gap: var(--gap);
  align-items: center;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas: "title title title title" "type type message message" "filters filters filters  reset";
}
#posts-filter .block-title {
  grid-area: title;
  text-align: center;
  margin: 1rem auto;
}
#posts-filter.hide .layout {
  grid-template-columns: auto;
  grid-template-areas: "title";
}
#posts-filter.hide .post-types,
#posts-filter.hide .filters,
#posts-filter.hide .message,
#posts-filter.hide .reset {
  display: none !important;
}
#posts-filter .post-types {
  grid-area: type;
  display: flex;
  gap: var(--gap);
}
#posts-filter .post-types input[type=radio] {
  position: absolute;
  visibility: hidden;
}
#posts-filter .post-types label {
  display: inline-block;
  border: 2px solid currentColor;
  padding: 0.6rem 1.35rem;
  border-radius: 50px;
  line-height: 1;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  font-size: 0.8888888889rem;
  font-family: "Source Sans 3", sans-serif;
  cursor: pointer;
  transition: 0.2s ease;
}
#posts-filter .post-types label:hover {
  background-color: var(--checked-background-color, #000000);
  border-color: var(--checked-background-color, #000000);
  color: var(--checked-text-color, white);
}
#posts-filter .post-types label:nth-of-type(2) {
  --checked-background-color: #38B9FF;
  --checked-text-color: #000000;
}
#posts-filter .post-types label:nth-of-type(3) {
  --checked-background-color: #ffb600;
  --checked-text-color: #000000;
}
#posts-filter .post-types input[type=radio]:checked + label {
  background-color: var(--checked-background-color, #000000);
  border-color: var(--checked-background-color, #000000);
  color: var(--checked-text-color, white);
}
#posts-filter .post-types input[type=radio]:checked + label:nth-of-type(2) {
  --checked-background-color: #38B9FF;
  --checked-text-color: #000000;
}
#posts-filter .post-types input[type=radio]:checked + label:nth-of-type(3) {
  --checked-background-color: #ffb600;
  --checked-text-color: #000000;
}
#posts-filter .filters {
  grid-area: filters;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
}
#posts-filter .filters .filter {
  --border-radius: 1.3em;
  --icon-size: .7em;
  --padding:.75em;
  --font-size: 1rem;
  line-height: 1.13;
  flex-grow: 1;
  flex-basis: 100%;
}
#posts-filter .filters .filter.select.off {
  display: none;
}
#posts-filter .filters .filter.text {
  --icon-size:1em;
  display: flex;
  align-items: center;
  gap: 1em;
}
#posts-filter .filters .filter.text .input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: var(--border-radius);
}
#posts-filter .filters .filter.text .input input[type=text] {
  flex-grow: 1;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: calc(var(--padding) - 3px) 1.2em;
  background: none;
  border: 0;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: var(--font-size);
  color: inherit;
}
#posts-filter .filters .filter.text .input ::-webkit-input-placeholder {
  color: var(--color, inherit);
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#posts-filter .filters .filter.text .input :-moz-placeholder {
  color: var(--color, inherit);
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#posts-filter .filters .filter.text .input ::-moz-placeholder {
  color: var(--color, inherit);
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#posts-filter .filters .filter.text .input :-ms-input-placeholder {
  color: var(--color, inherit);
  text-transform: uppercase;
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#posts-filter .filters .filter.text .input .icon {
  position: absolute;
  right: 1em;
}
#posts-filter .filters .filter.text .input button {
  padding: 0.25em 1.2em;
  margin: 0;
  border-radius: 0;
  border: 0;
  background: none;
}
#posts-filter .filters .filter.text .input button:hover {
  color: inherit;
}
#posts-filter .message {
  grid-area: message;
  text-align: right;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(0.667rem, 0.228vw + 0.617rem, 0.778rem);
  line-height: 1.15;
}
#posts-filter .reset {
  grid-area: reset;
  align-self: stretch;
}
#posts-filter .reset button {
  height: 100%;
  background-color: #000000;
  transition: 0.2s ease;
  border: 2px solid #000000;
}
#posts-filter .reset button:hover {
  background-color: transparent;
  color: #000000;
}
@media screen and (max-width: 767px) {
  #posts-filter .layout {
    grid-template-columns: 1fr auto;
    grid-template-areas: "title title " "type type" "filters filters" "reset message";
  }
  #posts-filter .filters {
    flex-direction: column;
  }
  #posts-filter .filters .filter {
    width: 100%;
  }
  #posts-filter .message {
    text-align: left;
  }
}
@media screen and (max-width: 520px) {
  #posts-filter .post-types {
    --gap: .5em;
  }
  #posts-filter .post-types label {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #posts-filter .post-types .text-view {
    display: none;
  }
}

#inline-filter {
  max-width: 700px;
  margin: calc(var(--block-margin, 4rem) * 1.5) 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
#inline-filter .field {
  flex-grow: 1;
  display: flex;
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 50px;
  padding: 2px;
}
#inline-filter .field input[type=text] {
  flex-grow: 1;
  border: 0;
  padding: 0em 1em;
  background: none;
  border-radius: 50px 0 0 50px;
  font-weight: 600;
}
#inline-filter .field input[type=text] ::-webkit-input-placeholder {
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#inline-filter .field input[type=text] :-moz-placeholder {
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#inline-filter .field input[type=text] ::-moz-placeholder {
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#inline-filter .field input[type=text] :-ms-input-placeholder {
  font-size: 0.8888888889rem;
  font-weight: 600;
}
#inline-filter .field button[type=reset] {
  position: relative;
  background: #999;
  padding: 0.5em;
  margin: 0;
  width: 2rem;
  height: 2rem;
  line-height: 1rem;
  box-sizing: border-box;
  text-align: center;
}
#inline-filter .field button[type=reset] .icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#inline-filter .field button[type=reset] .icon:before, #inline-filter .field button[type=reset] .icon:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 2px;
  background: white;
  margin: -1px 0 0;
  transform-origin: 50% 50%;
}
#inline-filter .field button[type=reset] .icon:before {
  transform: rotate(45deg);
}
#inline-filter .field button[type=reset] .icon:after {
  transform: rotate(-45deg);
}
#inline-filter .field ::-webkit-input-placeholder {
  font-weight: 500;
  text-transform: uppercase;
  opacity: 1;
  color: inherit;
}
#inline-filter .field :-moz-placeholder {
  font-weight: 500;
  text-transform: uppercase;
  opacity: 1;
  color: inherit;
}
#inline-filter .field ::-moz-placeholder {
  font-weight: 500;
  text-transform: uppercase;
  opacity: 1;
  color: inherit;
}
#inline-filter .field :-ms-input-placeholder {
  font-weight: 500;
  text-transform: uppercase;
  opacity: 1;
  color: inherit;
}
#inline-filter.filtered .field button[type=reset] {
  background-color: #000000;
}
#inline-filter.no-results:after {
  width: 100%;
  content: "No results found.";
}
@media screen and (max-width: 500px) {
  #inline-filter {
    flex-wrap: wrap;
  }
  #inline-filter .field {
    width: 100%;
  }
}

#cookie-mask {
  position: fixed;
  z-index: 999999;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}

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

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

body.search-results .gsc-refinementHeader {
  color: #FF4A1A;
}
body.search-results .gsc-control-cse {
  border: 0;
  background: none;
}
body.search-results .gsc-control-cse .gsc-table-result {
  font-size: 1rem;
}
body.search-results .gs-webResult.gs-result a.gs-title {
  color: #000000;
  font-size: clamp(1.111rem, 0.91vw + 0.914rem, 1.556rem);
}
body.search-results .gs-webResult.gs-result a.gs-title:hover {
  text-decoration: underline;
}
body.search-results .gs-webResult.gs-result a.gs-title b {
  color: inherit;
  font-size: inherit;
}
body.search-results .gs-webResult div.gs-visibleUrl {
  color: #666;
}
body.search-results .gsc-results .gsc-cursor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
  gap: 0.5em;
}
body.search-results .gsc-results .gsc-cursor-box {
  text-align: center;
}
body.search-results .gsc-results .gsc-cursor-box .gsc-cursor-page {
  display: inline-block;
  padding: 0.5em;
  color: #FF4A1A;
  margin: 0;
}
body.search-results .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
  color: #000000;
}
body.search-results .gcsc-find-more-on-google-magnifier {
  fill: #aaa;
}
body.search-results .gcsc-find-more-on-google {
  color: #aaa;
}

#alert {
  z-index: 1002;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: 0 calc(var(--block-margin, 4rem) * 1);
  background: #FF4A1A;
  color: #000000;
  transition: transform 0.4s ease-in-out;
  transform: translate(0%, 0%);
}
body.scrolled #alert {
  transform: translate(0, -100%);
}
body.scrolled.admin-bar #alert {
  transform: translate(0, calc(-100% - var(--wp-admin--admin-bar--height, 0px)));
}
#alert .block-title {
  position: relative;
  z-index: 1011;
  padding: 0.9em 0;
  margin: 0;
  border: 0;
  text-align: center;
  line-height: 1.2;
  font-size: 1.25em;
  background: inherit;
  color: inherit;
}
@media screen and (max-width: 767px) {
  #alert .block-title {
    font-size: 1rem;
  }
}
#alert.has-content .block-title {
  cursor: pointer;
}
#alert .block-content {
  --gutter-left: calc((100vw - 1024px) / 2);
  --gutter-right: calc((100vw - 1024px) / 2);
  position: absolute;
  z-index: 1007;
  top: 0%;
  left: 0;
  width: 100%;
  padding: 2em var(--gutter-right) 2em var(--gutter-left);
  box-sizing: border-box;
  background: #FF4A1A;
  color: #000000;
  transform: translate(0, -100%);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
@media screen and (max-width: 1129.9310344828px) {
  #alert .block-content {
    --gutter-left: 4.6875vw;
    --gutter-right: 4.6875vw;
  }
}
#alert .block-close {
  --icon-size: 40px;
  position: absolute;
  z-index: 1012;
  top: 50%;
  right: 1em;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-top: calc(var(--icon-size) * -0.5);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  cursor: pointer;
}
#alert .block-close .icon {
  display: block;
  font-size: calc(var(--icon-size) * 0.8);
  line-height: var(--icon-size);
  text-align: center;
}
body.alert-on #alert .block-content {
  transform: translate(0, 0);
  opacity: 1;
  top: 100%;
}
body.alert-on #alert .block-close {
  opacity: 1;
  transform: rotate(90deg);
}
body.scrolled #alert .block-content {
  transform: translate(0, -100%);
}

.wp-block-theme-blocks-hero {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 80vh;
  padding: calc(var(--header-height, 0px) + calc(var(--block-margin, 4rem) * 2)) 0 calc(var(--block-margin, 4rem) * 2) 0;
  overflow: hidden;
}
.wp-block-theme-blocks-hero.is-style-full-width {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
}
.wp-block-theme-blocks-hero .block-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-hero .block-image img {
  display: block;
  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%;
}
.wp-block-theme-blocks-hero .block-content {
  position: relative;
  z-index: 1;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-hero h1 + .wp-block-buttons {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-hero .wp-block-button:not(.is-style-arrow) > .wp-block-button__link:hover {
  background: #000000 !important;
}

.wp-block-theme-blocks-policy-list {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  margin: 0;
  padding: 0 1em 1em 0;
  font-weight: 500;
  font-size: var(--font-size, 16px);
}
.wp-block-theme-blocks-policy-list .heading.h5,
.wp-block-theme-blocks-policy-list h5 {
  color: #585858;
  padding: 0 0 1em;
  margin-bottom: 1em;
  border-bottom: 2px solid #000000;
}
.wp-block-theme-blocks-policy-list a {
  line-height: 1.3;
}
.wp-block-theme-blocks-policy-list ul {
  margin: 0;
  padding: 0 2em 0 0;
  list-style: none;
}
.wp-block-theme-blocks-policy-list ul > li {
  margin-block-end: var(--li-gap, 0.5em);
  line-height: 1.35;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-policy-list ul > li {
    font-size: 1.05rem;
  }
}
.wp-block-theme-blocks-policy-list ul > li:last-child {
  margin-block-end: 0;
}
@media screen and (min-width: 767px) and (min-height: 900px) {
  .wp-block-theme-blocks-policy-list {
    --font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-policy-list {
    padding-right: 0;
  }
}

.wp-block-theme-blocks-media-text {
  --padding: calc(var(--block-margin, 4rem) * 0.5);
  display: grid;
  gap: 0px;
}
.wp-block-theme-blocks-media-text:first-child, .is-style-section-heading + .wp-block-theme-blocks-media-text {
  border-top: 0;
  padding-top: 0;
  margin-top: 0;
}
.wp-block-theme-blocks-media-text .block-embed {
  grid-area: embed;
}
.wp-block-theme-blocks-media-text .block-content {
  grid-area: content;
  padding: clamp(1.111rem, 5.69vw + -0.122rem, 3.889rem) var(--padding) var(--padding) var(--gutter-left);
}
.wp-block-theme-blocks-media-text .block-content p:not(.is-style-intro) {
  max-width: 520px;
}
.wp-block-theme-blocks-media-text .block-content.is-style-no-padding {
  padding-top: 0;
}
.wp-block-theme-blocks-media-text.is-style-content-right .block-content {
  padding-right: var(--gutter-right);
  padding-left: var(--padding);
}
@media screen and (min-width: 1400px) {
  .wp-block-theme-blocks-media-text.theme-block .block-embed {
    width: 700px;
  }
  .wp-block-theme-blocks-media-text.theme-block.is-style-content-right .block-embed {
    justify-self: end;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-media-text {
    grid-template-columns: var(--left-column, 1fr) var(--right-column, 1fr);
    grid-template-areas: "content embed";
  }
  .wp-block-theme-blocks-media-text.is-style-content-right {
    grid-template-areas: "embed content";
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-media-text {
    grid-template-columns: auto;
    grid-template-areas: "embed" "content";
    margin: calc(var(--block-margin, 4rem) * 1) 0;
  }
}

.wp-block-theme-blocks-color-bars {
  --row-height: clamp(4.444rem, 20.484vw + 0.006rem, 14.444rem);
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: var(--gutter-left) repeat(calc(var(--grid-columns, 12) - 2), 1fr) var(--gutter-right);
  grid-auto-rows: var(--row-height);
}
.wp-block-theme-blocks-color-bars .block {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  grid-column: var(--column-start)/span var(--column-span, 1);
  grid-row: var(--row-start)/span var(--row-span, 1);
  background: var(--background-color, rgba(0, 0, 0, 0.5));
}

.wp-block-theme-blocks-page-banner {
  --block-size: clamp(4.444rem, 20.484vw + 0.006rem, 14.444rem);
  position: relative;
  padding: 0;
  display: grid;
  grid-template-columns: var(--gutter-left) repeat(calc(var(--grid-columns, 8) - 1), 1fr) calc(var(--block-size) * 2);
  grid-template-rows: repeat(2, var(--block-size)) auto;
}
.wp-block-theme-blocks-page-banner, .wp-block-theme-blocks-page-banner:last-child {
  margin-bottom: calc(var(--block-margin, 4rem) * 2);
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-page-banner, .wp-block-theme-blocks-page-banner:last-child {
    margin-bottom: calc(var(--block-margin, 4rem) * 1);
  }
}
.wp-block-theme-blocks-page-banner .block-photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: calc(var(--block-size) * 2);
  height: calc(var(--block-size) * 2);
  margin: 0;
  background: var(--media-background-color, #eee);
}
.wp-block-theme-blocks-page-banner .block-photo img {
  display: block;
  position: absolute;
  padding: 0;
  margin: 0;
  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%);
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}
.wp-block-theme-blocks-page-banner .block-photo.trigger-on-scroll img {
  -webkit-clip-path: circle(0%);
          clip-path: circle(0%);
  opacity: 0;
}
.wp-block-theme-blocks-page-banner .block-photo.trigger-on-scroll.appeared img {
  -webkit-clip-path: circle(100%);
          clip-path: circle(100%);
  opacity: 1;
}
.wp-block-theme-blocks-page-banner .block-title {
  position: relative;
  z-index: 1;
  grid-column: 1/span var(--title-column-span, 4);
  grid-row: 2/4;
  margin: 0;
  padding: 0 0 calc(var(--block-margin, 4rem) * 0.5) var(--gutter-left);
  align-self: end;
}
.wp-block-theme-blocks-page-banner .block {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  grid-column: var(--column-start)/span var(--column-span, 1);
  grid-row: var(--row-start)/span var(--row-span, 1);
  background: var(--background-color, rgba(0, 0, 0, 0.5));
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-page-banner .block-title {
    margin: 2.4rem 0 0;
    padding: 0 var(--gutter-right) 0 var(--gutter-left);
    grid-row: 3/4;
    grid-column: 1/-1;
    max-width: 10em;
  }
}

.theme-block.wp-block-theme-blocks-page-banner {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

.wp-block-theme-blocks-page-banner.is-style-ffa {
  --columns-count: 8;
  --block-size: clamp(4.444rem, 3.983vw + 3.581rem, 6.389rem);
  grid-template-columns: var(--gutter-left) repeat(var(--grid-columns, var(--columns-count)), 1fr) var(--gutter-right);
  grid-template-rows: repeat(4, var(--block-size));
  margin-top: 0;
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-page-banner.is-style-ffa .block-title {
  grid-column: 2/5;
  grid-row: 1/5;
  padding: 0 1rem 2rem 0;
  font-size: calc(var(--block-size) * 0.7);
  line-height: 1.1;
}
.wp-block-theme-blocks-page-banner.is-style-ffa .block-photo {
  position: relative;
  top: auto;
  right: auto;
  height: auto;
  width: auto;
  grid-column: 6/-1;
  grid-row: 1/4;
  max-width: 800px;
}
.wp-block-theme-blocks-page-banner.is-style-ffa .block-photo img {
  -webkit-clip-path: none !important;
          clip-path: none !important;
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-page-banner.is-style-ffa {
    --column-count: 5;
    --block-size: clamp(3.889rem, 4.78vw + 2.853rem, 6.222rem);
  }
  .wp-block-theme-blocks-page-banner.is-style-ffa .block-title {
    font-size: calc(var(--block-size) * 0.6);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-page-banner.is-style-ffa {
    --columns-count: 3;
    --block-size: clamp(3.333rem, 4.552vw + 2.347rem, 5.556rem);
    grid-template-rows: auto repeat(3, var(--block-size));
  }
  .wp-block-theme-blocks-page-banner.is-style-ffa .block-title {
    font-size: calc(var(--block-size) * 0.7);
  }
  .wp-block-theme-blocks-page-banner.is-style-ffa .block-photo {
    height: 50vw;
    grid-column: 1/-1;
    grid-row: 1/2;
  }
}

.wp-block-theme-blocks-page-banner.has-white-text .block-title {
  color: #fff;
}
.wp-block-theme-blocks-page-banner.has-white-text.home .block-title {
  color: #fff;
}
@media screen and (min-width: 767px) and (max-width: 1450px) {
  .wp-block-theme-blocks-page-banner.has-white-text.home .block-title {
    grid-column: 2/6;
    padding-right: 2rem;
  }
}

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

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

.wp-block-theme-blocks-state-infographic {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 450px;
  padding: 3rem 4rem;
  background-color: #f0f0f0;
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5) !important;
  --border-width: 15px;
}
.wp-block-theme-blocks-state-infographic .block-title {
  box-sizing: border-box;
  display: block;
  position: relative;
  padding: 15px 0 0 80px;
  max-width: 350px;
  width: 100%;
  text-align: left;
  font-size: clamp(1.444rem, 0.228vw + 1.395rem, 1.556rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-state-infographic .block-title {
    padding-left: 80px;
  }
}
.wp-block-theme-blocks-state-infographic .block-title strong {
  display: block;
  width: 100%;
  font-weight: 600;
}
.wp-block-theme-blocks-state-infographic .block-title:before {
  content: " ";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -20px;
  height: 90px;
  width: 80px;
  background: url(images/logo-mark.svg) no-repeat 100% 0%;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-state-infographic .block-title:before {
    width: 82px;
  }
}
.wp-block-theme-blocks-state-infographic .block {
  position: relative;
  margin: 0;
  padding: 0 0 0 75px;
  min-height: 3em;
}
.wp-block-theme-blocks-state-infographic .block .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  font-size: 34px;
  font-weight: 500;
  text-align: center;
  color: white;
}
.wp-block-theme-blocks-state-infographic .block:before {
  content: " ";
  display: inline-block;
  position: absolute;
  left: 5px;
  top: 0;
  width: 60px;
  height: 70px;
  background-size: contain;
  color: white;
}
.wp-block-theme-blocks-state-infographic .block.number-1 .number {
  background: #8DAAFC;
}
.wp-block-theme-blocks-state-infographic .block.number-2 .number {
  background: #02AA8C;
}
.wp-block-theme-blocks-state-infographic .block.number-3 .number {
  background: #ffb600;
}
.wp-block-theme-blocks-state-infographic .block.number-4 .number {
  background: #FF4A1A;
}
.wp-block-theme-blocks-state-infographic .block.number-5 .number {
  background: #38B9FF;
}
@keyframes border {
  0% {
    width: 0%;
    height: 15px;
  }
  50% {
    width: 65%;
    height: 15px;
  }
  100% {
    width: 65%;
    height: 25%;
  }
}
.wp-block-theme-blocks-state-infographic .border {
  display: block;
  position: absolute;
}
.wp-block-theme-blocks-state-infographic .border:before, .wp-block-theme-blocks-state-infographic .border:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-theme-blocks-state-infographic.appeared .border {
  animation: border 0.4s ease-in-out;
  animation-fill-mode: forwards;
}
.wp-block-theme-blocks-state-infographic .border.top {
  top: calc(var(--border-width) * -1);
  left: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.3));
}
.wp-block-theme-blocks-state-infographic .border.top:before, .wp-block-theme-blocks-state-infographic .border.top:after {
  top: 0;
  background: #ffb600;
}
.wp-block-theme-blocks-state-infographic .border.top:before {
  left: 0;
  height: 15px;
  width: 100%;
}
.wp-block-theme-blocks-state-infographic .border.top:after {
  right: 0;
  width: 15px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-state-infographic .border.top {
    left: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.3));
  }
}
@media screen and (min-width: 1450px) {
  .wp-block-theme-blocks-state-infographic .border.top {
    left: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.2));
  }
}
.wp-block-theme-blocks-state-infographic .border.bottom {
  bottom: calc(var(--border-width) * -1);
  right: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.3));
}
.wp-block-theme-blocks-state-infographic .border.bottom:before, .wp-block-theme-blocks-state-infographic .border.bottom:after {
  bottom: 0;
  background: #005F4E;
}
.wp-block-theme-blocks-state-infographic .border.bottom:before {
  right: 0;
  height: 15px;
  width: 100%;
}
.wp-block-theme-blocks-state-infographic .border.bottom:after {
  left: 0;
  width: 15px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-state-infographic .border.bottom {
    right: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.33));
  }
}
@media screen and (min-width: 1450px) {
  .wp-block-theme-blocks-state-infographic .border.bottom {
    right: calc(100% - 65% + calc(var(--block-margin, 4rem) * 0.2));
  }
}
@media screen and (max-width: 1200px) {
  .wp-block-theme-blocks-state-infographic {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-state-infographic {
    max-width: 100%;
    width: 100%;
    padding: 3rem 1rem;
  }
}

.wp-block-theme-blocks-content-list {
  --block-size: 100px;
  --gap: 1.5rem;
  position: relative;
  margin: 0 auto;
  padding: 0 0 0 calc(var(--block-size) + var(--gap));
  min-height: var(--block-size);
}
.wp-block-theme-blocks-content-list + .wp-block-theme-blocks-content-list {
  margin-top: calc(var(--gap) * 1.5);
}
.wp-block-theme-blocks-content-list .block-char {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: var(--block-size);
  height: var(--block-size);
  background: var(--box-color, rgba(0, 0, 0, 0.1));
  font-size: clamp(1.956rem, 1.001vw + 1.739rem, 2.444rem);
  font-weight: 600;
  text-align: center;
}

.wp-block-theme-blocks-iframe {
  position: relative;
}
.wp-block-theme-blocks-iframe > iframe {
  display: block;
  width: 100%;
  height: var(--block-height, 800px);
  border: 0;
  border-radius: 0.5rem;
  background: white;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.05);
}

.wp-block-theme-blocks-profiles {
  --column-gap: calc(var(--block-margin, 4rem) * 0.5);
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-areas: "title posts";
  gap: var(--column-gap);
  padding-top: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-theme-blocks-profiles:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: 0.4s ease-in-out;
}
.wp-block-theme-blocks-profiles.trigger-on-scroll:before {
  width: 0;
}
.wp-block-theme-blocks-profiles.trigger-on-scroll.appeared:before {
  width: 100%;
}
.wp-block-theme-blocks-profiles .block-title {
  grid-area: title;
}
.wp-block-theme-blocks-profiles .block-posts {
  grid-area: posts;
}
.wp-block-theme-blocks-profiles .query-posts {
  --column-gap: var(--gap);
  --row-gap: var(--gap);
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-profiles {
    grid-template-columns: auto;
    grid-template-areas: "title" "posts";
  }
  .wp-block-theme-blocks-profiles .query-posts {
    --column-count:2;
    --row-gap: var(--gap);
  }
}
@media screen and (max-width: 400px) {
  .wp-block-theme-blocks-profiles .query-posts {
    --row-gap: 2rem;
    --column-count:1;
  }
}

.wp-block-theme-blocks-card {
  display: block;
}

.wp-block-theme-blocks-cards {
  margin: calc(var(--block-margin, 4rem) * 1) auto;
}
.wp-block-theme-blocks-cards:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-cards:last-child {
  margin-bottom: 0;
}
h1 + .wp-block-theme-blocks-cards, h2 + .wp-block-theme-blocks-cards, h3 + .wp-block-theme-blocks-cards {
  margin-top: 0;
}
.wp-block-theme-blocks-cards .query-posts {
  --row-gap: var(--gap);
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
  grid-template-rows: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-theme-blocks-cards .query-posts.two-rows {
  grid-template-rows: auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts.three-rows {
  grid-template-rows: auto auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts.four-rows {
  grid-template-rows: auto auto auto 1fr;
}
.wp-block-theme-blocks-cards .query-posts > .hentry {
  width: auto;
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-column-span {
  grid-column: span var(--column-span);
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-row-span {
  grid-row: span var(--row-span);
}
.wp-block-theme-blocks-cards .query-posts > .hentry.has-column-span {
  --hentry-width-column-span: calc(var(--hentry-width) * var(--column-span, 1) + ((var(--column-span, 1) - 1) * var(--column-gap, var(--gap))));
}

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

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 0;
  clear: both;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: -0.015em;
  -webkit-font-smoothing: antialiased;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.heading em {
  text-transform: none;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.heading.inline {
  display: inline;
  margin-right: 1em;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.heading a:hover {
  text-decoration: none;
  color: gray;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.heading:first-child {
  margin-top: 0;
}
h1:not(.is-style-section-heading):last-child,
h2:not(.is-style-section-heading):last-child,
h3:not(.is-style-section-heading):last-child,
h4:not(.is-style-section-heading):last-child,
h5:not(.is-style-section-heading):last-child,
h6:not(.is-style-section-heading):last-child,
.heading:not(.is-style-section-heading):last-child {
  margin-bottom: 0;
}
h1.has-text-align-center,
h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center,
h6.has-text-align-center,
.heading.has-text-align-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
h1 + .theme-block.is-style-content-width, h1 + .theme-block.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.has-subheading:before,
h2.has-subheading:before,
h3.has-subheading:before,
h4.has-subheading:before,
h5.has-subheading:before,
h6.has-subheading:before,
.heading.has-subheading:before {
  content: var(--subheading);
  position: relative;
  display: block;
  margin: 0 0 0.5rem;
  text-transform: none;
  font-size: clamp(1rem, 0.228vw + 0.951rem, 1.111rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  h1.has-subheading:before,
  h2.has-subheading:before,
  h3.has-subheading:before,
  h4.has-subheading:before,
  h5.has-subheading:before,
  h6.has-subheading:before,
  .heading.has-subheading:before {
    margin: 0 0 calc(var(--block-margin, 4rem) * 1);
  }
}
h1.has-subheading.is-style-section-heading:before,
h2.has-subheading.is-style-section-heading:before,
h3.has-subheading.is-style-section-heading:before,
h4.has-subheading.is-style-section-heading:before,
h5.has-subheading.is-style-section-heading:before,
h6.has-subheading.is-style-section-heading:before,
.heading.has-subheading.is-style-section-heading:before {
  left: 50%;
  translate: -50% 0;
}

.h1,
h1 {
  font-size: clamp(1.778rem, 4.324vw + 0.841rem, 3.889rem);
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .h1,
  h1 {
    line-height: 1.06;
  }
}

.h2,
h2 {
  font-size: clamp(1.556rem, 2.39vw + 1.038rem, 2.722rem);
  text-transform: uppercase;
  line-height: 1.11;
}
@media screen and (max-width: 767px) {
  .h2,
  h2 {
    line-height: 1.08;
  }
}

.h3,
h3 {
  font-size: clamp(1.111rem, 0.91vw + 0.914rem, 1.556rem);
  line-height: 1.22;
}
@media screen and (max-width: 767px) {
  .h3,
  h3 {
    line-height: 1.2;
  }
}

.h4,
h4 {
  margin-bottom: 0.3em;
  font-size: clamp(1rem, 0.341vw + 0.926rem, 1.167rem);
}

.h5,
h5 {
  margin-bottom: 0.5rem;
  font-size: 0.7222222222rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
}

.h6,
h6 {
  margin-bottom: 1em;
  font-size: 0.7222222222rem;
}

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

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

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

.is-style-expandable {
  --highlight-color: #38B9FF;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
}
.is-style-expandable:hover {
  color: var(--highlight-color);
}
.is-style-expandable:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.5em;
  font-size: 0.6em;
  text-align: center;
  margin: 0.1em 0.2em 0 0;
  border-radius: 50%;
  transition: all 0.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: "\f061";
  color: white;
  background: var(--highlight-color);
}
h3.is-style-expandable:before {
  top: 0.17em;
}

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

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

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

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

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

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

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

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

.wp-block-button {
  position: relative;
  display: inline-block;
  line-height: 1;
  /*
  &.is-style-outline {
      >.wp-block-button__link {
          background-color: transparent;
          //color: $color-text;
          border: 2px solid currentColor;
          &:hover {
              background-color: $color-green;
              border-color: $color-green;
              color: $color-black !important;
          }
          .icon {
              border: 0;
          }
          @include has-colors('color');
          .has-background & {
              &:hover {
                  background-color: $color-green;
                  color: $color-black !important;
                  // border: 2px solid $color-white;
              }
          }
      }
  }
  */
}
.wp-block-button > .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 0;
  text-decoration: none;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 900;
  font-size: 0.8888888889rem;
  letter-spacing: 0;
  line-height: 1.13;
  opacity: 1;
  text-align: center;
  text-transform: uppercase;
  transition: 0.2s ease;
  -webkit-font-smoothing: antialiased;
}
.wp-block-button > .wp-block-button__link .icon.is-prepended-icon {
  margin: 0 0.5em 0 0;
}
.wp-block-button > .wp-block-button__link:visited {
  color: inherit;
}
.wp-block-button > .label {
  margin-left: 1em;
  font-size: 0.7em;
  text-transform: none;
}
.wp-block-button.has-icon > .wp-block-button__link:after, .wp-block-button.has-no-icon > .wp-block-button__link:after {
  display: none;
}
.wp-block-button:not(.is-style-arrow) > .wp-block-button__link {
  padding: 0.6rem 1.35rem;
  color: #000000;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 50px;
}
.wp-block-button:not(.is-style-arrow) > .wp-block-button__link:hover {
  background: #000000;
  border: 2px solid #000000;
  color: white;
}
.wp-block-button.is-style-filled > .wp-block-button__link {
  background-color: #000000;
  border: 2px solid transparent;
  color: white;
}
.wp-block-button.is-style-filled > .wp-block-button__link.has-yellow-background-color, .wp-block-button.is-style-filled > .wp-block-button__link.has-orange-background-color {
  color: #000000;
}
.wp-block-button.is-style-filled > .wp-block-button__link:not(.has-background):hover {
  background: transparent !important;
  border: 2px solid #000000 !important;
  color: #000000 !important;
}
.wp-block-button.is-style-filled > .wp-block-button__link.has-background:hover {
  background: #000000 !important;
  border: 2px solid #000000 !important;
  color: white !important;
}
.wp-block-button.no-arrow > .wp-block-button__link .icon.css-arrow {
  display: none;
}
.wp-block-button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-button.done {
  opacity: 0.5;
}
.wp-block-button.done > .wp-block-button__link {
  --grayed: rgba(100,100,100,.5);
  cursor: default;
  color: var(--grayed);
  border-color: var(--grayed);
  background-color: transparent;
}
.wp-block-button.done > .wp-block-button__link:hover {
  border-color: var(--grayed);
  color: var(--grayed);
  background-color: transparent;
}

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

.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: 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-separators .wp-block-column:not(:first-child):before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: -2rem;
  width: 1px;
  height: 100%;
  background-color: currentColor;
  opacity: 0.1;
}
@media screen and (max-width: 781px) {
  .wp-block-columns.is-style-separators .wp-block-column {
    margin-left: 0;
  }
  .wp-block-columns.is-style-separators .wp-block-column:not(:first-child):before {
    display: none;
  }
}

.wp-block-columns.is-style-boxes > .wp-block-column {
  padding: 3em 2.5em 2.5em;
  border-radius: 15px;
  background: white;
}
@media screen and (min-width: 782px) {
  .wp-block-columns.is-style-boxes > .wp-block-column:not(:first-child) {
    margin-left: calc(var(--block-margin, 4rem) * 0.25);
  }
}

.wp-block-columns.is-style-headline {
  margin-top: 2rem;
}
.wp-block-columns.is-style-headline h4.wp-block-heading {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.7222222222rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 600;
}
.wp-block-columns.is-style-headline p {
  margin-top: 1rem;
}
.wp-block-columns.is-style-headline a {
  display: inline;
  text-decoration: none;
  background: linear-gradient(to right, #fff, #fff), linear-gradient(to right, #000000, #000000);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.2s ease;
  padding-bottom: 2px;
}
.wp-block-columns.is-style-headline a:hover {
  color: #000000;
  background-size: 0 0.1em, 100% 0.1em;
}
@media screen and (max-width: 767px) {
  .wp-block-columns.is-style-headline h4.wp-block-heading,
  .wp-block-columns.is-style-headline p {
    margin-top: 0.75rem;
  }
}

.wp-block-columns.is-style-intro {
  justify-content: space-between;
}
.wp-block-columns.is-style-intro .wp-block-column {
  flex-basis: 50%;
  flex-grow: 0;
}
.wp-block-columns.is-style-intro .wp-block-column:first-of-type {
  flex-basis: 550px;
  flex-grow: 0;
}
.wp-block-columns.is-style-intro .wp-block-column:first-of-type p.is-style-intro {
  margin-top: calc(var(--block-margin, 4rem) * 0.5) !important;
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5) !important;
}
.wp-block-columns.is-style-intro .wp-block-column:first-of-type p.is-style-intro + p {
  margin-top: calc(var(--block-margin, 4rem) * 0.5) !important;
}
.wp-block-columns.is-style-intro .wp-block-column:first-of-type .wp-block-buttons.is-vertical {
  gap: 1rem;
}

@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;
  }
}
figure.wp-caption {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  max-width: 100%;
}
figure.wp-caption:first-child {
  margin-top: 0;
}
figure.wp-caption:last-child {
  margin-bottom: 0;
}

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

.wp-block-group {
  position: relative;
  margin-top: calc(var(--block-margin, 4rem) * 1);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-group, .is-layout-flow > .wp-block-group {
  margin: 0;
  margin-block-start: calc(var(--block-margin, 4rem) * 1);
  margin-block-end: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-group:first-child, .is-layout-flow > .wp-block-group:first-child {
  margin-block-start: 0;
}
.wp-block-group:last-child, .is-layout-flow > .wp-block-group:last-child {
  margin-block-end: 0;
}
.wp-block-separator + .wp-block-group {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

.wp-block-group.has-background {
  position: relative;
  padding: calc(var(--block-margin, 4rem) * var(--wp-block-group-padding-multiplier, 1.5));
}
@media screen and (max-width: 767px) {
  .wp-block-group.has-background {
    padding-left: calc(var(--block-margin, 4rem) * 0.75);
    padding-right: calc(var(--block-margin, 4rem) * 0.75);
  }
}
.wp-block-group.has-background.no-border {
  border-top: 0 !important;
}
.wp-block-group.has-background + .wp-block-group.has-background.no-border {
  margin-top: calc(var(--block-margin, 4rem) * -0.5);
}

.wp-block-group.promo {
  width: 75%;
  border-top: 0;
  justify-self: end;
}
.wp-block-group.promo p {
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .wp-block-group.promo {
    width: 100%;
  }
  .wp-block-group.promo p {
    text-align: center;
  }
}

.wp-block-group.is-style-full-width {
  padding-left: var(--gutter-left);
  padding-right: var(--gutter-right);
}
.wp-block-group.is-style-full-width:last-child {
  margin-bottom: calc(var(--padding-bottom, 0) * -1);
}
.wp-block-group.is-style-full-width .wp-block-columns .wp-block-column > p:not(.is-style-intro) {
  margin-block-start: 1em;
}
.wp-block-group.is-style-full-width .wp-block-columns .wp-block-column > p + .wp-block-buttons:last-child {
  margin-top: calc(var(--block-margin, 4rem) * 0.75);
}
.wp-block-group.is-style-full-width .wp-block-columns .wp-block-column > .wp-block-buttons.is-layout-flex {
  gap: 1.5rem;
}

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

.wp-block-group.is-style-heading-content {
  position: relative;
  --column-gap: calc(var(--block-margin, 4rem) * 0.5);
  padding-top: calc(var(--block-margin, 4rem) * 0.5);
  padding-bottom: calc(var(--block-margin, 4rem) * 2);
}
.wp-block-theme-blocks-page-banner + .wp-block-group.is-style-heading-content {
  margin-top: calc(var(--block-margin, 4rem) * 2);
}
.wp-block-group.is-style-heading-content:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: 0.4s ease-in-out;
}
.wp-block-group.is-style-heading-content.trigger-on-scroll:before {
  width: 0;
}
.wp-block-group.is-style-heading-content.trigger-on-scroll.appeared:before {
  width: 100%;
}
.wp-block-group.is-style-heading-content + .wp-block-group.is-style-heading-content {
  margin-top: calc(var(--block-margin, 4rem) * -1);
}
@media screen and (min-width: 768px) {
  .wp-block-group.is-style-heading-content {
    padding-left: calc(50% + var(--column-gap) / 2 + var(--block-gutter, 0px));
    padding-right: var(--block-gutter, 0px);
  }
  .wp-block-group.is-style-heading-content > h1, .wp-block-group.is-style-heading-content h2, .wp-block-group.is-style-heading-content .pull-left {
    position: absolute;
    left: var(--block-gutter, 0px);
    max-width: var(--block-max-width, calc(50% - calc(var(--block-margin, 4rem) * 1)));
    margin-top: 0;
  }
  .wp-block-group.is-style-heading-content > .wp-block-separator {
    margin-left: calc(-100% - var(--column-gap));
    width: auto;
  }
  .wp-block-group.is-style-heading-content.has-background {
    --block-gutter: var(--gutter-left);
    --block-max-width: calc(50vw - var(--gutter-left) - calc(var(--block-margin, 4rem) * 1));
    margin-left: calc(var(--block-gutter) * -1);
    margin-right: calc(var(--block-gutter) * -1);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-group.is-style-heading-content.has-background {
    margin-left: calc(var(--gutter-left) * -1);
    margin-right: calc(var(--gutter-right) * -1);
    padding-left: var(--gutter-left);
    padding-right: var(--gutter-right);
  }
}

.wp-block-group.is-style-narrow {
  max-width: 750px;
  margin: 0 auto 8rem;
}
.wp-block-group.is-style-narrow > p:not(.is-style-intro) {
  margin-block-start: 1em;
}
@media screen and (max-width: 767px) {
  .wp-block-group.is-style-narrow {
    margin-bottom: 6rem;
  }
}

/*
.wp-block-group.is-style-read-more {
    --max-height: none;
    margin-top:0;
    margin-bottom:block-margin(1);
    &:last-child {
        margin-bottom:0;
    }
    > .inner {
        position:relative;
        max-height: 300px;
        overflow:hidden;
        transition: max-height $appear-transition;
        &:after {
            content:' ';
            position:absolute;
            bottom:0;
            left:0;
            width:100%;
            height:100px;
            background: linear-gradient(0deg, var(--background-color, rgba($color-white, 1)), rgba($color-white, 0));
            opacity:1;
            transition: opacity $appear-transition;
        }
    }
    > a.read-more {
        display:inline-block;
        margin:1em 0 0;
        text-decoration:none;
        font-size:.9em;
        font-weight:500;
        color: var(--color, navy);
        &:before {
            display:inline-block;
            font-size: 15px;
            margin:0 0.6em 0 0;
            width:1.4em;
            height:1.4em;
            line-height:1.4em;
            text-align:center;
            border-radius:50%;
            color: $color-white;
            background:$color-navy;
            @include icon-font('arrow-right');
            transition: all $hover-transition;
            transform: translate(0px, 0);
        }
        &:hover {
            &:before {
                transform: translate(3px, 0);
            }
        }
    }
    &.read-more-on {
        > .inner {
            max-height:var(--max-height, none);
            &:after {
                opacity:0;
            }
        }
        > .read-more {
            display:none;
        }
        &.done {
            > .inner {
                overflow:visible !important;
                transition:none !important;
                max-height:none !important;
                &:after {
                    display:none;
                }
            }
        }
    }
}
*/
/*
.wp-block-group.logos {
    margin-top:block-margin(.5);
    margin-bottom:block-margin(.5);
    .wp-block-image {
        width:150px;
        margin: 1em;
        figcaption {
            display:none;
        }
        img {
            margin: 0 auto;
        }
    }
}
*/
.wp-block-quote {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  padding: 0;
  border: 0;
  font-size: clamp(0.978rem, 0.501vw + 0.869rem, 1.222rem);
  line-height: 1.15;
  font-weight: 500;
  line-height: 1.5;
  color: #005F4E;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote.has-text-align-center {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-quote.has-text-align-left {
  max-width: 1024px;
}
.wp-block-quote.has-text-align-right {
  max-width: 1024px;
  margin-left: auto;
}
.wp-block-quote p {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  font-size: inherit;
  line-height: inherit;
}
.wp-block-quote p + p {
  margin-top: 0.5rem;
}
.wp-block-quote cite {
  display: block;
  padding-top: 0.6em;
  font-size: 0.8rem;
  font-family: "Source Sans 3", sans-serif;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}

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

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

.page-blocks > .wp-block-embed.is-type-video.has-preview-poster {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:after {
  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(--header-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: rgba(255, 74, 26, 0.95);
  color: white;
  font-size: 50px;
  border-radius: 50%;
  border: 10px solid currentColor;
  text-align: center;
  transition: border-color 0.2s ease, font-size 0.2s ease;
  text-indent: 5px;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  font-size: 60px;
  border-color: #FF4A1A;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:before, .wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper:after {
  z-index: 2;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed img {
  opacity: 0.25;
}
.wp-block-embed.is-type-video.has-preview-poster.loaded > .wp-block-embed__wrapper > a.embed:after {
  display: none;
}
.wp-block-embed.is-type-video.has-preview-poster > figcaption {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .wp-block-embed.is-type-video.has-preview-poster > figcaption {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    margin: 50px 0 0;
    transform: translate(-50%, 0%);
    color: white;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    font-size: 30px;
  }
}

.wp-block-gallery {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
}
.wp-block-gallery:first-child {
  margin-top: 0;
}
.wp-block-gallery:last-child {
  margin-bottom: 0;
}
.wp-block-gallery .blocks-gallery-grid {
  gap: 0.5rem;
}

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

.wp-block-gallery-wrap.is-style-carousel {
  margin-top: calc(var(--block-margin, 4rem) * 0.75);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.75);
}
.wp-block-gallery-wrap.is-style-carousel:first-child {
  margin-top: 0;
}
.wp-block-gallery-wrap.is-style-carousel:last-child {
  margin-bottom: 0;
}

.wp-block-gallery.is-style-carousel {
  --aspect-ratio: 2/3;
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 0 auto;
}
.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: gray;
  color: white;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image {
  position: relative;
  white-space: normal;
  display: block;
  margin: 0;
  /*
  height:0;
  width:auto;


  */
}
.wp-block-gallery.is-style-carousel figure.wp-block-image .image {
  position: relative;
  padding: 0 0 calc(var(--aspect-ratio) * 100%);
}
.wp-block-gallery.is-style-carousel figure.wp-block-image .image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.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;
  font-size: 0.8rem;
  font-weight: 500;
}
.wp-block-gallery.is-style-carousel .nav {
  display: none;
}
.wp-block-gallery.is-style-carousel .nav.slick-arrow {
  display: block;
}
.wp-block-gallery.is-style-carousel .captions {
  display: none;
  min-height: 2em;
  margin: 0.5rem 0 0 0;
  padding: 0 0 0;
  width: calc(100% - 4em);
  font-size: 0.8rem;
}
.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%;
  padding: 0 0 0 0;
  margin: 0 0 0 calc(var(--arrow-size) * 0.66 + var(--arrow-hover-offset));
}
.wp-block-gallery.is-style-carousel .slick-arrow.prev {
  right: 100%;
  padding: 0 0 0 0;
  margin: 0 calc(var(--arrow-size) * 0.66 + 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 {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.next {
    margin-left: calc(var(--arrow-size) * 0.3 + var(--arrow-hover-offset));
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.prev {
    margin-right: calc(var(--arrow-size) * 0.3 + var(--arrow-hover-offset));
  }
}
@media screen and (max-width: 980px) {
  .wp-block-gallery.is-style-carousel {
    max-width: none;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow {
    top: 0;
    transform: none;
    height: var(--image-height);
    line-height: var(--image-height);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.next {
    left: auto;
    right: 0;
    padding-left: 2em;
    padding-right: 1.5em;
    margin-left: 0;
  }
  .wp-block-gallery.is-style-carousel .slick-arrow.prev {
    right: auto;
    left: 0;
    padding-right: 2em;
    padding-left: 1.5em;
    margin-right: 0;
  }
  .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;
    margin-left: var(--gutter-left);
    width: calc(100% - 3.5em - var(--gutter-right));
  }
  .wp-block-gallery.is-style-carousel .pager {
    right: var(--gutter-right);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-gallery.is-style-carousel .slick-arrow {
    display: none !important;
    opacity: 0;
    --arrow-size:30px;
  }
}

body .wp-block-gallery.has-nested-images.is-style-logos {
  justify-content: center;
  align-items: center;
  gap: calc(var(--block-margin, 4rem) * 1.5);
}
body .wp-block-gallery.has-nested-images.is-style-logos > figure.wp-block-image:not(#individual-image) {
  margin: 0;
  width: 180px;
  flex-grow: 0;
  align-items: center;
  justify-content: center;
}
body .wp-block-gallery.has-nested-images.is-style-logos > figure.wp-block-image:not(#individual-image) img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media screen and (max-width: 1200px) {
  body .wp-block-gallery.has-nested-images.is-style-logos > figure.wp-block-image:not(#individual-image) {
    width: 8rem;
  }
}
@media screen and (max-width: 767px) {
  body .wp-block-gallery.has-nested-images.is-style-logos {
    gap: calc(var(--block-margin, 4rem) * 1);
  }
}
@media screen and (max-width: 1200px) {
  body .wp-block-gallery.has-nested-images.is-style-logos {
    gap: calc(var(--block-margin, 4rem) * 0.5);
  }
}

.wp-block-separator {
  margin: calc(var(--block-margin, 4rem) * 0.5) 0;
  width: 100%;
  border: 2px solid currentColor;
  border-width: 2px 0 0;
  height: 0;
  transition: 0.4s ease-in-out;
}
.wp-block-separator.has-small-margin {
  margin: calc(var(--block-margin, 4rem) * 0.75) auto;
}
.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,
:where(body .page-blocks) .is-layout-flow ul,
:where(body .page-blocks) .is-layout-flow ol {
  margin-block-start: 1rem;
  margin-block-end: 2rem;
}
:where(body .page-blocks) h1 + ul,
:where(body .page-blocks) h2 + ul,
:where(body .page-blocks) h3 + ul,
:where(body .page-blocks) h4 + ul,
:where(body .page-blocks) h5 + ul,
:where(body .page-blocks) h6 + ul {
  margin-block-start: 0;
}
:where(body .page-blocks) ul li + li {
  margin-block-start: 0.25em;
}

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

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

.theme-block.wp-file {
  position: relative;
  margin-left: calc(var(--page-gutter) * -1);
  margin-right: calc(var(--page-gutter) * -1);
}
.theme-block.wp-file .wp-file__inner-container {
  max-width: 1024px;
  margin: 0 auto;
}
.theme-block.wp-file .embedded {
  position: relative;
  background: #eee;
}
.theme-block.wp-file .embedded img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 50% 0%;
     object-position: 50% 0%;
  background: white;
}
.theme-block.wp-file object {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0 auto;
  height: var(--block-embed-height, 600px);
}
.theme-block.wp-file .embedded + .download,
.theme-block.wp-file object + .download {
  margin: 1em 0 0;
}
@media screen and (max-width: 1024px) {
  .theme-block.wp-file {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .theme-block.wp-file object {
    display: none;
  }
  .theme-block.wp-file .embedded img {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
  }
}/*# sourceMappingURL=style.css.map */