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

DO NOT EDIT style.css DIRECTLY. 

Use style.scss.
*/
/*
Fonts
*/
/*
Colors
*/
:root {
  --color-steel-blue: #B5C4E1;
  --color-brown: #4F2732;
  --color-orange: #E8432A;
  --color-beige: #DDD6D1;
  --color-black: black;
  --color-gray: #ccc;
  --color-light-gray: #f4f4f4;
  --color-white: white;
}

/*
Gutters
*/
/*
Animations
*/
/*
Misc
*/
:root {
  --font-base-size: 19px;
  --gutter: calc((100vw - 1800px) / 2);
  --gutter-left: calc((100vw - 1800px) / 2);
  --gutter-right: calc((100vw - 1800px) / 2);
  --border-width: clamp(0.158rem, 0.248vw + 0.107rem, 0.316rem);
  --separator-offset: 4;
  --scrollbarWidth: 0px;
  --viewportWidth: calc(100vw - var(--scrollbarWidth, 0));
  --block-margin: clamp(1.251rem, 2.499vw + 0.738rem, 2.842rem);
}
@media screen and (max-width: 1908px) {
  :root {
    --gutter-left: calc(var(--block-margin, 54px) * 1);
    --gutter-right: calc(var(--block-margin, 54px) * 1);
    --gutter: calc(var(--block-margin, 54px) * 1);
  }
}
@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: area-normal, sans-serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--page-color, #4F2732);
  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: #B5C4E1;
}

body {
  padding: 0;
  background: var(--page-background-color, white);
  overflow-anchor: none;
  font-size: clamp(0.75rem, 0.393vw + 0.669rem, 1rem);
}
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: area-normal, sans-serif;
}

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

.text-headline {
  font-family: area-normal, 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-nowrap {
  white-space: nowrap;
}

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

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

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

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

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

img,
a > img {
  border: 0;
}

body a {
  color: currentColor;
  transition: 0.2s ease;
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
  text-decoration-color: var(--link-text-decoration-color-initial, currentColor);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
}
body a:hover {
  text-decoration-color: var(--link-text-decoration-color-hover, transparent);
}
body a.more {
  white-space: nowrap;
}

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

.clickable {
  cursor: pointer;
}

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

th, td {
  border: 0;
}

.toggle {
  cursor: pointer;
}

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

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

#wpadminbar {
  z-index: 1101;
}
@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.query-posts {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  --gap: 0px;
  --column-gap: var(--gap);
  --row-gap: calc(var(--gap) * 1.5);
  --column-count: 1;
  --hentry-width: calc((100% / var(--column-count)) - ((var(--gap) * (var(--column-count) - 1)) / var(--column-count)));
  gap: var(--gap);
  row-gap: var(--row-gap, var(--gap));
  -moz-column-gap: var(--column-gap, var(--gap));
       column-gap: var(--column-gap, var(--gap));
  justify-content: start;
  flex-wrap: wrap;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
  margin: 0;
}
.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, 54px) * 0.5) auto;
  width: 100% !important;
  margin-left: 0 !important;
  text-align: center;
}
.query-posts .hentry.load-more {
  order: 100000;
}
.query-posts .hentry.promo-wide {
  margin-top: var(--gap);
  margin-bottom: var(--gap);
}
.query-posts .hentry.empty.static {
  order: 10000 !important;
}
.query-posts .hentry.heading {
  grid-column: 1/-1;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}

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

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


.query-posts.three-across {
    --column-count: 3;

    display: grid;

    > .hentry:not(.promo-wide) {
    //    margin-top: var(--gap);
        margin-bottom:0;
    }
    @media screen and (max-width:1200px) {
    }
    @media screen and (max-width:1024px) {
        --column-count:2;
    }
    @media screen and (max-width:$mobile-breakpoint) {
        --column-count: 1;
        --gap:1.5rem;

    }
}

.query-posts.four-across {
    --column-count: 4;

    display: grid;

    @media screen and (max-width:1200px) {
        --column-count:3;
    }
    @media screen and (max-width:1024px) {
        --column-count:2;
    }
    @media screen and (max-width:$mobile-breakpoint) {
        --column-count: 1;
    }
}
.query-posts.three-across.has-promo {

    > .hentry.promo { order:-50 !important}

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

    > .hentry.promo { order:-50 !important}

    > .hentry:nth-child(1), // promo
    > .hentry:nth-child(2) {
        order:-100;
    }
}



.query-posts.five-across {
    --gap: 1rem;
    --column-count: 5;

    display: grid;

    @media screen and (max-width:1200px) {
        --column-count:4;
    }
    @media screen and (max-width:1024px) {
        --column-count:3;
    }
    @media screen and (max-width:$mobile-breakpoint) {
        --column-count: 2;
    }
}
*/
input[type=submit],
input[type=button],
button {
  display: inline-flex;
  align-items: center;
  color: #4F2732;
}
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: #E8432A;
  color: white;
  border-color: #E8432A;
}
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 {
  --hover-background-color: transparent;
  cursor: default;
  color: #555;
  border-color: #555;
  border: 0;
  background: transparent !important;
}
input[type=submit].done .wp-block-button__link,
input[type=button].done .wp-block-button__link,
button.done .wp-block-button__link {
  cursor: inherit;
  border: 0 !important;
  background: inherit !important;
}
@media screen and (max-width: 767px) {
  input[type=submit],
  input[type=button],
  button {
    padding: 0.8em 2em;
  }
}

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

  }
      */
}
.input.select .options .option:last-child {
  padding-bottom: 0.75em;
}
.input.select .options .option:hover {
  background-color: #E8432A;
  color: white;
}
.input.select .options .option:hover:before {
  opacity: 0;
}
.input.select.on .label {
  min-width: 240px;
  border-radius: var(--input-border-radius) var(--input-border-radius) 0 0;
  border-bottom-color: transparent;
}
.input.select.on .label .icon {
  transform: rotate(180deg);
}
.input.select.on .options {
  max-height: -moz-fit-content;
  max-height: fit-content;
  opacity: 1;
  margin-top: -0.5em;
  padding-top: 0.5em;
}
.input.select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border: 0;
  background: 0;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .input.select select {
    z-index: 2;
    width: 100%;
    height: 100%;
    visibility: visible;
  }
  .input.select .options {
    display: none !important;
  }
}

#bottom input:-webkit-autofill,
#bottom input:-webkit-autofill:hover,
#bottom input:-webkit-autofill:focus,
#bottom input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 60px var(--page-background-color) inset !important;
  border: 0 !important;
  -webkit-text-fill-color: white;
}
#bottom > .block-grid > .block-embed > .embed {
  position: relative;
  margin-top: calc(var(--heading-font-size) * 0.5);
}
#bottom .gform-theme--foundation {
  --gf-form-validation-bg-color: #fff;
  --form-font-size: clamp(0.895rem, 1.074vw + 0.674rem, 1.579rem);
  --gf-form-gap-y: calc(var(--heading-font-size) * .25);
}
#bottom .gform-theme--foundation fieldset, #bottom .gform-theme--foundation .gfield {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--page-color, inherit);
  color: var(--page-color, inherit);
  font-family: area-normal, sans-serif;
  font-size: var(--form-font-size);
}
#bottom .gform-theme--foundation fieldset legend, #bottom .gform-theme--foundation fieldset label, #bottom .gform-theme--foundation .gfield legend, #bottom .gform-theme--foundation .gfield label {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}
#bottom .gform-theme--foundation fieldset .gfield_required, #bottom .gform-theme--foundation fieldset .ginput_counter, #bottom .gform-theme--foundation .gfield .gfield_required, #bottom .gform-theme--foundation .gfield .ginput_counter {
  display: none;
}
#bottom .gform-theme--foundation fieldset {
  display: grid;
  align-items: center;
  grid-template-columns: 5em auto;
  grid-template-areas: "legend field";
}
#bottom .gform-theme--foundation fieldset legend {
  display: contents;
  grid-area: legend;
  margin: 0;
}
#bottom .gform-theme--foundation fieldset .ginput_container {
  grid-area: field;
  flex-wrap: nowrap;
}
#bottom .gform-theme--foundation fieldset .ginput_container .gform-grid-col {
  inline-size: auto;
  flex-basis: 50%;
  flex-grow: 1;
}
#bottom .gform-theme--foundation .ginput_container.ginput_complex .gform-grid-col {
  display: inline-block;
  position: relative;
}
#bottom .gform-theme--foundation .ginput_container.ginput_complex .gform-grid-col.focused {
  --focus-width:calc(100% - var(--gf-field-gap-x));
}
#bottom .gform-theme--foundation .ginput_container.ginput_complex .gform-grid-col:after {
  content: " ";
  display: block;
  position: absolute;
  margin-top: 0.25rem;
  top: 100%;
  left: calc(var(--gf-field-gap-x) / 2);
  width: var(--focus-width, 0%);
  height: 1px;
  background: white;
  transition: width 0.2s ease;
}
#bottom .gform-theme--foundation .ginput_container:not(.ginput_complex) {
  position: relative;
}
#bottom .gform-theme--foundation .ginput_container:not(.ginput_complex).focused {
  --focus-width:100%;
}
#bottom .gform-theme--foundation .ginput_container:not(.ginput_complex):after {
  content: " ";
  display: block;
  position: absolute;
  margin-top: 0.25rem;
  top: 100%;
  left: 0%;
  width: var(--focus-width, 0%);
  height: 1px;
  background: white;
  transition: width 0.2s ease;
}
#bottom .gform-theme--foundation .gfield {
  display: grid;
  align-items: center;
  grid-template-columns: 7em auto;
  grid-template-areas: "label field";
}
#bottom .gform-theme--foundation .gfield label {
  grid-area: label;
  margin: 0;
}
#bottom .gform-theme--foundation .gfield .ginput_container {
  grid-area: field;
}
#bottom .gform-theme--foundation input[type=text], #bottom .gform-theme--foundation input[type=email], #bottom .gform-theme--foundation textarea {
  background: none;
  border: 1px solid transparent;
  padding: 0;
  border-radius: 0;
  color: white;
  font-family: inherit;
  font-size: var(--form-font-size);
  line-height: 1;
  font-weight: 600;
  outline: 0;
}
#bottom .gform-theme--foundation .gfield_description {
  --gf-local-color: var(--page-color, inherit);
}
#bottom .gform-theme--foundation ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#bottom .gform-theme--foundation :-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#bottom .gform-theme--foundation ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#bottom .gform-theme--foundation :-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
#bottom .gform-theme--foundation button {
  --gf-local-color: var(--page-color, inherit);
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-size: var(--form-font-size);
  outline: 0;
}
#bottom .gform-theme--foundation button:focus {
  --icon-rotate:45deg;
}

.hentry {
  position: relative;
  box-sizing: border-box;
  white-space: normal;
}
.hentry.ajax-added {
  opacity: 1;
  transition: opacity 0.75s ease-in-out;
}
.hentry.pre-visible {
  opacity: 0;
}
.hentry .title {
  grid-area: title;
}
.hentry .thumbnail {
  grid-area: image;
  overflow: hidden;
}
.hentry .content {
  grid-area: content;
}
.hentry .border.trigger-on-scroll.appear-init:before {
  width: 0%;
  height: 0%;
}
.hentry .border.trigger-on-scroll.appear-init.appeared:before {
  width: 100%;
  height: 100%;
}

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

.hentry.excerpt {
  padding: 0;
  margin: 0;
}
.hentry.excerpt:before, .hentry.excerpt:after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--border-width);
  background: currentColor;
  transition: width 0.5s ease-in-out;
}
.hentry.excerpt:before {
  top: 0;
}
.hentry.excerpt:after {
  bottom: 0;
}
.hentry.excerpt.appear-on-scroll.appear-init:before {
  width: 0;
}
.hentry.excerpt.appear-on-scroll.appear-init.appeared:before {
  width: 100%;
}
.hentry.excerpt a {
  text-decoration: none;
}
.hentry.excerpt .title {
  position: relative;
  z-index: 5;
}
.hentry.excerpt .title a {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "text icon";
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  justify-content: space-between;
  align-items: start;
  padding: calc(var(--block-margin, 54px) * 0.5) 0;
}
.hentry.excerpt .title a .icon.the-arrow {
  grid-area: icon;
  translate: 0 0.23em;
}
.hentry.excerpt .title a:hover .icon.the-arrow {
  rotate: 45deg;
}
.hentry.excerpt + .hentry.excerpt .title {
  margin-top: calc(var(--border-width) * -1);
}
.hentry.excerpt + .hentry.excerpt:before {
  display: none;
}

.hentry.excerpt.property {
  --hover-shift: calc(2ex + .5em);
}
.hentry.excerpt.property .title {
  margin: 0;
  overflow: hidden;
  font-size: clamp(1.053rem, 0.826vw + 0.883rem, 1.579rem);
}
.hentry.excerpt.property .title a .icon.the-arrow {
  position: absolute;
  right: 100%;
  top: calc(var(--block-margin, 54px) * 0.5);
  margin: 0 0.5em 0 0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
.hentry.excerpt.property .thumbnail {
  position: absolute;
  z-index: -1;
  top: var(--y, -10000px);
  left: var(--x, -10000px);
  translate: -50% -50%;
  width: calc(var(--block-margin, 54px) * 5);
  opacity: 0;
  scale: 0.25;
  transition: opacity 0.2s ease, scale 0.2s ease;
}
.hentry.excerpt.property .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.hentry.excerpt.property .event-handler {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hentry.excerpt.property:hover .title a {
  padding-left: var(--hover-shift);
  color: white;
}
.hentry.excerpt.property:hover .title a .icon.the-arrow {
  rotate: none;
  transform: translate(var(--hover-shift), 0px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .hentry.excerpt.property.has-post-thumbnail.hovering {
    z-index: 10;
  }
  .hentry.excerpt.property.has-post-thumbnail.hovering .thumbnail {
    opacity: 1;
    z-index: 10;
    scale: 1;
  }
  .hentry.excerpt.property.has-post-thumbnail.hovering .event-handler {
    cursor: none;
  }
}

.hentry.hcard {
  padding: calc(var(--block-margin, 54px) * 1);
}
.hentry.hcard .thumbnail {
  display: block;
  margin: 0 0 calc(var(--block-margin, 54px) * 0.8);
  background: #4F2732;
  transition: none;
}
.hentry.hcard .thumbnail .img,
.hentry.hcard .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8/6;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.hentry.hcard .title {
  margin: 0 0 calc(var(--block-margin, 54px) * 0.25);
  font-size: clamp(2.105rem, 1.653vw + 1.766rem, 3.158rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .hentry.hcard .title {
    font-size: 36px;
    font-weight: bold;
  }
}
.hentry.hcard .title a {
  text-decoration: none;
}
.hentry.hcard .title a .icon {
  margin-right: 0.4em;
}
.hentry.hcard .content {
  font-size: clamp(0.842rem, 0.331vw + 0.774rem, 1.053rem);
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .hentry.hcard .content {
    font-size: 8px;
    font-weight: bold;
  }
}
.hentry.hcard.is-style-scroll {
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 50% auto;
  grid-template-rows: 1fr auto;
  -moz-column-gap: calc(var(--block-margin, 54px) * 0.5);
       column-gap: calc(var(--block-margin, 54px) * 0.5);
  grid-template-areas: "title image" "content image";
}
.hentry.hcard.is-style-scroll .thumbnail {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .hentry.hcard.is-style-scroll {
    grid-template-rows: 1fr auto auto;
    grid-template-columns: auto;
    grid-template-areas: "title" "image" "content";
  }
  .hentry.hcard.is-style-scroll .thumbnail {
    margin-bottom: calc(var(--block-margin, 54px) * 0.5);
  }
}
.hentry.hcard > .border {
  --border-size: calc(100% - (var(--border-width) * (var(--separator-offset) - 1)));
  position: absolute;
  left: 0;
}
.hentry.hcard > .border:before {
  content: " ";
  display: block;
  position: absolute;
  /*
  top:0;
  left:50%;
  width:100%;
  height:100%;
  translate:-50% 0%;
  */
  transform-origin: 50% 50%;
  background: currentColor;
}
.hentry.hcard > .border.top, .hentry.hcard > .border.bottom {
  width: var(--border-size);
  height: var(--border-width);
}
:where(.hentry.hcard > .border.top, .hentry.hcard > .border.bottom):before {
  right: 0%;
  transition: width 0.5s ease-in-out;
}
.hentry.hcard > .border.top {
  top: calc(0px - var(--border-width) / 2);
}
.hentry.hcard > .border.bottom {
  bottom: calc(0px - var(--border-width) / 2);
}
.hentry.hcard > .border.left {
  top: calc(0px + var(--border-width) * (var(--separator-offset) - 1));
  left: calc(0px - var(--border-width) / 2);
  width: var(--border-width);
  height: calc(100% - var(--border-width) * (var(--separator-offset) - 1) * 2);
}
.hentry.hcard > .border.left:before {
  top: 0;
  transition: height 0.5s ease-in-out;
}
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(odd) {
  padding-left: 0;
}
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(odd) > .border.left {
  display: none;
}
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(even) {
  padding-right: 0;
}
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(even) > .border.top,
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(even) > .border.bottom {
  right: 0;
  left: auto;
}
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(even) > .border.top:before,
.query-posts > .hentry.hcard:not(.is-style-scroll):nth-child(even) > .border.bottom:before {
  left: 0;
  right: auto;
}
@media screen and (max-width: 767px) {
  .query-posts > .hentry.hcard:not(.is-style-scroll) {
    padding-left: 0;
    padding-right: 0;
  }
  .query-posts > .hentry.hcard:not(.is-style-scroll) > .border {
    --border-size:100%;
  }
  .query-posts > .hentry.hcard:not(.is-style-scroll) > .border:before {
    left: 0;
    right: auto;
  }
  .query-posts > .hentry.hcard:not(.is-style-scroll) > .border.left,
  .query-posts > .hentry.hcard:not(.is-style-scroll) > .border.bottom {
    display: none;
  }
}
.hentry.hcard:hover .thumbnail img {
  scale: 1.05;
}
.hentry.hcard:hover .title .icon {
  rotate: 45deg;
}

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

.slick-arrow {
  position: relative;
  z-index: 10000;
  cursor: pointer;
  --arrow-size: 30px;
  /*

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

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0.75em;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
  padding: 0;
  margin: 0;
}
.slick-dots li:before {
  display: none;
}
.slick-dots li button {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  width: 10px;
  height: 10px;
  background: rgba(204, 204, 204, 0.8);
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0;
}
.slick-dots li.slick-active button {
  background: var(--slick-dot-active-color, #E8432A);
}

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

p.is-style-intro {
  margin-left: 0;
  margin-block-end: 0;
  font-size: clamp(1.053rem, 3.306vw + 0.374rem, 3.158rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
}
.grid-block > p.is-style-intro {
  max-width: 540px;
  font-size: clamp(1.053rem, 0.826vw + 0.883rem, 1.579rem);
  margin-block-end: 1em;
}
.grid-block > p.is-style-intro:last-child {
  margin-block-end: 0;
}
.page-blocks > p.is-style-intro:first-child {
  padding-top: calc(var(--block-margin, 54px) * 1);
  padding-bottom: 0;
  margin-bottom: calc(var(--block-margin, 54px) * 1);
}
.page-blocks > p.is-style-intro:first-child:before {
  content: " ";
  display: block;
  position: absolute;
  top: calc(var(--border-width) / -2);
  left: 0;
  width: 100%;
  height: var(--border-width);
  background: currentColor;
  transition: width 0.5s ease-in-out;
}
.page-blocks > p.is-style-intro:first-child.appear-on-scroll.appear-init:before {
  width: 0;
}
.page-blocks > p.is-style-intro:first-child.appear-on-scroll.appear-init.appeared:before {
  width: 100%;
}
.page-blocks > p.is-style-intro.has-text-align-left, p.is-style-intro.has-text-align-left:first-child {
  max-width: 750px;
  margin-right: auto;
  margin-left: 0;
}
p.is-style-intro.has-text-align-right, p.is-style-intro.has-text-align-right:first-child {
  max-width: 750px;
  margin-left: auto;
  margin-right: 0;
}
p.is-style-intro.no-max-width {
  max-width: none;
}

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

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

#header-height {
  grid-area: h;
}

body.front-page2:not(.scrolled) #header {
  translate: 0 calc(-100% - var(--border-width));
}
body.front-page2:not(.scrolled) #header .appear-on-scroll {
  opacity: 1;
  transform: translate(0px, 0px);
}
body.front-page2:not(.scrolled).menu-on #header {
  translate: 0 0%;
}

#header {
  --appear-offset: calc(var(--block-margin, 54px) * -1);
  --logo-width: clamp(9.474rem, 7.438vw + 7.947rem, 14.211rem);
  position: absolute;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "logo nav toggle";
  grid-template-rows: auto;
  padding: calc(var(--block-margin, 54px) * 1) var(--gutter-right) 0 var(--gutter-left);
  background: var(--page-background-color, white);
  line-height: 1;
}
body:not(.front-page) #header {
  position: fixed;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  transition: translate 0.3s ease-in-out;
}
body.scrolled:not(.front-page) #header {
  translate: 0 calc(-100% - var(--border-width));
}
body.scrolled.scroll-up:not(.front-page) #header {
  translate: 0 0%;
}
#header .border {
  --border-size: calc(100% - (var(--border-width) * (var(--separator-offset) - 1)));
  position: absolute;
  left: 0;
}
#header .border:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  background: currentColor;
  transition: width 0.5s ease-in-out;
}
#header .border.bottom {
  width: var(--border-size);
  bottom: calc(0px - var(--border-width) / 2);
  height: var(--border-width);
}
#header .border.right {
  left: auto;
  height: var(--border-size);
  width: var(--border-width);
  right: calc(0px - var(--border-width) / 2);
  top: 0;
}
#header .border.right:before {
  transition: height 0.5s ease-in-out;
}
#header .border.trigger-on-scroll.appear-init.bottom:before {
  width: 0;
}
#header .border.trigger-on-scroll.appear-init.bottom.appeared:before {
  width: 100%;
}
#header .border.trigger-on-scroll.appear-init.right:before {
  height: 0;
}
#header .border.trigger-on-scroll.appear-init.right.appeared:before {
  height: 100%;
}
#header .block-logo {
  position: relative;
  grid-area: logo;
  padding: 0 calc(var(--block-margin, 54px) * 1) calc(var(--block-margin, 54px) * 1) 0;
}
#header .block-logo a {
  display: block;
  width: var(--logo-width);
}
#header .block-logo svg {
  display: block;
  fill: currentColor;
}
#header .block-logo .border.bottom {
  right: 0;
}
#header .block-nav {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  position: relative;
  grid-area: nav;
  width: 100%;
  font-weight: 700;
  text-transform: uppercase;
}
#header .block-nav ul, #header .block-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .block-nav ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: calc(var(--block-margin, 54px) * 1);
}
#header .block-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
#header .block-nav a:after {
  content: " ";
  display: block;
  position: absolute;
  margin: 0.2em 0 0;
  top: 100%;
  left: 0;
  width: var(--highlight-width, 0%);
  height: 3px;
  background: currentColor;
  transition: width 0.2s ease;
}
#header .block-nav a:hover {
  --highlight-width:100%;
}
#header .block-nav .border.bottom {
  left: auto;
  right: 0;
}
#header .block-nav .border.bottom:before {
  left: 0;
  right: auto;
}
#header .block-toggle {
  display: none;
  position: relative;
  grid-area: toggle;
  justify-content: end;
}
#header .block-toggle .border.bottom {
  left: auto;
  right: 0;
}
#header .block-toggle .border.bottom:before {
  left: 0;
  right: auto;
}
#header .block-toggle button {
  display: flex;
  align-items: start;
  margin: 0 0 calc(var(--border-width) * (var(--separator-offset) - 1)) calc(var(--border-width) * (var(--separator-offset) - 1));
  padding: 0;
  background: none;
  border: 0;
  color: currentColor;
}
#header .block-toggle .bars {
  --line-width: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: space-evenly;
  width: 40.5px;
}
#header .block-toggle .bars:before, #header .block-toggle .bars:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: var(--line-width);
  background: currentColor;
  translate: 0 -50%;
  transition: transform 0.3s ease-in-out;
  opacity: 0;
}
#header .block-toggle .bar {
  display: block;
  height: var(--line-width);
  width: 100%;
  background: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
body.menu-on #header .block-toggle .bars:before, body.menu-on #header .block-toggle .bars:after {
  opacity: 1;
}
body.menu-on #header .block-toggle .bars:before {
  transform: rotate(45deg);
}
body.menu-on #header .block-toggle .bars:after {
  transform: rotate(-45deg);
}
body.menu-on #header .block-toggle .bars .bar {
  opacity: 0;
}
#header .site-logo__link {
  display: none;
}
@media screen and (max-width: 767px) {
  #header {
    display: flex;
    grid-template-areas: "logo toggle";
    grid-template-columns: auto auto;
  }
  #header .block-logo {
    width: 100%;
    transition: width 0.5s ease-in-out;
  }
  #header .block-toggle {
    z-index: 2;
    display: flex;
    transition: width 0.5s ease-in-out;
    width: calc(var(--border-width) * (var(--separator-offset) - 1) + 54px * 0.75);
  }
  #header .block-nav {
    box-sizing: border-box;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    margin: -5px 0 0 0;
    padding: 0 var(--gutter-right) 0 calc(var(--gutter-left) + calc(var(--block-margin, 54px) * 3) + var(--border-width) * (var(--separator-offset) - 1));
    background: var(--page-background-color, transparent);
    font-size: 1.7894736842rem;
    text-align: left;
    overflow: hidden;
    height: 0;
    /*
    &:after {
        content:' ';
        display:block;
        position:absolute;
        bottom:0;
        left:0;
        width:100%;

    }
        */
  }
  #header .block-nav a:after {
    margin-top: 0;
  }
  #header .block-nav > .nav.appear-on-scroll {
    --appear-offset-x: calc(var(--block-margin, 54px) * -0.5);
    --appear-offset:0px;
  }
  body:not(.menu-on) #header .block-nav > .nav.appear-on-scroll {
    transition: none;
  }
  body.menu-on #header .block-nav {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .block-nav .border.bottom {
    display: none;
  }
  #header .block-nav ul {
    justify-self: start;
    flex-direction: column;
    align-items: start;
    gap: 0.5em;
  }
  #header .block-nav .site-logo__link {
    position: absolute;
    bottom: calc(var(--block-margin, 54px) * 1);
    left: var(--gutter-left);
    width: calc(100% - var(--gutter-right) - var(--gutter-left));
  }
  #header .block-nav .site-logo__link svg {
    visibility: hidden;
    fill: currentColor;
  }
  #header .block-nav .site-logo__link .border {
    display: none;
    bottom: calc(var(--nav-logo-height) + calc(var(--block-margin, 54px) * 1) + var(--border-width) / 2);
    top: auto;
    height: var(--border-width);
  }
  #header .block-nav .site-logo__link .border:before {
    transition: width 0.5s ease-in-out;
  }
  #header .block-nav .site-logo__link .border.right2 {
    right: 0;
    width: calc(100% - calc(var(--block-margin, 54px) * 3) - var(--border-width) * (var(--separator-offset) - 1));
  }
  #header .block-nav .site-logo__link .border.left2 {
    left: 0;
    width: calc(calc(var(--block-margin, 54px) * 3) - var(--border-width) * (var(--separator-offset) - 1));
  }
  #header .block-nav .site-logo__link .border.left2:before {
    right: 0;
    left: auto;
  }
  body.menu-on #header .border.right.sep {
    transition: height 0.5s ease-in-out;
  }
  body.menu-on #header .block-nav {
    z-index: 1;
  }
  body.menu-on.front-page #header .block-nav {
    height: auto;
  }
  body.menu-on:not(.front-page) #header {
    position: fixed;
    margin-top: var(--wp-admin--admin-bar--height, 0px);
    background: var(--page-background-color, white);
  }
  body.menu-on:not(.front-page) #header .block-logo {
    z-index: 2;
    width: calc(var(--block-margin, 54px) * 2);
  }
  body.menu-on:not(.front-page) #header .block-logo .site-logo {
    max-width: calc(var(--block-margin, 54px) * 2);
    visibility: hidden;
  }
  body.menu-on:not(.front-page) #header .block-toggle {
    width: 100%;
  }
  body.menu-on:not(.front-page) #header .block-nav {
    padding-top: calc(var(--block-margin, 54px) * 1);
    background: var(--page-background-color, white);
    height: calc(100dvh - var(--header-height, 90px) - var(--wp-admin--admin-bar--height, 0px) - var(--border-width) / 2);
  }
  body.menu-on:not(.front-page) #header .border.right.sep {
    top: 0;
    height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px) - calc(var(--block-margin, 54px) * 3.3) - var(--nav-logo-height, 0px) - var(--border-width) * (var(--separator-offset) - 1));
    bottom: auto;
  }
  body.menu-on:not(.front-page) #header .block-nav .site-logo__link {
    display: block;
  }
  body.menu-on:not(.front-page) #header .block-nav .site-logo__link svg {
    visibility: visible;
  }
  body.menu-on:not(.front-page) #header .block-nav .site-logo__link .border {
    display: block;
  }
}
body.front-page #header {
  background: transparent;
}
@media screen and (min-width: 768px) {
  body.front-page #header {
    padding-bottom: calc(var(--block-margin, 54px) * 1);
  }
  body.front-page #header .border {
    display: none;
  }
  body.front-page #header .block-logo {
    display: none;
  }
  body.front-page #header .block-logo .site-logo {
    visibility: hidden;
  }
}
@media screen and (max-width: 767px) {
  body.front-page #header {
    grid-template-columns: auto 1fr;
    padding-bottom: calc(var(--block-margin, 54px) * 1);
  }
  body.front-page #header .border {
    display: none;
  }
  body.front-page #header .block-logo .site-logo {
    max-width: calc(var(--block-margin, 54px) * 2);
    overflow: hidden;
  }
  body.front-page #header .block-logo a {
    visibility: hidden;
  }
}

#bottom {
  --page-background-color: #4F2732;
  --page-color: #E8432A;
  --heading-font-size: clamp(1.789rem, 2.149vw + 1.348rem, 3.158rem);
  position: relative;
  z-index: 20;
  margin: 0;
  padding: calc(var(--block-margin, 54px) * 1) var(--gutter-right) calc(var(--block-margin, 54px) * 1) var(--gutter-left);
  background: var(--page-background-color, #4F2732);
  color: var(--page-color, #E8432A);
}
#bottom .block-title .heading.h2 {
  font-size: var(--heading-font-size);
}
#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
#footer:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 50dvh;
  background: var(--page-background-color, #4F2732);
}

#footer-cloned {
  visibility: hidden;
  z-index: -1;
}

