@charset "UTF-8";
/*!
Theme Name: SVPG 2024
Theme URI: https://svpgmbc.org/
Author: Joe Tan

DO NOT EDIT style.css DIRECTLY. 

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

/*
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: "Noto Sans", sans-serif;
  font-size: var(--font-base-size, 18px);
  font-weight: 400;
  line-height: 1.3888889;
  color: black;
  text-align: left;
  min-width: 320px;
  -webkit-font-smoothing: antialiased;
}

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

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

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

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

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

.clear {
  clear: both;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

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

.text-sans-serif {
  font-family: "Noto Sans", sans-serif;
}

.text-serif {
  font-family: "Noto Serif", serif;
}

.text-headline {
  font-family: "Roboto Condensed", sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

img,
a > img {
  border: 0;
}

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

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

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

.clickable {
  cursor: pointer;
}

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

th, td {
  border: 0;
}

.toggle {
  cursor: pointer;
}

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

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

#wpadminbar {
  z-index: 1101;
}

.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: 40px;
  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;
  */
}
.slick-arrow .icon {
  transition: all 0.2s ease;
}
.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;
  opacity: 0.1;
}
.slick-arrow.slick-hidden {
  display: none !important;
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li button {
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  text-indent: -10000px;
  overflow: hidden;
  cursor: pointer;
  border-radius: 50%;
}
.slick-dots li.slick-active button {
  background: white;
}

/*
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: 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: 2rem;
  --column-gap: var(--gap);
  --row-gap: var(--gap);
  --column-count: 1;
  --hentry-width: calc((100% / var(--column-count)) - ((var(--gap) * (var(--column-count) - 1)) / var(--column-count)));
  row-gap: var(--row-gap, var(--gap));
  -moz-column-gap: var(--column-gap, var(--gap));
       column-gap: var(--column-gap, var(--gap));
  justify-content: start;
  flex-wrap: wrap;
  grid-auto-flow: row;
  grid-template-columns: repeat(var(--column-count, 3), 1fr);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.query-posts.grid {
  --row-gap: var(--gap);
}
.query-posts:last-child {
  margin-bottom: 0;
}
.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.empty.static {
  order: 10000 !important;
}
.query-posts .hentry:not(.wide) {
  width: auto;
}

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

.query-posts.two-across {
  --gap: 4.75rem;
  --row-gap: 5.25rem;
  --column-count: 2;
  display: grid;
}
@media screen and (max-width: 1400px) {
  .query-posts.two-across {
    --gap: 4rem;
    --row-gap: 4.5rem ;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.two-across {
    --column-count: 1;
    --gap: 3.5rem;
    --row-gap: 4rem ;
  }
}

.query-posts.three-across {
  --gap: 1rem;
  --column-count: 3;
  display: grid;
}
.query-posts.three-across > .hentry:not(.promo-wide) {
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .query-posts.three-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.three-across {
    --column-count: 1;
  }
}
.query-posts.four-across {
  --gap: 2rem;
  --column-count: 4;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.four-across {
    --column-count: 2;
  }
}
@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.five-across {
  --gap: 1rem;
  --column-count: 5;
  display: grid;
}
@media screen and (max-width: 1200px) {
  .query-posts.five-across {
    --column-count: 3;
  }
}
@media screen and (max-width: 1024px) {
  .query-posts.five-across {
    --column-count: 2;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.five-across {
    --column-count: 1;
  }
}

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

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

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

.query-posts.has-grid-lines {
  --gap:calc(var(--block-margin, 4rem) * 0.5);
  --column-gap: 0px;
  --row-gap: 0px;
  --border-color: #707070;
}
.query-posts.has-grid-lines .hentry {
  padding: var(--gap);
  border: 1px solid var(--border-color);
  border-top-width: 0;
  border-left-width: 0;
}
.query-posts.has-grid-lines .hentry .title {
  min-height: calc(var(--block-margin, 4rem) * 1.5);
  margin-bottom: 0;
}
@media screen and (min-width: 1201px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(3) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry:nth-child(3n-2) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1),
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry:nth-child(2n-1) {
    border-left-width: 1px;
  }
}
@media screen and (max-width: 767px) {
  .query-posts.has-grid-lines.three-across .hentry:nth-child(1) {
    border-top-width: 1px;
  }
  .query-posts.has-grid-lines.three-across .hentry {
    border-left-width: 1px;
  }
}

#header {
  --padding: calc(var(--block-margin, 4rem) * 0.5);
  --background-color: rgba(255, 255, 255, 0);
  --box-shadow-color: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  margin: var(--wp-admin--admin-bar--height, 0px) 0 0;
  padding: var(--padding) var(--gutter-right) var(--padding) var(--gutter-right);
  box-sizing: border-box;
  background: var(--background-color);
  transition: 0.4s ease-in-out;
  box-shadow: 0 2px 1em var(--box-shadow-color);
  display: grid;
  align-items: center;
  grid-template-areas: "logo . nav . toggle";
  grid-template-columns: auto 2fr auto 1fr auto;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
}
#header:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8));
}
body:not(.scrolled) #header {
  margin-top: calc(var(--wp-admin--admin-bar--height, 0px) + var(--alert-height, 0px));
}
body.scrolled #header {
  --alert-height:0px;
  --padding: calc(var(--block-margin, 4rem) * 0.15);
  --background-color: white;
  --box-shadow-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1060px) {
  #header {
    --padding: calc(var(--block-margin, 4rem) * 0.15);
  }
}
#header ul, #header li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#header .block-mask {
  display: none;
}
#header .block-logo {
  position: relative;
  z-index: 1;
  grid-area: logo;
}
#header .block-logo a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo cn" "logo en";
  grid-template-rows: 1fr auto;
  align-items: center;
  row-gap: 0.2em;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
  text-decoration: none;
}
#header .block-logo a:before {
  grid-area: logo;
  content: " ";
  display: block;
  width: 3em;
  height: 3em;
  background: url(images/logo.svg) no-repeat 50% 50%;
  background-size: contain;
}
#header .block-logo a .lang {
  display: block;
  transition: 0.25s ease-in-out;
}
#header .block-logo a .lang.cn {
  grid-area: cn;
  align-self: end;
}
#header .block-logo a .lang.en {
  grid-area: en;
  align-self: start;
}
#header .block-logo a .lang span {
  white-space: nowrap;
}
#header .block-nav {
  grid-area: nav;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "Roboto Condensed", sans-serif;
  text-shadow: 0 0 5px white;
}
#header .block-nav a {
  text-decoration: none;
}
#header .block-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}
#header .block-nav > ul > li > a {
  position: relative;
  display: block;
}
#header .block-nav > ul > li > a:after {
  content: " ";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  height: 0.3em;
  width: var(--indicator-width, 0%);
  transform: translate(-50%, 0);
  background: #FCBF49;
  transition: 0.2s ease;
}
#header .block-nav > ul > li > a:hover {
  --indicator-width: 100%;
}
#header .block-nav > ul > li.current-menu-item, #header .block-nav > ul > li.current-menu-ancestor {
  --indicator-width: 100%;
}
#header .block-toggle {
  grid-area: toggle;
  position: relative;
  z-index: 10;
  height: 100%;
}
#header .block-toggle .toggle.menu {
  --width: 35px;
  --height: 20px;
  --bar-thickness: 3px;
  --color: black;
  display: flex;
  position: relative;
  width: var(--width);
  height: 100%;
  align-items: center;
  color: var(--color);
  cursor: pointer;
  transition: 0.2s ease;
}
#header .block-toggle .toggle.menu .icon {
  display: block;
  position: relative;
  width: var(--width);
  height: var(--height);
  line-height: var(--height);
  text-align: center;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transform: rotate(0deg);
  opacity: 1;
  margin-left: 0;
  border: var(--bar-thickness) solid var(--color);
  border-width: var(--bar-thickness) 0;
  box-sizing: border-box;
}
#header .block-toggle .toggle.menu .icon:before {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: var(--bar-thickness);
  background: var(--color);
  transform: translate(0, -50%);
}
#header .block-toggle .toggle.menu:before, #header .block-toggle .toggle.menu:after {
  content: " ";
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 80%;
  height: var(--bar-thickness);
  margin: calc(var(--bar-thickness) / -2) 0 0;
  transform-origin: 50% 50%;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  transform: rotate(0deg);
  opacity: 0;
  background: var(--color);
}
body.menu-on #header .block-toggle .toggle.menu:before, body.menu-on #header .block-toggle .toggle.menu:after {
  opacity: 1;
}
body.menu-on #header .block-toggle .toggle.menu:before {
  transform: rotate(-45deg);
}
body.menu-on #header .block-toggle .toggle.menu:after {
  transform: rotate(-135deg);
}
body.menu-on #header .block-toggle .toggle.menu .icon {
  opacity: 0;
  transform: rotate(-45deg);
}
#header .block-menu {
  --gap:.5rem;
  --menu-width: 320px;
  --menu-horizontal-padding: calc(var(--block-margin, 4rem) * 0.5);
  box-sizing: border-box;
  display: block;
  position: absolute;
  background: white;
  top: 0;
  right: 0;
  width: 0;
  overflow: hidden;
  height: calc(100dvh - var(--wp-admin--admin-bar--height, 0px) - var(--alert-height, 0px));
  padding: calc(var(--header-height, 110px) + 2em) 0 calc(var(--block-margin, 4rem) * 0.5) 0;
  transition: width 0.25s ease-in-out, padding 0.25s ease-in-out, height 0.4s ease-in-out;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  #header .block-menu {
    --menu-horizontal-padding: 24px;
  }
}
@media screen and (max-width: 440px) {
  #header .block-menu {
    --menu-width:100vw;
  }
}
#header .block-menu > ul {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  width: var(--menu-width);
}
#header .block-menu > ul > li {
  width: 100%;
  margin: 0.43rem 0;
  transition: all 0.2s ease;
}
#header .block-menu > ul > li:first-child {
  margin-top: 0;
}
#header .block-menu > ul > li:last-child {
  margin-bottom: 0;
}
#header .block-menu > ul > li > a {
  display: block;
}
#header .block-menu > ul > li > .tooltip {
  font-size: 12px;
  text-transform: none;
}
#header .block-menu > ul > li.has-bottom-border {
  margin-bottom: 0;
}
#header .block-menu > ul > li.has-bottom-border:after {
  content: " ";
  display: block;
  margin: 1.8rem 0 1rem;
  width: 100%;
  height: 1px;
  background: currentColor;
}
#header .block-menu > ul > li.is-bottom-link {
  margin-top: auto;
  font-size: 1rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  #header .block-menu > ul > li.is-bottom-link.subscribe {
    justify-content: center;
    margin: calc(var(--block-margin, 4rem) * 0.5) auto;
    font-family: "Noto Sans", sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    font-size: 0.94rem;
  }
  #header .block-menu > ul > li.is-bottom-link.subscribe a {
    padding: 1.2rem 0.88rem;
    color: black;
    background: rgba(255, 255, 255, 0.3);
    border: 1.5px solid black;
    text-align: center;
    width: 100%;
  }
  #header .block-menu > ul > li.is-bottom-link.subscribe a:hover {
    background-color: black;
    color: white;
    border-color: black;
  }
}
#header .block-mask {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
}
body.menu-on #header .block-menu {
  width: var(--menu-width);
  padding-left: var(--menu-horizontal-padding);
  padding-right: var(--menu-horizontal-padding);
}
@media screen and (max-width: 1024px) {
  #header .block-nav {
    grid-area: nav;
  }
  #header .block-nav > ul {
    gap: 1em;
  }
}
@media screen and (max-width: 700px) {
  #header {
    grid-template-areas: "logo toggle";
    grid-template-columns: 1fr auto;
  }
  #header .block-nav {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  #header .block-logo {
    font-size: 16px;
  }
}

#bottom {
  margin: calc(var(--block-margin, 4rem) * 1) 0 0 0;
  padding: calc(var(--block-margin, 4rem) * 0.5) var(--gutter-right) calc(var(--block-margin, 4rem) * 0.5) var(--gutter-left);
  text-align: center;
  border-top: 1px solid #000;
  background: #f4f4f4;
}
#bottom .block-main {
  max-width: 800px;
  margin: 0 auto;
}
#bottom .fields {
  display: flex;
  gap: 1em;
  align-items: center;
}
#bottom input[type=email] {
  display: block;
  padding: 10px;
  font-size: 17px;
  width: 100%;
  box-sizing: border-box;
  background: white;
  border: 1px solid currentColor;
}
#bottom .message.error {
  color: #D62828;
}
#bottom button {
  display: block;
  margin: 0 0;
  font-size: 1rem;
}

#footer {
  --heading-font-size: clamp(1rem, 0.438vw + 0.905rem, 1.333rem);
  position: relative;
  background: #003049;
  color: white;
  padding: calc(var(--block-margin, 4rem) * 1) var(--gutter-right) calc(var(--block-margin, 4rem) * 1) var(--gutter-left);
  font-size: clamp(0.778rem, 0.146vw + 0.746rem, 0.889rem);
  display: grid;
  grid-template-areas: "logo logo sunday" "nav social content " "copy copy copy";
  gap: 2rem;
}
@media screen and (max-width: 750px) {
  #footer {
    grid-template-areas: "logo logo" "sunday sunday" "nav nav" "social social" "content content" "copy copy";
  }
}
#footer ul, #footer li {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer h4 {
  font-size: var(--heading-font-size);
  margin: 0 0 1em;
  text-transform: none;
}
#footer .block-sunday {
  grid-area: sunday;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: start;
  background: rgba(255, 255, 255, 0.2);
  padding: calc(var(--block-margin, 4rem) * 0.25);
  border-radius: 3px;
  box-shadow: 5px 5px 0px black;
}
#footer .block-sunday .block-other-services {
  margin-top: 1em;
}
#footer .block-subscribe {
  grid-area: subscribe;
}
#footer .block-logo {
  grid-area: logo;
  font-size: clamp(1rem, 2.19vw + 0.526rem, 2.667rem);
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
}
#footer .block-logo a {
  text-decoration: none;
}
#footer .block-logo .lang {
  display: block;
}
#footer .block-social {
  grid-area: social;
}
#footer .block-social ul {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}
#footer .block-social ul li > a {
  position: relative;
  padding: 0 0 0 40px;
}
#footer .block-social ul li > a .icon {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  text-align: center;
  font-size: 24px;
  text-decoration: none;
}
#footer .block-nav {
  grid-area: nav;
}
#footer .block-nav > ul {
  display: flex;
  align-items: start;
  -moz-column-gap: calc(var(--block-margin, 4rem) * 1);
       column-gap: calc(var(--block-margin, 4rem) * 1);
}
#footer .block-nav > ul > li > a,
#footer .block-nav > ul > li .a {
  display: block;
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  font-size: var(--heading-font-size);
}
#footer .block-nav > ul > li > ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
#footer .block-content {
  grid-area: content;
}
#footer .block-copyright {
  grid-area: copy;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: calc(var(--block-margin, 4rem) * 1) 0 0;
  margin: calc(var(--block-margin, 4rem) * 1) 0 0;
}
#footer .block-copyright > ul {
  display: inline-flex;
}
#footer .block-copyright > ul:before {
  content: " | ";
  display: inline-block;
  margin: 0 0.5em;
}
#footer .block-copyright > ul > li:after {
  display: inline-block;
  content: ", ";
  margin: 0 0.25em 0 0;
}
#footer .block-copyright > ul > li:last-child:after {
  content: ".";
  margin: 0;
}

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

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

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

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

.main-content {
  position: relative;
  z-index: 10;
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5);
  padding: 0;
  background: var(--background-color, none);
  color: var(--color, inherit);
}
body.has-transparent-header .main-content {
  margin-top: calc(var(--header-height, 90px) * -1);
}
body.is-embed .main-content {
  --gutter-left:0;
  --gutter-right:0;
  margin-bottom: 0;
}
.main-content > .layout {
  position: relative;
  display: grid;
  grid-template-columns: [start] var(--gutter-left) minmax(0, 1fr) var(--gutter-right) [end];
  grid-template-areas: "title title title" ". blocks ." ". posts ." ". pager ." ". bottom .";
  padding: 0;
}
.main-content .block-hero {
  grid-area: hero;
  margin-bottom: calc(var(--block-margin, 4rem) * 2.5);
}
@media screen and (max-width: 1024px) {
  .main-content .block-hero {
    margin-bottom: calc(var(--block-margin, 4rem) * 2);
  }
}
.main-content .navigation.pagination {
  grid-area: pager;
  margin: calc(var(--block-margin, 4rem) * 0.5) 0 calc(var(--block-margin, 4rem) * 1);
  text-align: center;
  font-size: 2rem;
  line-height: 1;
}
.main-content .navigation.pagination .page-numbers {
  display: inline-block;
  padding: 0.5em;
  border-radius: 3px;
  text-decoration: none;
}
.main-content .navigation.pagination .page-numbers:hover {
  background-color: #f4f4f4;
}
.main-content .navigation.pagination .page-numbers.current {
  background: #F77F00;
  color: white;
}
.main-content .page-blocks {
  position: relative;
  grid-area: blocks;
  min-height: 50vh;
}
.main-content .block-featured-image {
  grid-area: featured;
  position: relative;
  z-index: 1;
  margin: 0 0 calc(var(--block-margin, 4rem) * 0.5) 0;
  /*
  @media screen and (min-width:1920px) {
      width:1920px;
      margin-right:0;
      left:50%;
      margin-left: 1920px * -.5;
  }
  */
}
body.section-landing .main-content .block-featured-image {
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
}
.main-content .block-featured-image > .image {
  display: block;
  position: relative;
  height: 860px;
}
.main-content .block-featured-image > .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
@media screen and (min-width: 1920px) {
  .main-content .block-featured-image > .image {
    height: 44.7916666667vw;
  }
}
@media screen and (max-width: 1400px) {
  .main-content .block-featured-image > .image {
    height: 61.4285714286vw;
  }
}
.main-content .block-page-title {
  position: relative;
  grid-area: title;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "back title next";
  padding: 1rem var(--gutter-right) 0 var(--gutter-left);
  text-align: center;
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
.main-content .block-page-title:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0em;
  width: 100%;
  height: 4px;
  background: currentColor;
}
body.is-embed .main-content .block-page-title {
  display: none;
}
body:not(.top-level-page) .main-content .block-page-title {
  font-size: clamp(1.778rem, 3.358vw + 1.05rem, 4.333rem);
}
.main-content .block-page-title .back {
  grid-area: back;
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.main-content .block-page-title .back:before {
  position: absolute;
  right: 100%;
  margin: 0 0.4em 0 0;
  font-family: "Font Awesome 6 Free";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  text-transform: none;
  content: "\f104";
  transition: 0.2s ease;
  translate: 0 0;
}
.main-content .block-page-title .back:hover:before {
  translate: -3px 0;
}
.main-content .block-page-title h1 {
  grid-area: title;
  position: relative;
  margin: 0;
  padding: 0;
  translate: 0 0.13em;
  z-index: 1;
  line-height: 1;
}
html[lang=zh-hant] .main-content .block-page-title h1 {
  line-height: 1.15;
}
.main-content .block-page-title a {
  text-decoration: none;
}
.main-content .block-page-title a:hover {
  text-decoration: underline;
}
.main-content .block-page-title .featured-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% + var(--header-height, 0px));
}
.main-content .block-page-title .featured-image:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.8));
}
.main-content .block-page-title .featured-image img {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
  opacity: 0.4;
  filter: blur(0.25rem);
}
.main-content .post-filters {
  grid-area: blocks;
  margin: 0 0 calc(var(--block-margin, 4rem) * 1);
}
.main-content .query-posts {
  grid-area: posts;
  position: relative;
  z-index: 1;
}
.main-content .block-form {
  grid-area: posts;
  margin: calc(var(--block-margin, 4rem) * 2.5) 0;
  border-top: 1px solid currentColor;
  padding-top: calc(var(--block-margin, 4rem) * 0.5);
  color: black;
}
.main-content .block-bottom {
  grid-area: bottom;
}
.main-content .page-blocks + .block-bottom {
  margin-top: calc(var(--block-margin, 4rem) * 2.5);
}
@media screen and (max-width: 767px) {
  .main-content .page-blocks + .block-bottom {
    margin-top: calc(var(--block-margin, 4rem) * 1);
  }
}
.main-content .block-related {
  grid-area: related;
  margin-bottom: calc(var(--block-margin, 4rem) * 2.5);
}
.main-content .block-archive {
  grid-area: posts;
  --link-text-decoration-color-initial: transparent;
  --link-text-decoration-color-hover: currentColor;
  max-width: 900px;
  margin: 0 auto;
}
.main-content .block-archive ul, .main-content .block-archive li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-content .block-archive.year > ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.main-content .block-archive.year .year {
  font-size: 1.5em;
}
.main-content .block-archive.speaker > ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}
.main-content .block-archive ul + .title {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

.main-content.page .block-featured-image {
  grid-area: hero;
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}

.theme-block.sermon-meta .title {
  margin: 0 0 0.5rem;
}
.theme-block.sermon-meta .meta {
  font-weight: 500;
}

.theme-block.oembed {
  position: relative;
  padding: 0 0 56.25%;
}
.theme-block.oembed > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

input[type=submit],
input[type=button],
button {
  position: relative;
  display: inline-block;
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 3px;
  text-decoration: none;
  background-color: #FCBF49;
  text-transform: uppercase;
  color: black;
  border: 0;
  letter-spacing: normal;
  padding: 0.6rem 2em;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  font-size: clamp(1rem, 0.438vw + 0.905rem, 1.333rem);
  text-align: center;
  transition: all 0.2s linear;
}
input[type=submit].aligncenter, input[type=submit].center,
input[type=button].aligncenter,
input[type=button].center,
button.aligncenter,
button.center {
  display: block;
  max-width: 250px;
  margin: 0 auto 1em;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover {
  text-decoration: none;
  background: black;
  color: white;
  border-color: black;
}
input[type=submit].loading:after,
input[type=button].loading:after,
button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
input[type=submit].done,
input[type=button].done,
button.done {
  cursor: default;
  color: #555;
  border-color: #555;
}
input[type=submit].done:hover,
input[type=button].done:hover,
button.done:hover {
  color: #555;
  background: none;
}
@media screen and (max-width: 767px) {
  input[type=submit],
  input[type=button],
  button {
    padding: 0.8em 2em;
  }
}

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

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

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

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

.hentry {
  position: relative;
}

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

.hentry.section {
  grid-column: 1/-1;
  margin: 0 auto;
}
.hentry:not(.section) + .hentry.section {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

.hentry.type-sermon {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas: "date" "title" "meta";
  row-gap: 0.5rem;
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 0.5rem;
}
.hentry.type-sermon .date {
  grid-area: date;
  display: inline-block;
  padding: 0.5em;
  margin: 0 auto 0 0;
  line-height: 1;
  background: black;
  color: white;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}
.hentry.type-sermon .title {
  grid-area: title;
  margin: 0;
}
.hentry.type-sermon .meta {
  grid-area: meta;
  font-size: 0.8em;
}

.wp-block-theme-blocks-hero {
  --block-height: calc(50vh - var(--wp-admin--admin-bar--height, 0px) - var(--header-height) - var(--page-title-height, 0px));
  --border-width: 2px;
  position: relative;
  height: var(--block-height);
  margin-top: 0;
  margin-bottom: calc(var(--block-margin, 4rem) * 2.5);
  background: black;
  color: white;
}
.page-blocks > .wp-block-theme-blocks-hero:first-child {
  margin-top: calc(var(--header-height, 0px) * -1);
}
.wp-block-theme-blocks-hero .wp-block-buttons {
  color: inherit;
}
.wp-block-theme-blocks-hero .wp-block-buttons .wp-block-button > .wp-block-button__link {
  padding-left: clamp(0.667rem, 1.168vw + 0.414rem, 1.556rem);
  padding-right: clamp(0.667rem, 1.168vw + 0.414rem, 1.556rem);
  font-size: clamp(0.833rem, 0.146vw + 0.802rem, 0.944rem);
}
.wp-block-theme-blocks-hero .slick-dots {
  position: absolute;
  bottom: calc(var(--block-margin, 4rem) * 1);
  z-index: 2;
  left: 0;
  width: 100%;
}
.wp-block-theme-blocks-hero .block-slides {
  position: relative;
  background: black;
}
.wp-block-theme-blocks-hero .block-nav {
  position: absolute;
  z-index: 11;
  top: 0;
  height: 100%;
  width: calc(var(--block-height) / 2);
  box-sizing: border-box;
  padding: calc(var(--block-margin, 4rem) * 1);
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
}
.wp-block-theme-blocks-hero .block-nav:before {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  width: var(--circle-size, var(--block-height));
  height: var(--circle-size, var(--block-height));
  box-sizing: border-box;
  border-radius: 50%;
  background: transparent;
  translate: 0 -50%;
}
.wp-block-theme-blocks-hero .block-nav.prev {
  left: 0;
  justify-content: start;
}
.wp-block-theme-blocks-hero .block-nav.prev:before {
  right: 100%;
  transform: translate(40%, 0);
}
.wp-block-theme-blocks-hero .block-nav.next {
  right: 0;
  justify-content: end;
}
.wp-block-theme-blocks-hero .block-nav.next:before {
  left: 100%;
  transform: translate(-40%, 0);
}
.wp-block-theme-blocks-hero .block-nav .label {
  transition: all 0.2s ease;
  -webkit-text-decoration: underline solid currentColor;
          text-decoration: underline solid currentColor;
  text-decoration-color: transparent;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
  font-size: 80px;
}
.wp-block-theme-blocks-hero .block-nav:hover .label {
  color: #F77F00;
}
@media screen and (max-width: 1280px) {
  .wp-block-theme-blocks-hero .block-nav {
    padding: calc(var(--block-margin, 4rem) * 0.5);
    width: calc(var(--block-height) * 0.2);
    --circle-size: calc(var(--block-height) * 1.45);
  }
  .wp-block-theme-blocks-hero .block-nav.prev:before {
    right: 0;
    transform: none;
  }
  .wp-block-theme-blocks-hero .block-nav.next:before {
    left: 0;
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .wp-block-theme-blocks-hero .block-nav .label {
    width: 1.5rem;
    height: 2rem;
    background: no-repeat;
    background-size: contain;
    text-indent: -1000px;
    overflow: hidden;
  }
  .wp-block-theme-blocks-hero .block-nav.prev .label {
    margin-left: 1em;
    background-image: url(images/arrow-left-white.svg);
    background-position: 0% 50%;
  }
  .wp-block-theme-blocks-hero .block-nav.next .label {
    margin-right: 1em;
    background-image: url(images/arrow-right-white.svg);
    background-position: 100% 50%;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero {
    --block-height: 55vh;
    --border-width:1px;
    margin-bottom: calc(var(--block-margin, 4rem) * 1.5);
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-hero .block-nav {
    padding: calc(var(--block-margin, 4rem) * 0.25);
  }
}

.wp-block-theme-blocks-hero-slide {
  position: relative;
  height: var(--block-height);
  overflow: hidden;
}
.wp-block-theme-blocks-hero-slide > .block-images {
  display: flex;
  align-items: stretch;
  height: var(--block-height);
}
.wp-block-theme-blocks-hero-slide > .block-images .image {
  position: relative;
  display: block;
  margin: 0;
  height: 100%;
  flex-grow: 1;
  flex-basis: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-theme-blocks-hero-slide > .block-images .image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
.wp-block-theme-blocks-hero-slide > .block-content {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  max-width: 50%;
  width: 35rem;
  transform: translate(-50%, -50%);
  text-align: center;
}
.wp-block-theme-blocks-hero-slide > .block-content h1, .wp-block-theme-blocks-hero-slide > .block-content h2, .wp-block-theme-blocks-hero-slide > .block-content h3 {
  color: inherit;
}
.wp-block-theme-blocks-hero-slide > .block-content h1 {
  font-size: clamp(2rem, 3.358vw + 1.273rem, 4.556rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-hero-slide > .block-content h1 {
    line-height: 1;
  }
}
.wp-block-theme-blocks-hero-slide video {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}
.wp-block-theme-blocks-hero-slide.is-style-single-image > .block-images .image.right {
  display: none;
}

.wp-block-theme-blocks-sunday-service {
  margin: calc(var(--block-margin, 4rem) * 1) auto;
  max-width: 960px;
  display: grid;
  align-items: center;
  grid-template-areas: "title services" "midweek midweek";
  grid-template-columns: auto 1fr;
  gap: 1rem;
}
.wp-block-theme-blocks-sunday-service:first-child {
  margin-top: 0;
}
.wp-block-theme-blocks-sunday-service:last-child {
  margin-bottom: 0;
}
.wp-block-theme-blocks-sunday-service ul, .wp-block-theme-blocks-sunday-service li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-theme-blocks-sunday-service h2 {
  grid-area: title;
  margin: 0;
}
.wp-block-theme-blocks-sunday-service ul.sunday-services {
  grid-area: services;
  font-size: clamp(1rem, 0.438vw + 0.905rem, 1.333rem);
  padding: 1rem;
  border-radius: 3px;
  background: rgba(0, 48, 73, 0.2);
  border: 2px solid black;
  box-shadow: 5px 5px 0px black;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}
.wp-block-theme-blocks-sunday-service ul.sunday-services li .time,
.wp-block-theme-blocks-sunday-service ul.sunday-services li .desc {
  display: block;
  white-space: nowrap;
}
.wp-block-theme-blocks-sunday-service .block-other-services {
  grid-area: midweek;
  text-align: center;
  font-size: 1.2em;
}
.wp-block-theme-blocks-sunday-service .block-other-services ul .time,
.wp-block-theme-blocks-sunday-service .block-other-services ul .desc {
  display: block;
}
.wp-block-theme-blocks-sunday-service .block-other-services ul .time {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-sunday-service {
    grid-template-areas: "title" "services" "midweek";
    grid-template-columns: auto;
  }
  .wp-block-theme-blocks-sunday-service h2 {
    text-align: center;
  }
}

.wp-block-theme-blocks-sunday-service-times {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wp-block-theme-blocks-sunday-service-times .sunday {
  flex-basis: calc(25% - 1rem);
  border: 1px solid currentColor;
  padding: 1rem;
  box-sizing: border-box;
}
.wp-block-theme-blocks-sunday-service-times h4 {
  display: inline-block;
  margin: 0rem 0 1rem -1rem;
  padding: 0.5rem;
  background: #000;
  color: #fff;
  font-size: 1rem;
}
.wp-block-theme-blocks-sunday-service-times h3.month {
  position: relative;
  width: 100%;
  border-bottom: 1px solid currentColor;
}
.wp-block-theme-blocks-sunday-service-times .sunday + h3.month {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-theme-blocks-sunday-service-times ul.sunday-services {
  margin: 0 0 0 1.5em;
  padding: 0;
  font-size: 0.77rem;
}

.wp-block-theme-blocks-calendar {
  --fc-small-font-size: clamp(0.722rem, 0.365vw + 0.643rem, 1rem);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto 1fr;
  grid-template-areas: "calendars" "embed";
}
.wp-block-theme-blocks-calendar .block-embed {
  grid-area: embed;
  position: relative;
  transition: filter 0.4s ease-in-out;
}
.wp-block-theme-blocks-calendar .block-embed .fc-col-header-cell-cushion {
  text-decoration: none;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day {
  height: 120px;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day-number {
  margin: 5px;
  text-decoration: none;
  background: #EAE2B7;
  color: black;
  font-size: clamp(0.667rem, 0.219vw + 0.619rem, 0.833rem);
  font-weight: 700;
  width: 4ex;
  text-align: center;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "dot title" ". time";
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-daygrid-event-dot {
  grid-area: dot;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-event-time {
  grid-area: time;
  font-style: italic;
  font-size: 0.8em;
  line-height: 1;
}
.wp-block-theme-blocks-calendar .block-embed .fc-daygrid-dot-event .fc-event-title {
  grid-area: title;
}
@media screen and (max-width: 400px) {
  .wp-block-theme-blocks-calendar .block-embed {
    --fc-daygrid-event-dot-width: 6px;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-daygrid-day-number {
    margin: 0;
    background: none;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-daygrid-event-dot {
    margin: 0 2px 0 0;
  }
  .wp-block-theme-blocks-calendar .block-embed .fc-event-title {
    font-weight: 500;
  }
}
.wp-block-theme-blocks-calendar.is-style-tab-content {
  display: none;
}
.wp-block-theme-blocks-calendar.is-style-tab-content.on {
  display: block;
}
.wp-block-theme-blocks-calendar .block-calendars {
  grid-area: calendars;
  margin: 0 0 1em;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
  row-gap: 0.1em;
}
.wp-block-theme-blocks-calendar .block-calendars li.show-all {
  --color: #FCBF49;
}
.wp-block-theme-blocks-calendar .block-calendars li {
  display: inline-flex;
  gap: 0.35em;
  border-radius: 3px;
  background: white;
  padding: 0.5em 0.7em;
  transition: 0.2s ease;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}
.wp-block-theme-blocks-calendar .block-calendars li .icon {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid var(--color, currentColor);
  background: white;
}
.wp-block-theme-blocks-calendar .block-calendars li .icon:before {
  position: absolute;
  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: "\f00c";
  display: none;
  font-size: 25px;
  line-height: 1;
  bottom: 0;
  left: 50%;
  translate: -7px 0;
}
.wp-block-theme-blocks-calendar .block-calendars li:hover {
  background-color: #f4f4f4;
}
.wp-block-theme-blocks-calendar .block-calendars li.on {
  background-color: var(--color, #FCBF49);
}
.wp-block-theme-blocks-calendar .block-calendars li.on .icon:before {
  display: block;
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-calendar .block-calendars {
    font-size: 0.7em;
    gap: 0.25em;
  }
}
.wp-block-theme-blocks-calendar.hide-calendars-switcher .block-calendars {
  display: none;
}
.wp-block-theme-blocks-calendar .block-overlay {
  display: none;
  position: fixed;
  z-index: 1;
  top: 50%;
  left: 10%;
  width: 80%;
  padding: calc(var(--block-margin, 4rem) * 1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  translate: 0 -50%;
  grid-template-rows: 1fr auto auto auto auto 1fr;
  grid-template-areas: "." "title" "date" "location" "description" ".";
}
.wp-block-theme-blocks-calendar .block-overlay .icon {
  position: absolute;
  z-index: 1000;
  top: 1em;
  right: 1em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
.wp-block-theme-blocks-calendar .block-overlay .title {
  grid-area: title;
  margin: 0 0 0.5rem;
}
.wp-block-theme-blocks-calendar .block-overlay .date {
  grid-area: date;
}
.wp-block-theme-blocks-calendar .block-overlay .location {
  grid-area: location;
}
.wp-block-theme-blocks-calendar .block-overlay .description {
  grid-area: description;
  margin: 1em 0 0;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-calendar .block-overlay {
    padding: calc(var(--block-margin, 4rem) * 0.5);
    left: 0;
    width: 100%;
  }
  .wp-block-theme-blocks-calendar .block-overlay .icon {
    top: 0em;
    right: 0em;
  }
}
.wp-block-theme-blocks-calendar.overlay-on .block-embed {
  filter: blur(0.25rem);
}
.wp-block-theme-blocks-calendar.overlay-on .block-overlay {
  display: grid;
}
@media screen and (max-width: 767px) {
  .wp-block-theme-blocks-calendar .fc-header-toolbar button {
    padding: 0.2em 0.4em;
  }
  .wp-block-theme-blocks-calendar .fc-today-button + .fc-button-group {
    margin-left: 0.25em;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-theme-blocks-calendar .fc-header-toolbar .fc-toolbar-title {
    font-size: 1em;
  }
}

.wp-block-theme-blocks-profile {
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas: "photo name" "photo content";
  row-gap: 0.5em;
  -moz-column-gap: 2em;
       column-gap: 2em;
  align-items: start;
}
.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;
  padding: 0 0 150%;
  background: rgba(0, 0, 0, 0.2);
}
.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: 50% 25%;
     object-position: 50% 25%;
  border-radius: 3px;
  box-shadow: 5px 5px 0px var(--shadow-color, #FCBF49);
}
.wp-block-theme-blocks-profile .block-title {
  grid-area: name;
  color: #003049;
  margin: 0 0 0.25rem;
}
.wp-block-theme-blocks-profile .block-content {
  grid-area: content;
}
.wp-block-theme-blocks-profile .block-content hr {
  margin: 1em 0;
}
.wp-block-theme-blocks-profile .block-content .wp-block-separator {
  margin-top: 1em;
}
@media screen and (max-width: 940px) {
  .wp-block-theme-blocks-profile {
    grid-template-rows: auto;
    grid-template-columns: auto;
    grid-template-areas: "photo" "name" "content";
  }
  .wp-block-theme-blocks-profile .block-photo {
    padding-bottom: 120%;
  }
}
.wp-block-theme-blocks-profile.is-style-condensed {
  --shadow-color: #F77F00;
  width: 260px;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-template-areas: "photo" "name" "content";
  font-size: 0.8em;
}
.wp-block-theme-blocks-profile.is-style-condensed .block-photo {
  padding-bottom: 140%;
  margin-bottom: 1em;
}
.wp-block-theme-blocks-profile.is-style-condensed .block-title {
  font-size: 1.5em;
}

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

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

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

.wp-block-buttons.is-style-tabs {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-buttons.is-style-tabs > .wp-block-button {
  translate: 0 1px;
}
.wp-block-buttons.is-style-tabs > .wp-block-button > .wp-block-button__link {
  background: white;
  border: 0;
}
.wp-block-buttons.is-style-tabs > .wp-block-button > .wp-block-button__link:hover {
  background: #f4f4f4;
}
.wp-block-buttons.is-style-tabs > .wp-block-button.on > .wp-block-button__link, .wp-block-buttons.is-style-tabs > .wp-block-button.active > .wp-block-button__link {
  background: #FCBF49;
}

.wp-block-button {
  position: relative;
  display: inline-block;
  line-height: 1;
}
.wp-block-button > .wp-block-button__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 0;
  opacity: 1;
  text-transform: none;
  transition: 0.2s ease;
  -webkit-font-smoothing: antialiased;
  border-radius: 3px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
  line-height: 1;
  font-size: clamp(1rem, 0.438vw + 0.905rem, 1.333rem);
  text-align: center;
  text-decoration: none;
}
.wp-block-button > .wp-block-button__link .icon.is-prepended-icon {
  margin: 0 0.5em 0 0;
}
.wp-block-button > .wp-block-button__link:visited {
  color: inherit;
}
.wp-block-button.has-icon > .wp-block-button__link:after, .wp-block-button.has-no-icon > .wp-block-button__link:after {
  display: none;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link {
  --shift: .7em;
  --padding-x: 2rem;
  --padding-y: 0.5rem;
  padding: var(--padding-y) var(--padding-x);
  color: var(--color, inherit);
  background: rgba(252, 191, 73, 0.8);
  border: 0;
  text-align: center;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link .label {
  position: relative;
  z-index: 1;
}
.wp-block-button:not(.is-style-text) > .wp-block-button__link:hover {
  background-color: #FCBF49;
}
.wp-block-button:not(.is-style-text).larger > .wp-block-button__link {
  --padding-x: 3rem;
  --padding-y: 1rem;
}
.wp-block-button.is-style-outline > .wp-block-button__link {
  background-color: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.wp-block-button.is-style-outline > .wp-block-button__link:hover {
  color: white;
  background-color: black;
}
.wp-block-button.is-style-text {
  --icon-size: 1.25em;
}
.wp-block-button.is-style-text > .wp-block-button__link {
  padding: 0.5em 0;
  background: none;
  color: inherit;
  border: 0;
  font-weight: 500;
  letter-spacing: normal;
}
.wp-block-button.is-style-text > .wp-block-button__link > .label {
  transition: 0.2s ease;
  -webkit-text-decoration: underline solid transparent;
          text-decoration: underline solid transparent;
  text-decoration-color: var(--button-text-decoration-color-initial, transparent);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.05em;
}
.wp-block-button.is-style-text > .wp-block-button__link > .label:hover {
  text-decoration-color: var(--button-text-decoration-color-hover, currentColor);
}
.wp-block-button.is-style-text > .wp-block-button__link: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: "\f061";
  margin: 0 0 0 0.5em;
  transition: 0.2s ease;
  translate: var(--translate-arrow, 0px 0px);
}
.wp-block-button.is-style-text > .wp-block-button__link:hover {
  --button-text-decoration-color-hover: currentColor;
  --translate-arrow: 3px 0px;
}
.wp-block-button.no-arrow > .wp-block-button__link .icon.css-arrow {
  display: none;
}
.wp-block-button.loading:after {
  position: absolute;
  right: -40px;
  top: 50%;
  margin: -15px 0 0 0;
  display: block;
  background: url(images/loading.png) no-repeat center top;
  width: 30px;
  height: 30px;
  content: " ";
  animation: loading 1s steps(19) infinite;
}
.wp-block-button.done {
  opacity: 0.5;
}
.wp-block-button.done > .wp-block-button__link {
  --grayed: rgba(100,100,100,.5);
  cursor: default;
  color: var(--grayed);
  border-color: var(--grayed);
  background-color: transparent;
}
.wp-block-button.done > .wp-block-button__link:hover {
  border-color: var(--grayed);
  color: var(--grayed);
  background-color: transparent;
}

.theme-block.wp-block-theme-blocks-cards + .wp-block-buttons {
  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);
  gap: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-columns:first-child {
  margin-top: 0;
}
.wp-block-columns:last-child {
  margin-bottom: 0;
}
.wp-block-columns .wp-block-column.is-layout-flow > * {
  margin-block-start: 0;
  margin-block-end: 1rem;
}

.wp-block-embed {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 2.5) 0;
  padding: 0;
}
.wp-block-embed:first-child {
  margin-top: 0;
}
.wp-block-embed:last-child {
  margin-top: 0;
}
.wp-block-heading.is-style-hero + .wp-block-embed {
  margin-top: calc(var(--block-margin, 4rem) * -1.5);
}

.wp-block-embed.is-type-video {
  background: #000;
}
.page-blocks > .wp-block-embed.is-type-video {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper {
  position: relative;
  padding: 0 0 calc(1 / var(--aspect-ratio, 1.77) * 100%);
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--header-border-radius);
  background: rgba(0, 0, 0, 0.5);
}
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > iframe,
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > .media-embed,
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > .media-embed > iframe {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.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 {
  --icon-size: clamp(2.222rem, 1.46vw + 1.906rem, 3.333rem);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed img {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: var(--header-border-radius);
  opacity: 1;
  transition: opacity 0.2s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:before, .wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  display: block;
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.2s ease;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:before {
  z-index: 3;
  width: var(--icon-size);
  height: var(--icon-size);
  background: rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  border: 1px solid white;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:after {
  z-index: 4;
  margin-left: 0.45%;
  display: block;
  height: calc(var(--icon-size) * 0.4);
  width: calc(var(--icon-size) * 0.316);
  background: white;
  -webkit-clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover {
  --icon-size:clamp(2.5rem, 1.825vw + 2.105rem, 3.889rem);
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:after {
  background-color: black;
}
.wp-block-embed.is-type-video.has-preview-poster > .wp-block-embed__wrapper > a.embed:hover:before {
  background-color: white;
  border-color: black;
}
.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-group {
  position: relative;
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-group:first-child {
  margin-top: 0;
}
.wp-block-group:last-child {
  margin-bottom: 0;
}
.wp-block-separator + .wp-block-group {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

.wp-block-group.has-background {
  position: relative;
  padding: calc(var(--block-margin, 4rem) * 0.5);
}

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

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

.wp-block-group.is-style-heading-content {
  position: relative;
  --column-gap: calc(var(--block-margin, 4rem) * 0.5);
}
.wp-block-group.is-style-heading-content:first-child {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}
@media screen and (min-width: 768px) {
  .wp-block-group.is-style-heading-content {
    padding-left: calc(50% + var(--column-gap) / 2);
  }
  .wp-block-group.is-style-heading-content > h1, .wp-block-group.is-style-heading-content h2, .wp-block-group.is-style-heading-content h3, .wp-block-group.is-style-heading-content .pull-left {
    position: absolute;
    left: 0;
    width: calc(50% - calc(var(--block-margin, 4rem) * 1));
    margin-top: 0;
  }
  .wp-block-group.is-style-heading-content > .wp-block-separator {
    margin-left: calc(-100% - var(--column-gap));
    width: auto;
  }
}

.wp-block-group.ways-to-give {
  text-align: center;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--block-margin, 4rem) * 1.5);
  row-gap: calc(var(--block-margin, 4rem) * 0.25);
  -moz-column-gap: calc(var(--block-margin, 4rem) * 0.25);
       column-gap: calc(var(--block-margin, 4rem) * 0.25);
}
.wp-block-group.ways-to-give > .wp-block-group {
  background: #f4f4f4;
  padding: calc(var(--block-margin, 4rem) * 0.25);
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 700px) {
  .wp-block-group.ways-to-give {
    grid-template-columns: 100%;
  }
}

.wp-block-group.profiles {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.is-layout-flex {
  gap: calc(var(--block-margin, 4rem) * 1);
  align-items: start;
}

.wp-block-group.is-layout-grid {
  gap: calc(var(--block-margin, 4rem) * 1);
}
@media screen and (max-width: 767px) {
  .wp-block-group.is-layout-grid {
    grid-template-columns: auto !important;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading {
  position: relative;
  margin: 0;
  margin-block-end: 1rem;
  padding: 0;
  clear: both;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}
h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.heading em {
  text-transform: none;
}
h1.inline,
h2.inline,
h3.inline,
h4.inline,
h5.inline,
h6.inline,
.heading.inline {
  display: inline;
  margin-right: 1em;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.heading a {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
.heading a:hover {
  text-decoration: none;
  color: #888;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
.heading:first-child {
  margin-top: 0;
}
h1:not(.is-style-section-heading):last-child,
h2:not(.is-style-section-heading):last-child,
h3:not(.is-style-section-heading):last-child,
h4:not(.is-style-section-heading):last-child,
h5:not(.is-style-section-heading):last-child,
h6:not(.is-style-section-heading):last-child,
.heading:not(.is-style-section-heading):last-child {
  margin-bottom: 0;
}
h1.has-text-align-center,
h2.has-text-align-center,
h3.has-text-align-center,
h4.has-text-align-center,
h5.has-text-align-center,
h6.has-text-align-center,
.heading.has-text-align-center {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
h1 + .theme-block.is-style-content-width, h1 + .theme-block.is-style-full-width, h1 + .theme-block.wp-block-image,
h2 + .theme-block.is-style-content-width,
h2 + .theme-block.is-style-full-width,
h2 + .theme-block.wp-block-image,
h3 + .theme-block.is-style-content-width,
h3 + .theme-block.is-style-full-width,
h3 + .theme-block.wp-block-image,
h4 + .theme-block.is-style-content-width,
h4 + .theme-block.is-style-full-width,
h4 + .theme-block.wp-block-image,
h5 + .theme-block.is-style-content-width,
h5 + .theme-block.is-style-full-width,
h5 + .theme-block.wp-block-image,
h6 + .theme-block.is-style-content-width,
h6 + .theme-block.is-style-full-width,
h6 + .theme-block.wp-block-image,
.heading + .theme-block.is-style-content-width,
.heading + .theme-block.is-style-full-width,
.heading + .theme-block.wp-block-image {
  margin-block-start: 1.75em;
}
h1 .icon,
h2 .icon,
h3 .icon,
h4 .icon,
h5 .icon,
h6 .icon,
.heading .icon {
  display: inline-block;
  color: #EAE2B7;
  padding: 0.5rem 0;
}
h1.has-subheading:before,
h2.has-subheading:before,
h3.has-subheading:before,
h4.has-subheading:before,
h5.has-subheading:before,
h6.has-subheading:before,
.heading.has-subheading:before {
  content: var(--subheading);
  position: relative;
  display: block;
  margin: 0 0 calc(var(--block-margin, 4rem) * 2.5);
  text-transform: none;
  font-size: clamp(1.2rem, 0.394vw + 1.115rem, 1.5rem);
  font-weight: 700;
  letter-spacing: normal;
}
@media screen and (max-width: 767px) {
  h1.has-subheading:before,
  h2.has-subheading:before,
  h3.has-subheading:before,
  h4.has-subheading:before,
  h5.has-subheading:before,
  h6.has-subheading:before,
  .heading.has-subheading:before {
    margin: 0 0 calc(var(--block-margin, 4rem) * 1);
  }
}
h1.has-subheading.is-style-section-heading:before,
h2.has-subheading.is-style-section-heading:before,
h3.has-subheading.is-style-section-heading:before,
h4.has-subheading.is-style-section-heading:before,
h5.has-subheading.is-style-section-heading:before,
h6.has-subheading.is-style-section-heading:before,
.heading.has-subheading.is-style-section-heading:before {
  left: 50%;
  translate: -50% 0;
}

.h1,
h1 {
  font-size: var(--font-size, clamp(3.333rem, 4.307vw + 2.4rem, 6.611rem));
  line-height: 0.8;
  letter-spacing: -0.04em;
}

.h2,
h2 {
  font-size: clamp(1.944rem, 3.139vw + 1.264rem, 4.333rem);
  line-height: 0.8;
  letter-spacing: -0.05em;
  margin-bottom: 1.75rem;
}

.h3,
h3 {
  font-size: clamp(1.167rem, 2.117vw + 0.708rem, 2.778rem);
}

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

.h5,
h5 {
  margin-bottom: 0.5rem;
  font-size: clamp(0.889rem, 0.146vw + 0.857rem, 1rem);
}

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

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

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

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

.is-style-expandable {
  --highlight-color: #FCBF49;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.is-style-expandable.has-text-align-center {
  justify-content: center;
}
.is-style-expandable:after {
  position: relative;
  display: inline-block;
  top: 0em;
  width: 1.25em;
  height: 1.25em;
  line-height: 1.25em;
  font-size: 0.6em;
  text-align: center;
  margin: 0 0 0 0.5em;
  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: "\f105";
  color: white;
  background: black;
  text-decoration: none;
  /*@at-root {
      h3.is-style-expandable:after {
          top: .17em;
      }

      h4.is-style-expandable:after {
          top: .2em;
      }

      h5.is-style-expandable:after {
          top: .2em;
      }

      h6.is-style-expandable:after {
          top: .2em;
      }
  }
  */
}
.is-style-expandable:focus {
  outline: none;
}
.is-style-expandable.opened:after {
  transform: rotate(90deg);
}
@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:after {
    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:after {
    margin-top: 2rem;
  }
}

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

h1.is-style-arrow > a,
h2.is-style-arrow > a,
h3.is-style-arrow > a,
h4.is-style-arrow > a,
h5.is-style-arrow > a,
h6.is-style-arrow > a,
.heading.is-style-arrow > a {
  color: #D62828;
}
h1.is-style-arrow .icon,
h2.is-style-arrow .icon,
h3.is-style-arrow .icon,
h4.is-style-arrow .icon,
h5.is-style-arrow .icon,
h6.is-style-arrow .icon,
.heading.is-style-arrow .icon {
  display: inline-block;
  margin: 0 0 0 0.5rem;
  width: 0.8em;
  height: 0.7em;
  stroke: currentColor;
  stroke-width: 8;
  transition: all 0.2s ease;
}
h1.is-style-arrow a:hover .icon,
h2.is-style-arrow a:hover .icon,
h3.is-style-arrow a:hover .icon,
h4.is-style-arrow a:hover .icon,
h5.is-style-arrow a:hover .icon,
h6.is-style-arrow a:hover .icon,
.heading.is-style-arrow a:hover .icon {
  transform: translate(5px, 0);
}

h1.is-style-hero,
h2.is-style-hero,
h3.is-style-hero {
  font-size: clamp(1.667rem, 9.854vw + -0.468rem, 9.167rem);
  max-width: 10em;
  margin: 0 auto calc(var(--block-margin, 4rem) * 2.5);
  line-height: 0.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  h1.is-style-hero,
  h2.is-style-hero,
  h3.is-style-hero {
    line-height: 1;
    margin: 0 auto calc(var(--block-margin, 4rem) * 2);
  }
}

h1.is-style-section-heading,
h2.is-style-section-heading,
h3.is-style-section-heading {
  padding: calc(var(--block-margin, 4rem) * 0.5) 0;
  margin-top: calc(var(--block-margin, 4rem) * 2.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 767px) {
  h1.is-style-section-heading,
  h2.is-style-section-heading,
  h3.is-style-section-heading {
    text-align: center;
  }
}
body.front-page h1.is-style-section-heading.is-front-page-larger,
body.front-page h2.is-style-section-heading.is-front-page-larger,
body.front-page h3.is-style-section-heading.is-front-page-larger {
  font-size: clamp(1.944rem, 6.131vw + 0.616rem, 6.611rem);
}
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:not(.has-text-align-left, .has-text-align-right),
h2.is-style-section-heading:not(.has-text-align-left, .has-text-align-right),
h3.is-style-section-heading:not(.has-text-align-left, .has-text-align-right) {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  h1.is-style-section-heading,
  h2.is-style-section-heading,
  h3.is-style-section-heading {
    padding: calc(var(--block-margin, 4rem) * 0.25) 0;
  }
}

h5.is-style-section-heading,
.h5.is-style-section-heading {
  margin-top: calc(var(--block-margin, 4rem) * 3);
  padding-bottom: 0.5em;
  margin-bottom: calc(var(--block-margin, 4rem) * 0.5);
  border-bottom: 1px solid currentColor;
}
@media screen and (max-width: 1024px) {
  h5.is-style-section-heading,
  .h5.is-style-section-heading {
    margin-top: calc(var(--block-margin, 4rem) * 2.5);
  }
}
h5.is-style-section-heading:first-child, h5.is-style-section-heading + .theme-block,
.h5.is-style-section-heading:first-child,
.h5.is-style-section-heading + .theme-block {
  margin-top: 0;
}

.is-style-guide {
  position: relative;
  margin-left: calc(var(--gutter-left) * -1);
  margin-right: calc(var(--gutter-right) * -1);
  padding: calc(var(--block-margin, 4rem) * 0.5) var(--gutter-right) calc(var(--block-margin, 4rem) * 0.5) var(--gutter-left);
  background: #f4f4f4;
  font-size: 2rem;
}

.wp-block-image {
  --block-margin-multiplier: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0px;
}
.wp-block-image.is-resized img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
.wp-block-image.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-image .image {
  position: relative;
  display: block;
}
.wp-block-image img {
  display: block;
  margin: 0 auto;
  width: 100%;
  border-radius: inherit;
}
.wp-block-image figcaption {
  display: block;
  margin: calc(var(--block-margin, 4rem) * 0.25) 0;
  padding: 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
  font-size: 0.8888888889rem;
  line-height: 1.1;
  color: black;
}
.wp-block-image.has-aspect-ratio .image {
  padding: 0 0 calc(1 / var(--aspect-ratio, 1) * 100%);
}
.wp-block-image.has-aspect-ratio img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: var(--focal-point, 50% 50%);
     object-position: var(--focal-point, 50% 50%);
}
@media screen and (max-width: 600px) {
  .wp-block-image.alignleft, .wp-block-image.alignright {
    margin-left: auto;
    margin-right: auto;
    float: none;
  }
}
.wp-block-image.hide-caption figcaption {
  display: none;
}

ul.is-style-formatted, ol.is-style-formatted {
  padding: 0;
  margin: 1em 0;
  list-style: none;
  line-height: 1.5;
}
ul.is-style-formatted:first-child, ol.is-style-formatted:first-child {
  margin-top: 0;
}
ul.is-style-formatted:last-child, ol.is-style-formatted:last-child {
  margin-bottom: 0;
}
ul.is-style-formatted > li, ol.is-style-formatted > li {
  position: relative;
  padding: 1.5em 0 1.5em 3em;
  border-bottom: 1px solid currentColor;
}
ul.is-style-formatted > li:first-child, ol.is-style-formatted > li:first-child {
  border-top: 1px solid currentColor;
}
ul.is-style-formatted > li.last, ol.is-style-formatted > li.last {
  padding: 1.6em 0 1.5em 3em;
}
ul.is-style-formatted > li:before, ol.is-style-formatted > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 32%;
  left: 0.9em;
  width: 1.7em;
  height: 1.7em;
  line-height: 1.7;
  background: black;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 0.8em;
}
@media screen and (max-width: 767px) {
  ul.is-style-formatted > li:before, ol.is-style-formatted > li:before {
    font-size: 1.1em;
    left: 0.4em;
  }
}
h1 + ul.is-style-formatted, h2 + ul.is-style-formatted, h3 + ul.is-style-formatted, h4 + ul.is-style-formatted, h5 + ul.is-style-formatted, h6 + ul.is-style-formatted, h1 + ol.is-style-formatted, h2 + ol.is-style-formatted, h3 + ol.is-style-formatted, h4 + ol.is-style-formatted, h5 + ol.is-style-formatted, h6 + ol.is-style-formatted {
  margin-top: 0;
}

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

p {
  font-size: clamp(0.833rem, 0.219vw + 0.786rem, 1rem);
  margin: 0 0 1em 0;
  margin-block-start: 0;
  margin-block-end: 1.2em;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  p {
    line-height: 1.33;
  }
}
p:last-child {
  margin-bottom: 0;
}
.page-blocks > p {
  max-width: 1024px;
}

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

.is-layout-constrained p.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
}
.page-blocks > p.has-text-align-center {
  max-width: 50em;
  margin-left: auto;
  margin-right: auto;
}

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

p.is-style-intro,
p.is-style-intro-narrow {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.556rem, 0.438vw + 1.461rem, 1.889rem);
  font-family: "Noto Serif", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}
p.is-style-intro:first-child,
p.is-style-intro-narrow:first-child {
  margin-top: calc(var(--block-margin, 4rem) * 1);
  margin-bottom: calc(var(--block-margin, 4rem) * 1);
}
p.is-style-intro.has-text-align-center,
p.is-style-intro-narrow.has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--block-max-width, 48rem);
}

p.is-style-intro-narrow {
  --block-max-width: 33rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--block-max-width);
  text-align: center;
}

.wp-block-quote {
  position: relative;
  margin: calc(var(--block-margin, 4rem) * 1) 0;
  padding: 0;
  border: 0;
  font-size: clamp(1.511rem, 0.496vw + 1.404rem, 1.889rem);
  font-family: "Noto Serif", serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: black;
}
.wp-block-quote:first-child {
  margin-top: 0;
}
.wp-block-quote:last-child {
  margin-bottom: 0;
}
.wp-block-quote.has-text-align-center {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.wp-block-quote.has-text-align-left {
  max-width: 1024px;
}
.wp-block-quote.has-text-align-right {
  max-width: 1024px;
  margin-left: auto;
}
.wp-block-quote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.wp-block-quote p + p {
  margin-top: 0.5rem;
}
.wp-block-quote cite {
  display: block;
  padding-top: 0.6em;
  margin: 0;
  margin-block-start: 0;
  font-size: 0.8rem;
  font-style: normal;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: normal;
  font-family: "Noto Sans", sans-serif;
}
.wp-block-quote cite:before {
  content: "–";
  margin: 0 0.25em 0 0;
}

.wp-block-separator {
  margin: calc(var(--block-margin, 4rem) * 1.5) auto calc(var(--block-margin, 4rem) * 0.5);
  width: 100%;
  border: 1px solid black;
  border-width: 1px 0 0;
  height: 0;
}
.wp-block-separator.has-small-margin {
  margin: calc(var(--block-margin, 4rem) * 0.75) auto;
}
.wp-block-separator:first-child {
  margin-top: 0;
}
.wp-block-separator.is-style-section-end {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
  margin-bottom: calc(var(--block-margin, 4rem) * 1.5);
}

h1 + .wp-block-separator, h2 + .wp-block-separator, h3 + .wp-block-separator, h4 + .wp-block-separator, h5 + .wp-block-separator, h6 + .wp-block-separator {
  margin-top: calc(var(--block-margin, 4rem) * 0.5);
}

p:not(.is-style-intro) + .wp-block-separator {
  margin-top: calc(var(--block-margin, 4rem) * 1);
}

.wp-block-table.is-style-pricing table tr td, .wp-block-table.is-style-pricing table tr th {
  border: 0;
  vertical-align: top;
}
.wp-block-table.is-style-pricing table tr td {
  padding: 0 0 0.2em;
}
.wp-block-table.is-style-pricing table tr td:first-child {
  color: black;
  min-width: 10.5em;
  white-space: nowrap;
  padding-right: calc(var(--block-margin, 4rem) * 0.5);
  text-transform: uppercase;
}
.wp-block-table.is-style-pricing table tr td:last-child {
  width: 90%;
}

.wp-block-table:not(.is-style-pricing) table {
  font-size: clamp(0.833rem, 0.219vw + 0.786rem, 1rem);
}

.wp-block-media-text {
  margin-block-start: calc(var(--block-margin, 4rem) * 1);
  margin-block-end: calc(var(--block-margin, 4rem) * 1);
}
.wp-block-media-text .wp-block-media-text__media img {
  border-radius: 3px;
  box-shadow: 0.5em 0.5em 0px #FCBF49;
}
@media screen and (max-width: 600px) {
  .wp-block-media-text {
    gap: calc(var(--block-margin, 4rem) * 0.5);
  }
}

.wp-block-gallery.is-style-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 0;
  box-shadow: 0.5em 0.5em 0px #FCBF49;
}
.wp-block-gallery.is-style-grid > .wp-block-image {
  position: relative;
  width: auto;
  padding: 0 0 70%;
}
.wp-block-gallery.is-style-grid > .wp-block-image .image, .wp-block-gallery.is-style-grid > .wp-block-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */