@charset "UTF-8";
/* print styles */
/*
Fonts
*/
:root {
  --theme-font-serif: "Source Serif 4", serif;
  --theme-font-sans-serif: "Source Sans 3", Helvetica, arial, sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.query-posts.three-across {
  --column-count: 3;
  display: grid;
}
.query-posts.three-across > .hentry:not(.promo-wide) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .query-posts.three-across {
    --column-count:2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    --column-count: 1;
    --gap:1.5rem;
  }
}

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

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

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

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

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

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

html, body {
  --gutter-left: 1rem;
  --gutter-right: 1rem;
  --block-margin: 2rem;
  font-size: 12pt;
  font-family: var(--theme-font-sans-serif);
  font-weight: 400;
  line-height: 1.5;
}

body {
  margin: 1rem;
}

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

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

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

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

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

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

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

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

@media screen and (max-width: 767px) {
  .is-content-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .is-content-centered > * {
    text-align: center;
  }
}
.wp-block-embed {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .main-content.post .wp-block-embed {
    margin-right: calc((var(--side-width) / 2 + var(--side-gap)) * -1);
  }
  .main-content.post.location .wp-block-embed {
    margin-right: 0;
  }
}

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

  }
  > .media-embed,
  > .media-embed > iframe {
      position: absolute;
      z-index:5;
      top:0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
      border-radius:var(--header-border-radius);
  }
  */
}