body.is-short-page #footer {
  position: relative;
  bottom: auto;
  left: auto;
  width: auto;
}
body.is-short-page #footer-cloned {
  display: none !important;
}

.site-footer {
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  --footer-gap: calc(var(--block-margin, 54px) * 3);
  --color: #4F2732;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
  padding: calc(var(--block-margin, 54px) * 1) var(--gutter-right) calc(var(--block-margin, 54px) * 1) var(--gutter-left);
  background: #B5C4E1;
  color: var(--color);
  display: grid;
  row-gap: calc(var(--block-margin, 54px) * 1.5);
  align-items: end;
  grid-template-columns: 1fr 1fr 1fr auto;
  grid-template-rows: auto var(--footer-gap) auto;
  grid-template-areas: "logo logo logo logo" ". . . ." "social content nav copy";
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.site-footer a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.site-footer a:after {
  content: " ";
  display: block;
  position: absolute;
  margin: 0.2em 0 0;
  top: 100%;
  left: 0;
  width: var(--highlight-width, 0%);
  height: 3px;
  background: currentColor;
  transition: width 0.2s ease;
}
.site-footer a:hover {
  --highlight-width:100%;
}
.site-footer ul, .site-footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .block-logo {
  grid-area: logo;
}
.site-footer .block-logo a {
  display: block;
  padding-bottom: calc(var(--block-margin, 54px) * 1);
}
.site-footer .block-logo a:after {
  margin: 0;
  width: 100%;
  height: var(--border-width);
}
.site-footer .block-logo svg {
  display: block;
  fill: currentColor;
}
.site-footer .block-social {
  grid-area: social;
}
.site-footer .block-social ul {
  display: flex;
  align-items: center;
  gap: calc(var(--block-margin, 54px) * 0.2);
}
.site-footer .block-social a {
  --icon-size: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(var(--icon-size) * 1.25);
  height: calc(var(--icon-size) * 1.25);
  line-height: 1;
  background: var(--color);
  color: white;
  text-align: center;
  font-size: var(--icon-size);
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
}
.site-footer .block-social a .icon {
  translate: 0 1px;
}
.site-footer .block-social .icon-instagram a {
  border-radius: 10px;
}
.site-footer .block-social .icon-facebook-f a {
  border-radius: 50%;
}
.site-footer .block-social .icon-facebook-f a .icon {
  translate: 0 4px;
  font-size: calc(var(--icon-size) * 1.1);
}
.site-footer .block-content {
  grid-area: content;
}
.site-footer .block-nav {
  grid-area: nav;
}
.site-footer .block-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.site-footer .block-copyright {
  grid-area: copy;
}
@media screen and (max-width: 800px) {
  .site-footer {
    row-gap: 0;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto calc(var(--block-margin, 54px) * 5) 1fr auto auto;
    grid-template-areas: "logo logo" ". ." "social nav" "content nav" "content copy";
    text-align: right;
  }
  .site-footer .block-content {
    text-align: left;
    margin-top: 1em;
  }
  .site-footer .block-nav {
    margin-bottom: 0.5em;
  }
}
@media screen and (max-width: 400px) {
  .site-footer {
    font-size: 0.7rem;
  }
  .site-footer .block-social a {
    --icon-size:20px;
  }
}

.icon.the-arrow {
  --icon-size: 1.4ex;
  --icon-border-width: .13em;
  position: relative;
  display: inline-block;
  width: var(--icon-size);
  height: var(--icon-size);
  box-sizing: border-box;
  border: 0 solid currentColor;
  border-width: var(--icon-border-width) var(--icon-border-width) 0 0;
  transition: 0.2s ease;
  /*
  --elem-icon-size: var(--icon-size, .4em);
  --elem-icon-height: var(--elem-icon-size);
  --elem-icon-width: calc(var(--elem-icon-size) * 1.75);
  --elem-icon-line-width: var(--icon-width, 5px);
  position:relative;
  display:inline-block;
  width:var(--elem-icon-width);
  height:var(--elem-icon-height);


  i {
      display:inline-block;
      position:absolute;
      top:0%;
      left:0%;
      width:100%;
      height:100%;
      // transform: translate(-50%, -50%);
      transition: $hover-transition;
      translate:var(--icon-x, 0px) var(--icon-y, 0px);
      rotate: var(--icon-rotate, 0deg);
      &:before,
      &:after {
          content:' ';
          display:block;
          position:absolute;
          z-index:1;
          box-sizing:border-box;
      }
      &:before {                    
          width:var(--elem-icon-size);
          height:var(--elem-icon-size);
          top:50%;
          right:50%;
          margin-right: calc(var(--elem-icon-width) / -2);
          border: var(--elem-icon-line-width) solid currentColor;
          border-width:var(--elem-icon-line-width) var(--elem-icon-line-width) 0 0;
          transform: rotate(45deg);
          transform-origin: 100% 0%;
      }
      &:after {
          height:var(--elem-icon-line-width);
          width:calc(var(--elem-icon-width) - var(--elem-icon-line-width));
          right:50%;//var(--elem-icon-line-width);
          top:50%;
          margin-right: calc(var(--elem-icon-width) / -2 + var(--elem-icon-line-width));
          margin-top:calc(var(--elem-icon-line-width) / -2);
          background:currentColor;

      }
  }

  &.up {
      --icon-rotate: -90deg;
  }
  &.up-right {
      --icon-rotate: -45deg;
  }

  &.right {
      --icon-rotate: 0deg;
  }    
  &.down-right {
      --icon-rotate: 45deg;
  }
  &.down {
      --icon-rotate: 90deg;
  }
  &.down-left {
      --icon-rotate: 135deg;
  }
  &.left {
      --icon-rotate: 180deg;
  }
  &.up-left {
      --icon-rotate: 225deg;
  }
  */
}
.icon.the-arrow:before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc((var(--icon-size) - var(--icon-border-width) * 1) * 1.414);
  height: var(--icon-border-width);
  transform-origin: 50% 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: currentColor;
}

.theme-block {
  --block-margin-multiplier: 1;
  position: relative;
  margin-top: calc(var(--block-margin, 54px) * var(--block-margin-multiplier));
  margin-bottom: calc(var(--block-margin, 54px) * var(--block-margin-multiplier));
}
.grid-block > .border + .theme-block, .theme-block:first-child {
  margin-top: 0;
}
.theme-block:last-child {
  margin-bottom: 0;
}
.page-blocks > .theme-block.is-style-full-width, .page-blocks > .theme-block.full-width {
  margin-left: calc(var(--gutter-left-override, var(--gutter-left)) * -1);
  margin-right: calc(var(--gutter-right-override, var(--gutter-right)) * -1);
}
.page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
  max-width: 1800px;
  margin: 0 auto;
}
@media screen and (max-width: 1986.2068965517px) {
  .page-blocks > .theme-block.is-style-full-width > .wrap, .page-blocks > .theme-block.full-width > .wrap {
    margin: 0 4.6875%;
  }
}
.page-blocks > .theme-block.is-style-content-width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.page-blocks > .theme-block.has-background + .has-background {
  margin-top: calc(var(--block-margin, 54px) * calc(var(--block-margin-multiplier) * -1));
}
body > .theme-block.has-background {
  margin-top: 0;
  margin-bottom: 0;
}

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

.site-skip-nav {
  position: absolute;
  display: block;
  grid-area: unset;
  top: 0;
  left: 0;
  padding: 1em;
  background: #4F2732;
  color: white;
  transform: translate(-100%, 0%);
  font-weight: 700;
}
.site-skip-nav:focus {
  transform: translate(0%, 0%);
  z-index: 1101;
}

:root body {
  --wrapper-padding-top: calc(var(--header-height, 70px) + var(--alert-height, 0px));
  position: relative;
  z-index: 100;
  padding: var(--wrapper-padding-top) 0 0 0;
}
:root body.has-hidden-header {
  padding-top: 0;
}

/*
.block {
    --separator-offset: 5;
    position:relative;
    border:0;
    &.has-border-bottom {
        padding-bottom:block-margin(1);

        border-bottom: var(--border-width) solid currentColor;

    }
    &.has-border-top {
        padding-top:block-margin(1);
        border-top: var(--border-width) solid currentColor;
    }
    &.has-border-right {
        padding-right: block-margin(1);
        &:before,
        &:after {
            content:' ';
            display:block;
            position:absolute;
            z-index:1;
            top:0;
            height:var(--border-height, 100%);


        }
        &:before {
            left:calc(100% - (var(--border-width) * var(--separator-offset) / 2));
            width:calc(var(--border-width) * var(--separator-offset));
            background:var(--page-background-color, white);

        }
        &:after {
            left:calc(100% - (var(--border-width) / 2));
            width:var(--border-width);
            background-color: currentColor;
        }
        &.has-border-bottom:before {
            --border-height: calc(100% + var(--border-width));
        }
        &.has-border-bottom:after {
            --border-height: calc(100% - (((var(--border-width) * var(--separator-offset)) - var(--border-width))) / 2);
        }
    }
}
*/
.main-content {
  --page-blocks-padding-bottom: calc(var(--block-margin, 54px) * 1);
  position: relative;
  z-index: 100;
  padding: calc(var(--block-margin, 54px) * 8.5) 0 0;
  margin: 0;
  background: var(--page-background-color, white);
  color: var(--page-color, #4F2732);
}
.main-content.archive {
  --page-blocks-padding-top: calc(var(--block-margin, 54px) * 1);
}
.main-content:before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 50dvh;
  background: var(--page-background-color, white);
}
body.error404 .main-content {
  padding-top: calc(var(--block-margin, 54px) * 5);
}
body.front-page .main-content, body.front-page2 .main-content {
  padding-top: 0;
}
.main-content > .layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--gutter-left) minmax(0, 1fr) var(--gutter-right);
  grid-template-areas: "hero hero hero" ". title ." ". filters ." ". blocks ." ". posts ." ". navigation .";
}
.main-content .block-hero {
  grid-area: hero;
}
.main-content .block-page-title {
  --max-scale: .07;
  grid-area: title;
  text-transform: uppercase;
  padding-bottom: calc(var(--block-margin, 54px) * 0.8);
}
.main-content .block-page-title #page-title .text {
  display: inline-block;
  transform-origin: 0% 100%;
}
.main-content .block-page-title #page-title.is-scrolling .text {
  scale: calc(1 + var(--tick, 0) * var(--max-scale));
}
.main-content .block-featured-image {
  grid-area: featured-image;
}
.main-content .page-blocks {
  display: block;
  position: relative;
  grid-area: blocks;
  padding: 0;
  margin: 0 0 var(--page-blocks-padding-bottom);
}
body.archive .main-content .page-blocks {
  min-height: 0;
}
body.error404 .main-content .page-blocks {
  min-height: 40vh;
  margin: auto;
  text-align: center;
}
body.error404 .main-content .page-blocks .wp-block-buttons {
  margin-top: 3rem;
}
.main-content .block-hero + .page-blocks {
  padding-top: calc(var(--block-margin, 54px) * 1);
}
.main-content .block-hero + .page-blocks:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: calc(var(--gutter-left) * -1);
  width: calc(100% + var(--gutter-left) + var(--gutter-right));
  height: calc(100% + var(--block-margin, 54px) * 1);
  background: var(--page-background-color, white);
}
.main-content .block-navigation.wp-block-buttons {
  grid-area: navigation;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "visit . next";
  margin: 0 0 calc(var(--block-margin, 54px) * 2);
  gap: 0;
}
.main-content .block-navigation.wp-block-buttons .wp-block-button.visit {
  grid-area: visit;
}
.main-content .block-navigation.wp-block-buttons .wp-block-button.next {
  grid-area: next;
}
@media screen and (max-width: 1024px) {
  .main-content .block-navigation.wp-block-buttons {
    gap: calc(var(--block-margin, 54px) * 1.5);
    grid-template-columns: auto;
    grid-template-areas: "visit" "next";
  }
}
.main-content .block-filters {
  grid-area: filters;
}
.main-content .query-posts {
  grid-area: posts;
  padding: 0;
  margin: 0 0 calc(var(--block-margin, 54px) * 1);
}
.main-content .navigation.pagination {
  grid-area: navigation;
  margin: 0 0 calc(var(--block-margin, 54px) * 1) 0;
}
.main-content .navigation.pagination .nav-links {
  font-size: clamp(1.053rem, 0.826vw + 0.883rem, 1.579rem);
  font-weight: 600;
}
.main-content .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  padding: 0.5em;
  line-height: 1;
  background: #f4f4f4;
  text-decoration: none;
}
.main-content .navigation.pagination .nav-links .page-numbers.current {
  background: #4F2732;
  color: white;
}
.main-content .posts-nav {
  grid-area: pager;
  display: flex;
  justify-content: center;
}
.main-content .posts-nav:last-child {
  margin-bottom: calc(var(--block-margin, 54px) * 1);
}
.main-content .posts-nav .nav-links {
  display: flex;
  font-family: area-normal, sans-serif;
}
.main-content .posts-nav .nav-links .page-numbers {
  display: inline-block;
  padding: 1em;
  min-width: 3.5em;
  box-sizing: border-box;
  text-decoration: none;
  background: #f4f4f4;
  text-align: center;
}
.main-content .posts-nav .nav-links .page-numbers:not(.dots, .current):hover {
  background-color: #ccc;
}
.main-content .posts-nav .nav-links .page-numbers.current {
  background: navy;
  color: white;
}
.main-content .posts-nav .nav-links .page-numbers.dots {
  background: transparent;
}
.main-content .posts-nav .nav-links .page-numbers.prev {
  margin-right: 0.25rem;
}
.main-content .posts-nav .nav-links .page-numbers.next {
  margin-left: 0.25rem;
}
.main-content .refine-search {
  grid-area: refine;
  margin: calc(var(--block-margin, 54px) * 1) auto;
  max-width: 800px;
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  justify-content: center;
}
.main-content .refine-search input[type=text] {
  flex-grow: 1;
}
.main-content .block-recommended {
  grid-area: recommended;
}
.main-content .block-filters {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap, 2rem);
  grid-area: title;
  align-self: end;
  justify-self: end;
  margin: 0;
  padding: 0 0 calc(var(--block-margin, 54px) * 0.8) 0;
  list-style: none;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-content .block-filters a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.main-content .block-filters a:after {
  content: " ";
  display: block;
  position: absolute;
  margin: 0.2em 0 0;
  top: 100%;
  left: 0;
  width: var(--highlight-width, 0%);
  height: 3px;
  background: currentColor;
  transition: width 0.2s ease;
}
.main-content .block-filters a:hover {
  --highlight-width:100%;
}
.main-content .block-filters li.selected {
  --highlight-width:100%;
}
@media screen and (max-width: 1600px) {
  .main-content .block-filters {
    --gap:1rem;
  }
}
@media screen and (max-width: 1500px) {
  .main-content .block-filters {
    grid-area: filters;
    justify-self: start;
    align-self: start;
  }
}

.test-font {
  background: red;
  font-size: 80px;
}

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

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

.h1,
h1 {
  font-size: clamp(1.895rem, 8.595vw + 0.13rem, 7.368rem);
  line-height: 1;
}

.h2,
h2 {
  font-size: clamp(1.053rem, 3.306vw + 0.374rem, 3.158rem);
  line-height: 1.1;
}

.h3,
h3 {
  font-size: clamp(0.684rem, 1.405vw + 0.396rem, 1.579rem);
  line-height: 1.1;
}

.h4,
h4 {
  font-family: area-normal, sans-serif;
  font-size: clamp(1.053rem, 0.331vw + 0.985rem, 1.263rem);
  line-height: 1.2;
}

.h5,
h5 {
  font-family: area-normal, sans-serif;
  font-size: clamp(0.947rem, 0.165vw + 0.913rem, 1.053rem);
  line-height: 1.3;
}

.h6,
h6 {
  font-family: area-normal, sans-serif;
  font-size: 0.9473684211rem;
  line-height: 1.3;
}

strong.heading {
  font-family: area-normal, sans-serif;
  font-size: 1.2em;
  font-weight: 700;
}

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

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

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

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

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

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

.is-style-expandable {
  --highlight-color: #E8432A;
  cursor: pointer;
  position: relative;
  padding-left: 1.2em;
  text-decoration: none;
}
h1:not(.is-style-expandable) + .is-style-expandable, h2:not(.is-style-expandable) + .is-style-expandable, h3:not(.is-style-expandable) + .is-style-expandable, h4:not(.is-style-expandable) + .is-style-expandable, h5:not(.is-style-expandable) + .is-style-expandable, h6:not(.is-style-expandable) + .is-style-expandable {
  margin-top: calc(var(--block-margin, 54px) * 0.25);
}
.is-style-expandable:hover {
  text-decoration: underline;
}
.is-style-expandable:before {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 0.1em;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.4em;
  font-size: 0.6em;
  text-align: center;
  margin: 0.15em 0 0 0;
  border-radius: 50%;
  transition: all 0.2s ease;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\+";
  color: white;
  background: var(--highlight-color);
  transform: rotate(90deg);
}
.is-style-expandable:before:hover {
  background: #E8432A;
}
h3.is-style-expandable:before {
  top: 0.17em;
}

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

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

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

.is-style-expandable:focus {
  outline: none;
  text-decoration: underline;
}
.is-style-expandable:focus:before {
  background-color: #E8432A;
}
.is-style-expandable.opened:before {
  transform: rotate(180deg);
  content: "\f068";
  background-color: #E8432A;
}
@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: 0.75em;
}
.expand-content + h1:not(.is-style-expandable), .expand-content + h2:not(.is-style-expandable), .expand-content + h3:not(.is-style-expandable), .expand-content + h4:not(.is-style-expandable), .expand-content + h5:not(.is-style-expandable), .expand-content + h6:not(.is-style-expandable) {
  margin-top: calc(var(--block-margin, 54px) * 1);
}

h1.is-style-section-heading,
h2.is-style-section-heading,
h3.is-style-section-heading {
  margin-top: calc(var(--block-margin, 54px) * 1.5);
  margin-bottom: calc(var(--block-margin, 54px) * 0.5);
  padding: 0;
  font-size: clamp(1.579rem, 2.066vw + 1.155rem, 2.895rem);
  font-weight: 500;
  text-align: center;
}
h1.is-style-section-heading:first-child,
h2.is-style-section-heading:first-child,
h3.is-style-section-heading:first-child {
  margin-top: 0;
}
h1.is-style-section-heading:last-child,
h2.is-style-section-heading:last-child,
h3.is-style-section-heading:last-child {
  margin-bottom: 0;
}
h1.is-style-section-heading.appear-on-scroll:after,
h2.is-style-section-heading.appear-on-scroll:after,
h3.is-style-section-heading.appear-on-scroll:after {
  width: 0;
}
h1.is-style-section-heading.appear-on-scroll.appeared:after,
h2.is-style-section-heading.appear-on-scroll.appeared:after,
h3.is-style-section-heading.appear-on-scroll.appeared:after {
  width: 100%;
}
h1.is-style-section-heading > .text,
h2.is-style-section-heading > .text,
h3.is-style-section-heading > .text {
  display: inline-block;
}
h1.is-style-section-heading + .is-style-intro,
h2.is-style-section-heading + .is-style-intro,
h3.is-style-section-heading + .is-style-intro {
  margin: calc(var(--block-margin, 54px) * -0.25) auto calc(var(--block-margin, 54px) * 0.5);
  text-align: center;
}
h1.is-style-section-heading + .is-style-intro:last-child,
h2.is-style-section-heading + .is-style-intro:last-child,
h3.is-style-section-heading + .is-style-intro:last-child {
  margin-bottom: 0;
}

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

.wp-block-buttons {
  margin: calc(var(--block-margin, 54px) * 1) 0;
  gap: calc(var(--block-margin, 54px) * 1);
  font-size: clamp(1.053rem, 0.826vw + 0.883rem, 1.579rem);
}
.wp-block-buttons:first-child {
  margin-top: 0;
}
.wp-block-buttons:last-child {
  margin-bottom: 0;
}
.wp-block-buttons:not(.is-style-large) {
  --border-width: clamp(0.211rem, 0.083vw + 0.194rem, 0.263rem);
}
.wp-block-buttons.is-style-large {
  font-size: clamp(1.579rem, 2.479vw + 1.07rem, 3.158rem);
}