.wp-block-embed.is-type-video.has-preview-poster {
  /*
  .page-blocks > & {
      max-width:800px;
      margin-left:auto;
      margin-right:auto;
  }
  */
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--block-border-radius);
  background: rgba(46, 45, 41, 0.5);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > .media-embed,
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > .media-embed > iframe {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: var(--block-border-radius);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper:after {
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
  background: url(images/loading-white.png) no-repeat center top;
  width: 30px;
  height: 30px;
  animation: loading 1s steps(19) infinite;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: var(--block-border-radius);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f04b";
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  transform: translate(-50%, -50%);
  background: #b1040e;
  color: #ffffff;
  font-size: 50px;
  border-radius: 50%;
  border: 0px solid currentColor;
  text-align: center;
  transition: transform 0.2s ease;
  transform-origin: 50% 50%;
  text-indent: 5px;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: #b1040e;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  content: " ";
  display: block;
  position: absolute;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:before, .wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper:after {
  z-index: 2;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed img {
  opacity: 0.25;
}
.wp-block-embed.is-type-video.has-preview-poster.media-loaded > .wp-block-embed__wrapper > a.embed:after {
  display: none;
}
.wp-block-embed.is-type-video.has-preview-poster > figcaption {
  margin: 0;
  position: absolute;
  bottom: 1em;
  left: 1em;
  z-index: 1;
  font-size: 0.8em;
  line-height: 1.3;
}
.wp-block-embed.is-type-video.has-preview-poster + .wp-block-button.play {
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-embed.is-type-video.has-preview-poster + .wp-block-button.play:last-child {
  margin-bottom: 0;
}
.wp-block-embed.is-type-video.has-preview-poster + .wp-block-button.play {
  text-align: center;
}

.wp-block-gallery {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
}
.wp-block-gallery:first-child {
  margin-top: 0;
}
.wp-block-gallery:last-child {
  margin-bottom: 0;
}
.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: relative;
  bottom: auto;
  left: auto;
  text-align: right;
  background: none;
  color: inherit;
  padding: 0;
  margin: 1em 0 0;
  max-height: none;
  width: auto;
  margin-left: auto;
}
.wp-block-gallery.has-nested-images.is-style-full-width figure.wp-block-image figcaption {
  padding: 0 1rem;
}
.wp-block-gallery {
  /*
      &,
      &.is-layout-flex {
          display:grid !important;
          figure.wp-block-image {
              width:100% !important;
              img {
                  width:100%;
              }
          }
      }
      --gallery-block--gutter-size: 1rem;

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

      grid-auto-flow: row;

  */
}

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

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

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

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

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


      }
  }
  */
}
.wp-block-gallery.is-style-carousel figure.wp-block-image figcaption {
  display: none;
}
.wp-block-gallery.is-style-carousel figure.wp-block-image {
  /*
  height:0;
  width:auto;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.expand-content {
  display: none;
  margin: 0;
  padding-top: calc(var(--block-margin, 4rem) * 0.25);
  padding-bottom: 1.5em;
}
.expand-content:last-child {
  padding-bottom: 0;
}
.expand-content + .is-style-expandable {
  margin-top: 0.75em;
}
.expand-content > .alignleft:first-child + ol,
.expand-content > .alignleft:first-child + ul,
.expand-content > .alignright:first-child + ol,
.expand-content > .alignright:first-child + ul {
  margin-top: 0;
}
.expand-content + h1:not(.is-style-expandable), .expand-content + h2:not(.is-style-expandable), .expand-content + h3:not(.is-style-expandable), .expand-content + h4:not(.is-style-expandable), .expand-content + h5:not(.is-style-expandable), .expand-content + h6:not(.is-style-expandable) {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#wpadminbar,
#bottom-subscribe,
.block-share,
.block-meta-bottom,
.block-recommended {
  display: none !important;
}

header .block-nav,
header .block-search,
header .block-icons,
header .block-subnav,
header .site-skip-nav,
header button {
  display: none !important;
}
header .block-logo img {
  width: 10rem;
  filter: invert(1);
}
header {
  margin: 0 0 2rem;
  padding: 0 0 2rem;
  border-bottom: 1pt solid #ccc;
}

footer .block-image,
footer .block-links,
footer .block-links-stanford,
footer .block-copyright .sep,
footer .block-copyright a {
  display: none !important;
}
footer strong.h3 {
  display: block;
  margin-bottom: 0;
  font-family: var(--theme-font-serif) ;font-optical-sizing: none;
  font-size: 1.25rem;
  font-weight: 600;
}
footer {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo address" "copyright copyright";
  gap: 1rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  align-items: center;
  margin: 2rem 0 0;
  padding: 2rem 0 0;
  border-top: 1pt solid #ccc;
  line-height: 1.2;
}
footer .block-logo {
  grid-area: logo;
  margin-top: 0.5em;
}
footer .block-logo img {
  width: 10rem;
  filter: invert(1);
}
footer .block-address {
  grid-area: address;
}
footer .block-address p:first-child {
  margin-top: 0;
}
footer .block-copyright {
  grid-area: copyright;
}

#page-title {
  margin-bottom: 2rem;
}

figure.wp-block-image,
figure.wp-block-gallery {
  margin: 2rem 0;
  max-width: 50em;
}
figure.wp-block-image:first-child,
figure.wp-block-gallery:first-child {
  margin-top: 0;
}
figure.wp-block-image:last-child,
figure.wp-block-gallery:last-child {
  margin-bottom: 0;
}
figure.wp-block-image figcaption,
figure.wp-block-gallery figcaption {
  font-size: 0.8em;
  text-align: left;
  margin-left: 0;
  max-width: 35em;
}
figure.wp-block-image img,
figure.wp-block-gallery img {
  max-width: 100%;
  height: auto !important;
  max-height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}

.wp-block-quote {
  margin-left: 0;
  margin-right: 0;
}
.wp-block-quote:before {
  display: none;
}

.wp-block-theme-blocks-post-banner .block-image {
  max-width: 50em;
}
.wp-block-theme-blocks-post-banner .block-image img {
  max-width: 100%;
  height: auto !important;
  max-height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0% 0%;
     object-position: 0% 0%;
}
.wp-block-theme-blocks-post-banner .block-image figcaption {
  font-size: 0.8em;
  max-width: 35em;
}

p.is-style-intro {
  max-width: none !important;
}/*# sourceMappingURL=print.css.map */