.wp-block-button {
  position: relative;
  --arrow-hover-offset: 2px;
  font-family: area-normal, sans-serif;
}
.wp-block-button > .label {
  font-weight: 600;
}
.wp-block-button > .wp-block-button__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon label";
  align-items: start;
  gap: 0.5em;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  color: inherit;
  text-align: left;
  line-height: 1;
  text-transform: uppercase;
  font-size: inherit;
}
.wp-block-button > .wp-block-button__link .icon.the-arrow {
  grid-area: icon;
  translate: 0 0.2em;
  rotate: var(--icon-rotate, 0deg);
}
.wp-block-button > .wp-block-button__link .label {
  grid-area: label;
}
.clickable:hover .wp-block-button > .wp-block-button__link, .wp-block-button > .wp-block-button__link:hover {
  --icon-rotate: 45deg;
}
.wp-block-button:not(.is-styled) > .wp-block-button__link {
  border: 0;
  background: transparent;
  color: currentColor;
}
.wp-block-button.is-style-fill > .wp-block-button__link {
  padding: 0 0.5em;
  background-color: var(--page-color, #4F2732);
  color: var(--page-background-color, white);
}
.wp-block-button.is-style-fill > .wp-block-button__link:hover {
  background-color: #E8432A;
  color: white;
}
.wp-block-button.load-more {
  border: 0;
}
.wp-block-button.load-more.done {
  --hover-background-color: white;
  cursor: default;
}
.wp-block-button.load-more.done > .wp-block-button__link {
  cursor: inherit;
  background: inherit;
  color: inherit;
  border: 0;
}

.wp-block-image {
  --appear-offset: 0px;
  margin: calc(var(--block-margin, 54px) * 1) 0;
  display: block;
  position: relative;
}
.wp-block-image:first-child {
  margin-top: 0;
}
.wp-block-image:last-child {
  margin-bottom: 0;
}
.wp-block-image a,
.wp-block-image img {
  display: block;
  width: 100%;
}
.wp-block-image a {
  display: block;
}
.wp-block-image figcaption {
  display: block;
  margin: 0.5em 0 0 auto;
  text-align: right;
  font-size: 0.8em;
  line-height: 1;
  max-width: 500px;
}
.wp-block-image.appear-on-scroll.appear-init {
  overflow: hidden;
}
.wp-block-image.appear-on-scroll.appear-init > img {
  transform-origin: var(--focal-point, 50% 50%);
  scale: var(--image-scale, 1.2);
  transition: scale 0.375s ease-in-out;
}
.wp-block-image.appear-on-scroll.appear-init.appeared {
  --image-scale:1;
}

@media screen and (min-width: 768px) {
  .grid-block:last-child .wp-block-image.has-aspect-ratio.has-692-901-aspect-ratio {
    margin-right: calc(var(--block-margin, 54px) * 3);
  }
  .grid-block:first-child .wp-block-image.has-aspect-ratio.has-692-901-aspect-ratio {
    margin-left: calc(var(--block-margin, 54px) * 3);
  }
}
.wp-block-group {
  position: relative;
  margin-top: calc(var(--block-margin, 54px) * var(--block-margin-multiplier, 1));
  margin-bottom: calc(var(--block-margin, 54px) * var(--block-margin-multiplier, 1));
}
.wp-block-group.is-position-sticky {
  position: sticky;
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-separator + .wp-block-group, h1 + .wp-block-group, h2 + .wp-block-group, h3 + .wp-block-group, h4 + .wp-block-group, h5 + .wp-block-group, h6 + .wp-block-group, .heading + .wp-block-group {
  margin-top: calc(var(--block-margin, 54px) * 0.5);
}

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

.wp-block-group.is-properties.has-background {
  padding-top: calc(var(--block-margin, 54px) * 1);
  padding-bottom: calc(var(--block-margin, 54px) * 1);
}
.wp-block-group.is-properties .wp-block-theme-blocks-posts {
  margin-top: calc(var(--block-margin, 54px) * 2);
}
.wp-block-group.is-properties .wp-block-theme-blocks-posts .query-posts .hentry:first-child {
  border-top: 0;
  padding-top: 0;
  margin-top: calc(var(--block-margin, 54px) * -0.5);
}

.wp-block-quote {
  --block-padding: calc(var(--block-margin, 54px) * 1);
  position: relative;
  margin: calc(var(--block-margin, 54px) * 1) 0;
  padding: var(--block-padding);
  background: #B5C4E1;
  font-weight: 700;
  font-size: clamp(1.579rem, 2.479vw + 1.07rem, 3.158rem);
  font-optical-sizing: none;
  line-height: 1.1;
  text-transform: uppercase;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote:before {
  content: "“";
  display: block;
  position: absolute;
  top: var(--block-padding);
  right: calc(100% - var(--block-padding));
}
.wp-block-quote p {
  max-width: calc(var(--block-margin, 54px) * 11);
  margin-block-end: 0;
}
.wp-block-quote p:after {
  content: "”";
  display: inline;
}
.wp-block-quote cite {
  display: block;
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  font-style: normal;
}
.grid-block > .wp-block-quote {
  margin: 0;
  align-self: stretch;
  min-height: 100%;
}

.wp-block-separator {
  position: relative;
  margin: 0;
  margin-block-start: calc(var(--block-margin, 54px) * 1);
  margin-block-end: calc(var(--block-margin, 54px) * 1);
  width: 100%;
  border: var(--border-width) solid currentColor;
  border-width: var(--border-width) 0 0;
  height: 0;
  transition: 0.5s ease-in-out;
}
.wp-block-separator:first-child {
  margin-block-start: 0;
}
.wp-block-separator:last-child {
  margin-block-end: 0;
}
.wp-block-separator.trigger-on-scroll {
  width: 0%;
}
.wp-block-separator.trigger-on-scroll.appeared {
  width: 100%;
}

:where(body .page-blocks) ul, :where(body .page-blocks) ol {
  margin: 0 0 0 1em;
  padding: 0;
  margin-block-start: 2rem;
  margin-block-end: 2rem;
  font-size: clamp(0.579rem, 0.661vw + 0.443rem, 1rem);
  font-weight: 700;
  text-transform: uppercase;
}
:where(body .page-blocks) ul:last-child, :where(body .page-blocks) ol:last-child {
  margin-block-end: 0;
}
:where(body .page-blocks) ul > li, :where(body .page-blocks) ol > li {
  margin-block-end: 0.5em;
}
:where(body .page-blocks) ul > li:last-child, :where(body .page-blocks) ol > li:last-child {
  margin-block-end: 0;
}
@media screen and (max-width: 767px) {
  :where(body .page-blocks) ul, :where(body .page-blocks) ol {
    margin-block-start: 1rem;
  }
}
:where(body .page-blocks) ul > li {
  padding: 0 0 0 0.2em;
}
:where(body .page-blocks) ul > li::marker {
  content: "+";
  color: currentColor;
}

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

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

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

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

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

.wp-block-theme-blocks-grid {
  margin: calc(var(--block-margin, 54px) * 1) auto;
  --block-template-columns: 1fr 1fr;
}
.wp-block-theme-blocks-grid:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-grid:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-grid.is-style-30-70 {
  --block-template-columns: 5fr 10.07fr;
}
.wp-block-theme-blocks-grid.is-style-70-30 {
  --block-template-columns: 10.07fr 5fr;
}
.wp-block-theme-blocks-grid .border.trigger-on-scroll.appear-init:before {
  width: 0%;
  height: 0%;
}
.wp-block-theme-blocks-grid .border.trigger-on-scroll.appear-init.appeared:before {
  width: 100%;
  height: 100%;
}
.wp-block-theme-blocks-grid > .block-grid {
  position: relative;
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: auto;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-grid > .block-grid {
    grid-template-columns: var(--block-template-columns);
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-grid > .block-grid {
    grid-template-columns: auto;
  }
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: calc(var(--block-margin, 54px) * 1);
  width: auto;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block.has-column-span {
  grid-column: span var(--column-span);
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block.has-row-span {
  z-index: 2;
  grid-row: span var(--row-span);
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border + .wp-block-image {
  margin-top: 0;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border {
  --border-size: calc(100% - (var(--border-width) * (var(--separator-offset) - 1)));
  position: absolute;
  left: 0;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border:before {
  content: " ";
  display: block;
  position: absolute;
  /*
  top:0;
  left:50%;
  width:100%;
  height:100%;
  translate:-50% 0%;
  */
  transform-origin: 50% 50%;
  background: currentColor;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.top, .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.bottom {
  width: var(--border-size);
  height: var(--border-width);
}
:where(.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.top, .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.bottom):before {
  right: 0%;
  transition: width 0.5s ease-in-out;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.top {
  top: calc(0px - var(--border-width) / 2);
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.bottom {
  bottom: calc(0px - var(--border-width) / 2);
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.left {
  top: calc(0px + var(--border-width) * (var(--separator-offset) - 1));
  left: calc(0px - var(--border-width) / 2);
  width: var(--border-width);
  height: calc(100% - var(--border-width) * (var(--separator-offset) - 1) * 2);
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.left:before {
  top: 0;
  transition: height 0.5s ease-in-out;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block:first-child > .border.left {
  display: none;
}
.wp-block-theme-blocks-grid > .block-grid > .grid-block:last-child > .border.top,
.wp-block-theme-blocks-grid > .block-grid > .grid-block:last-child > .border.bottom {
  left: auto;
  right: 0;
}
:where(.wp-block-theme-blocks-grid > .block-grid > .grid-block:last-child > .border.top,
.wp-block-theme-blocks-grid > .block-grid > .grid-block:last-child > .border.bottom):before {
  right: auto;
  left: 0%;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-grid > .block-grid > .grid-block {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border {
    --border-size:100%;
  }
  .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border:before {
    left: 0;
    right: auto;
  }
  .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.left,
  .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.right {
    display: none;
  }
  .wp-block-theme-blocks-grid > .block-grid > .grid-block.is-empty-block {
    display: none;
  }
  .wp-block-theme-blocks-grid > .block-grid > .grid-block.has-no-bottom-border:last-child {
    padding-bottom: 0;
  }
}
.wp-block-theme-blocks-grid > .block-grid.two-across {
  --column-count:2;
}
.wp-block-theme-blocks-grid > .block-grid.two-across > .grid-block:nth-child(odd) {
  padding-left: 0;
}
.wp-block-theme-blocks-grid > .block-grid.two-across > .grid-block:nth-child(odd):before, .wp-block-theme-blocks-grid > .block-grid.two-across > .grid-block:nth-child(odd):after {
  display: none;
}
.wp-block-theme-blocks-grid > .block-grid.two-across > .grid-block:nth-child(even) {
  padding-right: 0;
}
.wp-block-theme-blocks-grid + .wp-block-theme-blocks-grid {
  margin-top: calc(var(--block-margin, 54px) * -1);
}
.wp-block-theme-blocks-grid + .wp-block-theme-blocks-grid > .block-grid > .grid-block {
  border-top: 0;
}
.wp-block-theme-blocks-grid + .wp-block-theme-blocks-grid > .block-grid > .grid-block > .border.top {
  display: none;
}

.grid-block.is-style-intro {
  display: flex;
  flex-direction: column;
}
.grid-block.is-style-intro.about h2 {
  flex-grow: 1;
}
.grid-block.is-style-intro > p:first-child {
  flex-grow: 1;
  font-size: clamp(1.053rem, 0.826vw + 0.883rem, 1.579rem);
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}
.grid-block.is-style-intro .desktop-hide {
  margin-bottom: calc(var(--block-margin, 54px) * 3);
}

.grid-block.has-center-vertical-align {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.grid-block.has-bottom-vertical-align {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.wp-block-theme-blocks-stats {
  --block-count-up-font-size-base: clamp(3.789rem, 6.771vw + 0.14rem, 5.842rem);
  --block-count-up-font-size: var(--block-count-up-font-size-override, var(--block-count-up-font-size-base));
  margin: calc(var(--block-margin, 54px) * 2) 0;
  line-height: 1;
  font-weight: 700;
}
.wp-block-theme-blocks-stats:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-stats:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-stats .block-statistics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(var(--block-margin, 54px) * 0.75);
}
.wp-block-theme-blocks-stats.font-resized .block-statistics {
  gap: unset;
}
.wp-block-theme-blocks-stats .statistic {
  display: inline-flex;
  align-items: end;
  gap: 0.5em;
  font-size: clamp(0.632rem, 0.248vw + 0.581rem, 0.789rem);
  text-transform: uppercase;
}
.wp-block-theme-blocks-stats .statistic strong {
  font-weight: 700;
}
.wp-block-theme-blocks-stats .statistic .label {
  display: inline-block;
  margin-bottom: calc(var(--block-count-up-font-size) * 0.125);
  max-width: 10em;
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-stats .block-statistics {
    -moz-column-gap: calc(var(--block-margin, 54px) * 0.5);
         column-gap: calc(var(--block-margin, 54px) * 0.5);
    row-gap: calc(var(--block-margin, 54px) * 1);
    flex-wrap: wrap;
  }
  .wp-block-theme-blocks-stats .statistic {
    width: calc(50% - calc(var(--block-margin, 54px) * 1));
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-stats .statistic {
    width: 100%;
  }
}

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

.wp-block-theme-blocks-posts.is-style-scroll {
  position: relative;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  box-sizing: border-box;
}
.wp-block-theme-blocks-posts.is-style-scroll .block-scrollable {
  overflow: scroll;
  overflow-y: hidden;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts {
  --hentry-width: 60vw;
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  margin: 0;
  width: auto;
  padding-top: var(--border-width);
  padding-left: var(--gutter-left);
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts:after {
  display: block;
  content: " ";
  min-width: var(--gutter-right);
  height: 100px;
  background: transparent;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry {
  min-width: calc((100vw - var(--gutter-left) - var(--gutter-right)) * 0.666 - calc(var(--block-margin, 54px) * 1));
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry {
    min-width: 65vw;
  }
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:first-child {
  padding-left: 0;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:first-child > .border.left {
  display: none;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:nth-child(n+2) > .border.top {
  --border-size: calc(100% - (var(--border-width) * (var(--separator-offset) - 1) * 2));
  right: calc(0px + var(--border-width) * (var(--separator-offset) - 1));
  left: auto;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:nth-child(n+2) > .border.top:before {
  left: 0;
  right: auto;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:last-child {
  padding-right: 0;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry:last-child > .border.top {
  --border-size: calc(100% - (var(--border-width) * (var(--separator-offset) - 1) * 1));
  right: 0;
}
.wp-block-theme-blocks-posts.is-style-scroll .query-posts .hentry > .border.bottom {
  display: none;
}
.wp-block-theme-blocks-posts.is-style-scroll .simplebar-track {
  background: white;
}
.wp-block-theme-blocks-posts.is-style-scroll .simplebar-track.simplebar-horizontal {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  height: var(--border-width);
  margin: 0 var(--gutter-right) 0 var(--gutter-left);
}
.wp-block-theme-blocks-posts.is-style-scroll .simplebar-track .simplebar-scrollbar.simplebar-visible:before {
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: currentColor;
  opacity: 1;
  border-radius: 0;
}

.wp-block-theme-blocks-profile {
  margin: calc(var(--block-margin, 54px) * 1) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto minmax(calc(var(--block-margin, 54px) * 1), 1fr) auto;
  grid-template-areas: "photo name" "photo title" "photo ." "photo content";
  -moz-column-gap: calc(var(--block-margin, 54px) * 0.5);
       column-gap: calc(var(--block-margin, 54px) * 0.5);
  align-items: start;
}
.border + .wp-block-theme-blocks-profile, .wp-block-theme-blocks-profile:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-profile:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-profile .block-photo {
  position: relative;
  grid-area: photo;
  align-self: start;
  background: rgba(0, 0, 0, 0.1);
  aspect-ratio: 407/546;
}
.wp-block-theme-blocks-profile .block-photo img,
.wp-block-theme-blocks-profile .block-photo .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% 25%);
     object-position: var(--focal-point, 50% 25%);
}
.wp-block-theme-blocks-profile .block-name {
  grid-area: name;
  margin: 0 0 0.2rem;
  font-size: clamp(0.684rem, 1.405vw + 0.396rem, 1.579rem);
}
.wp-block-theme-blocks-profile .block-title {
  grid-area: title;
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-profile .block-title {
    font-size: 8px;
  }
}
.wp-block-theme-blocks-profile .block-content {
  grid-area: content;
}
@media screen and (max-width: 1100px) {
  .wp-block-theme-blocks-profile {
    grid-template-areas: "photo name" "photo title" "photo ." "content content";
  }
  .wp-block-theme-blocks-profile .block-photo {
    margin: 0 0 calc(var(--block-margin, 54px) * 0.5) 0;
  }
}

.odometer {
  display: inline-block;
  position: relative;
}
.odometer .digit {
  display: inline-block;
  position: relative;
  text-align: center;
}
.odometer .digit .spacer {
  opacity: 0;
}
.odometer .digit .track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.odometer .digit .digits {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  transition: transform ease-in-out 2s;
}
.odometer .digit .digits i {
  position: relative;
  width: 1em;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  font-style: normal;
}
.odometer .digit.on .digits {
  transform: translateY(-100%);
}

.wp-block-theme-blocks-count-up {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  font-size: var(--block-count-up-font-size, 3rem);
  line-height: 1.25;
  white-space: nowrap;
}
.wp-block-theme-blocks-count-up .block-prefix {
  line-height: 1;
}
.wp-block-theme-blocks-count-up .block-count {
  position: relative;
}
.wp-block-theme-blocks-count-up .block-suffix {
  font-size: 0.7em;
}

.logo-ticker-wrapper .logo-ticker {
  width: 100%;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  background: white;
}
.logo-ticker-wrapper .logo-ticker .logo-track {
  position: relative;
  display: inline-block;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  line-height: 1;
  animation: scroll calc(1 / var(--animation-rate, 1) * var(--animation-duration, 20s)) linear infinite;
}
.logo-ticker-wrapper .logo-ticker .logo-track .logos {
  display: inline-block;
  padding: 0 1px;
  white-space: nowrap;
}
.logo-ticker-wrapper .logo-ticker .logo-track .logo-item {
  position: relative;
  display: inline-block;
  transition: 0.25s opacity ease-in-out;
  margin: 0 5rem;
}
.logo-ticker-wrapper .logo-ticker .logo-track .logo-item img {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 50px;
  max-width: 230px;
  -o-object-fit: contain;
     object-fit: contain;
}
.logo-ticker-wrapper .logo-ticker.pause-on-hover:hover .logo-track {
  animation-play-state: paused;
}
.logo-ticker-wrapper .logo-ticker.appear-on-scroll.appear-init {
  transform: translate(0px, 0px) !important;
}

.logo-ticker:hover .logo-item:hover {
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.wp-block-theme-blocks-hero {
  --page-background-color: #B5C4E1;
  display: grid;
  grid-template-areas: "logo" "content";
  box-sizing: border-box;
  margin-bottom: 0;
  padding: var(--header-height, 0px) var(--gutter-right) calc(var(--block-margin, 54px) * 1) var(--gutter-left);
  background: var(--page-background-color);
}
body.front-page2 .wp-block-theme-blocks-hero {
  margin-top: calc(var(--header-height, 0px) * -1);
}
.wp-block-theme-blocks-hero > .block-logo {
  opacity: 0;
  grid-area: logo;
  --appear-offset: -54px;
  margin: 0;
}
.wp-block-theme-blocks-hero > .block-logo.appeared {
  opacity: 1;
}
.wp-block-theme-blocks-hero > .block-logo svg {
  display: block;
  fill: currentColor;
}
.wp-block-theme-blocks-hero > .block-content {
  grid-area: content;
  padding: calc(var(--block-margin, 54px) * 1) 0 0;
}
.wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child > .block-grid {
  min-height: 40dvh;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child > .block-grid {
    min-height: 45dvh;
  }
}
.wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child .grid-block {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.wp-block-theme-blocks-hero > .block-nav {
  font-weight: 700;
  text-transform: uppercase;
}
.wp-block-theme-blocks-hero > .block-nav a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
.wp-block-theme-blocks-hero > .block-nav a:after {
  content: " ";
  display: block;
  position: absolute;
  margin: 0.2em 0 0;
  top: 100%;
  left: 0;
  width: var(--highlight-width, 0%);
  height: 3px;
  background: currentColor;
  transition: width 0.2s ease;
}
.wp-block-theme-blocks-hero > .block-nav a:hover {
  --highlight-width:100%;
}
.wp-block-theme-blocks-hero > .block-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: calc(var(--block-margin, 54px) * 1);
}
@media screen and (min-width: 768px) {
  .wp-block-theme-blocks-hero > .block-nav {
    position: absolute;
    top: calc(var(--block-margin, 54px) * 1);
    right: var(--gutter-right);
  }
  .wp-block-theme-blocks-hero > .block-toggle {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero > .block-nav {
    position: absolute;
    z-index: 0;
    opacity: 0;
    translate: calc(var(--block-margin, 54px) * -1) 0px;
    transition: 0.3s ease-in-out;
    width: 100%;
    height: calc(100% - var(--border-width) * (var(--separator-offset) - 1) * 2);
    margin: calc(calc(var(--block-margin, 54px) * 1) + var(--border-width) * (var(--separator-offset) - 1)) 0 0;
    grid-column: 2/-1;
    grid-row: 1/2;
    line-height: 1;
    font-size: 1.7894736842rem;
  }
  .wp-block-theme-blocks-hero > .block-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-self: start;
    flex-direction: column;
    align-items: start;
    gap: 0.5em;
  }
  body.menu-on2 .wp-block-theme-blocks-hero > .block-nav {
    z-index: 10;
    opacity: 1;
    translate: 0px 0px;
  }
  .wp-block-theme-blocks-hero > .block-toggle {
    position: absolute;
    right: var(--gutter-right);
    top: calc(var(--block-margin, 54px) * 1);
    height: calc(var(--header-height) - calc(var(--block-margin, 54px) * 1) - var(--border-width) * (var(--separator-offset) - 1));
  }
  .wp-block-theme-blocks-hero > .block-toggle button {
    height: 100%;
    display: flex;
    align-items: start;
    margin: 0 0 calc(var(--border-width) * (var(--separator-offset) - 1)) calc(var(--border-width) * (var(--separator-offset) - 1));
    padding: 0;
    background: none;
    border: 0;
    color: currentColor;
  }
  .wp-block-theme-blocks-hero > .block-toggle .bars {
    --line-width: 2px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: space-evenly;
    width: 40.5px;
  }
  .wp-block-theme-blocks-hero > .block-toggle .bars:before, .wp-block-theme-blocks-hero > .block-toggle .bars:after {
    content: " ";
    display: block;
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: var(--line-width);
    background: currentColor;
    translate: 0 -50%;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
  }
  .wp-block-theme-blocks-hero > .block-toggle .bar {
    display: block;
    height: var(--line-width);
    width: 100%;
    background: currentColor;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
  }
  body.menu-on2 .wp-block-theme-blocks-hero > .block-toggle .bars:before, body.menu-on2 .wp-block-theme-blocks-hero > .block-toggle .bars:after {
    opacity: 1;
  }
  body.menu-on2 .wp-block-theme-blocks-hero > .block-toggle .bars:before {
    transform: rotate(45deg);
  }
  body.menu-on2 .wp-block-theme-blocks-hero > .block-toggle .bars:after {
    transform: rotate(-45deg);
  }
  body.menu-on2 .wp-block-theme-blocks-hero > .block-toggle .bars .bar {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero {
    grid-template-columns: calc(calc(var(--block-margin, 54px) * 3) + var(--border-width) * (var(--separator-offset) - 1)) 1fr;
    grid-template-areas: "bottom-line content" "logo logo";
  }
  .wp-block-theme-blocks-hero > .block-logo {
    margin-top: calc(var(--block-margin, 54px) * 1);
  }
  .wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child .grid-block {
    align-items: end;
  }
  .wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child .grid-block .border.top {
    display: none;
  }
  .wp-block-theme-blocks-hero > .block-content > .wp-block-theme-blocks-grid:first-child .grid-block:last-child {
    display: none;
  }
  .wp-block-theme-blocks-hero .border.trigger-on-scroll.appear-init:before {
    width: 0%;
    height: 0%;
  }
  .wp-block-theme-blocks-hero .border.trigger-on-scroll.appear-init.appeared:before {
    width: 100%;
    height: 100%;
  }
  .wp-block-theme-blocks-hero > .border {
    position: absolute;
  }
  .wp-block-theme-blocks-hero > .border:before {
    content: " ";
    display: block;
    position: absolute;
    transform-origin: 50% 50%;
    background: currentColor;
  }
  .wp-block-theme-blocks-hero > .border.sep {
    grid-area: bottom-line;
    position: absolute;
    top: calc(var(--header-height) * -1 + calc(var(--block-margin, 54px) * 1));
    right: calc(var(--border-width) * (var(--separator-offset) - 1) - var(--border-width) / 2);
    width: var(--border-width);
    height: calc(100% + var(--header-height) - calc(var(--block-margin, 54px) * 1) - var(--border-width) * (var(--separator-offset) - 1));
  }
  .wp-block-theme-blocks-hero > .border.sep:before {
    transition: height 0.5s ease-in-out;
  }
  .wp-block-theme-blocks-hero > .border.right.top {
    grid-area: content;
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--border-width);
  }
  .wp-block-theme-blocks-hero > .border.right.top:before {
    transition: width 0.5s ease-in-out;
  }
  .wp-block-theme-blocks-hero > .border.left {
    grid-area: bottom-line;
    height: var(--border-width);
    width: calc(100% - var(--border-width) * (var(--separator-offset) - 1) * 2);
    right: 0%;
    margin-right: calc(var(--border-width) * (var(--separator-offset) - 1) * 2);
  }
  .wp-block-theme-blocks-hero > .border.left:before {
    right: 0;
    left: auto;
    transition: width 0.5s ease-in-out;
  }
  .wp-block-theme-blocks-hero > .border.left.bottom {
    bottom: calc(var(--border-width) / -2);
  }
}

#hero {
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  left: 0;
  width: 100%;
  margin: 0;
  translate: 0px calc(var(--tick, 0) * -25dvh);
}
#hero.is-scrolled-off {
  visibility: hidden;
  z-index: -10;
}

#hero-cloned {
  visibility: hidden;
  z-index: -10;
}

.wp-block-theme-blocks-carousel {
  position: relative;
}
.grid-block > .wp-block-theme-blocks-carousel:last-child {
  margin-bottom: calc(var(--block-margin, 54px) * -1);
}
.wp-block-theme-blocks-carousel > .layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "slides" "captions" "dots";
}
.wp-block-theme-blocks-carousel .block-captions,
.wp-block-theme-blocks-carousel .block-page {
  font-style: normal;
  font-family: area-normal, sans-serif;
  font-size: clamp(0.842rem, 0.165vw + 0.808rem, 0.947rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0.5rem 0 0 0;
}
.wp-block-theme-blocks-carousel .block-captions {
  grid-area: captions;
  padding: 0 4em 0 0;
}
.wp-block-theme-blocks-carousel .block-page {
  grid-area: captions;
  text-align: right;
}
.wp-block-theme-blocks-carousel .block-next {
  grid-area: slides;
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  padding: calc(var(--block-margin, 54px) * 0.7);
  background: #B5C4E1;
  font-size: clamp(2.105rem, 1.653vw + 1.766rem, 3.158rem);
  line-height: 1;
  cursor: pointer;
}
.wp-block-theme-blocks-carousel .block-next:hover .the-arrow {
  rotate: 45deg;
}
.wp-block-theme-blocks-carousel .block-nav {
  position: absolute;
  grid-area: slides;
  box-sizing: border-box;
  height: 100%;
  z-index: 1;
  padding: calc(var(--block-margin, 54px) * 1);
  color: #E8432A;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wp-block-theme-blocks-carousel .block-nav .icon {
  font-size: 40px;
  transition: transform 0.2s ease;
  transform: translate(0, 0);
}
.wp-block-theme-blocks-carousel .block-nav.prev {
  left: 0;
}
.wp-block-theme-blocks-carousel .block-nav.prev:hover .icon {
  transform: translate(-3px, 0);
}
.wp-block-theme-blocks-carousel .block-nav.next {
  right: 0;
}
.wp-block-theme-blocks-carousel .block-nav.next:hover .icon {
  transform: translate(3px, 0);
}
.wp-block-theme-blocks-carousel .block-slides {
  position: relative;
  z-index: 1;
  grid-area: slides;
  padding: 0;
}
.wp-block-theme-blocks-carousel .slide {
  position: relative;
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide > .layout {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-theme-blocks-carousel .slide > .layout p {
  margin-bottom: 0.5em;
}
.wp-block-theme-blocks-carousel .slide > .layout p.is-style-default {
  color: blue;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block {
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-theme-blocks-carousel .slide > .layout .theme-block + .theme-block {
  margin-top: calc(var(--block-margin, 54px) * 0.5);
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed,
.wp-block-theme-blocks-carousel .slide .wp-block-image {
  width: 100%;
}
.wp-block-theme-blocks-carousel .slide .wp-block-embed figcaption,
.wp-block-theme-blocks-carousel .slide .wp-block-image figcaption {
  display: none;
}
.wp-block-theme-blocks-carousel .block-dots {
  --dots-gap: .75rem;
  --slick-dot-active-color: #E8432A;
  grid-area: dots;
  position: relative;
  display: flex;
  align-self: end;
  justify-content: end;
  z-index: 10;
  width: 100%;
  margin: var(--dots-gap) auto 0;
}
.wp-block-theme-blocks-carousel .block-dots .slick-dots {
  gap: var(--dots-gap);
}
.wp-block-theme-blocks-carousel .block-dots button {
  position: relative;
  width: calc(var(--block-margin, 54px) * 1);
  height: calc(var(--block-margin, 54px) * 0.6);
}
.wp-block-theme-blocks-carousel .block-thumbs {
  --dots-gap: .75rem;
  grid-area: dots;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: var(--dots-gap);
  margin: var(--dots-gap) 0 0;
  padding: 0 0 calc(var(--dots-gap) * 1.5);
}
.wp-block-theme-blocks-carousel .block-thumbs .img {
  position: relative;
}
.wp-block-theme-blocks-carousel .block-thumbs .img:after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 0%;
  height: 3px;
  margin: calc(var(--dots-gap) / 2 - 1.5px) 0 0;
  background: currentColor;
  transition: width 0.2s ease;
}
.wp-block-theme-blocks-carousel .block-thumbs .img.on:after {
  width: 100%;
}
.wp-block-theme-blocks-carousel .block-thumbs img {
  display: block;
  margin: 0;
  width: calc(var(--block-margin, 54px) * 1);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-carousel .block-slides {
    padding-left: 0;
    padding-right: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav {
    display: none !important;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    background: transparent;
    padding: 2em 0.5em;
  }
  .wp-block-theme-blocks-carousel .block-nav.prev {
    left: 0;
  }
  .wp-block-theme-blocks-carousel .block-nav.next {
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */