/**
 * Button Reset
 *
 */
/**
 * Size
 *
 */
/**
 * Block Cover
 * Creates a block that covers the full width/height of parent div. Typically used on a :before pseudo element
 */
/**
 * Placeholder Color
 *
 */
/**
 * Clearfix
 *
 */
/**
 * Font Sizes
 *
**/
.embed-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
}

.embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Base grid wrapper */
.grid {
  display: grid;
  gap: var(--wp--custom--layout--block-gap);
}

/* Grid column count modifiers */
.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}

.cols {
  display: flex;
  gap: var(--wp--custom--layout--block-gap);
  flex-wrap: wrap;
}
.cols .col {
  flex: 1 1 100%;
}
@media (min-width: 782px) {
  .cols .col {
    flex: 1;
  }
}
@media (min-width: 782px) {
  .cols .col-50 {
    flex: 0 0 50%;
  }
  .cols .col-75 {
    flex: 0 0 75%;
  }
  .cols .col-25 {
    flex: 0 0 25%;
  }
  .cols .col-offset {
    margin-left: auto;
  }
}
.cols.cols-auto {
  justify-content: space-between;
}
.cols.cols-auto .col {
  flex: 0 0 auto;
  width: auto;
}

.card {
  border-radius: var(--wp--custom--layout--corners);
  background-color: var(--wp--preset--color--light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--wp--preset--color--black);
}
.card .card-header {
  padding: 0;
}
.card .card-header .card-image {
  width: 100%;
}
.card .card-title,
.card .card-title a {
  text-decoration: none;
  color: var(--wp--preset--color--foreground);
}
.card .card-body {
  padding: var(--wp--custom--layout--padding);
  flex: 1 1 auto;
}
.card .card-footer {
  padding: 0 var(--wp--custom--layout--padding) var(--wp--custom--layout--padding);
}

.has-light-background-color .card {
  background-color: var(--wp--preset--color--white);
}

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
	========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}
*/
/* Grouping content
	========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
	========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
	========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
	========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
	========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
	========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

figure {
  margin: 0;
}

/* Box Sizing
--------------------------------------------- */
html, body {
  overflow-x: hidden;
}

html,
input[type=search] {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
}

/* Adjust theme.json variables responsively
--------------------------------------------- */
@media (max-width: 782px) {
  :root {
    --wp--custom--layout--content: 90vw;
    --wp--custom--layout--padding: 2rem;
  }
}
@media (min-width: 1600px) {
  :root {
    --wp--custom--layout--content: 1360px;
  }
}

/* Wrap
--------------------------------------------- */
.wrap {
  max-width: calc(var(--wp--custom--layout--page) + 2 * var(--wp--custom--layout--padding));
  margin: 0 auto;
  padding-left: var(--wp--custom--layout--padding);
  padding-right: var(--wp--custom--layout--padding);
}

/*
.site-inner {
	padding: var(--wp--custom--layout--block-gap-large) 0;
}*/
.site-inner {
  padding-left: var(--wp--custom--layout--padding);
  padding-right: var(--wp--custom--layout--padding);
}

body.full-width-content {
  --wp--custom--layout--page: var(--wp--custom--layout--wide);
}

/* Screen Reader Text
--------------------------------------------- */
.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
  clip: auto !important;
  height: auto;
  width: auto;
  display: block;
  font-size: 1em;
  font-weight: bold;
  padding: 15px 23px 14px;
  color: #333;
  background: #fff;
  z-index: 100000; /* Above WP toolbar. */
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
}

/* Sidebar Layouts
---------------------------------------------  */
@media (max-width: 991px) {
  .sidebar-primary {
    display: none;
  }
}
@media (min-width: 992px) {
  .content-sidebar .content-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr) var(--wp--custom--layout--sidebar);
    grid-column-gap: var(--wp--style--block-gap);
    max-width: var(--wp--custom--layout--wide);
    margin-left: auto;
    margin-right: auto;
  }
  .content-sidebar .site-main {
    float: none;
    width: 100%;
    max-width: var(--wp--custom--layout--content);
  }
  .content-sidebar .sidebar-primary {
    float: none;
    width: 100%;
    padding-top: var(--wp--style--block-gap);
    padding-left: var(--wp--style--block-gap);
  }
}
/* Entry Content
--------------------------------------------- */
h1.front {
  display: none;
}

.block-container > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--wp--custom--layout--page);
}
.block-container > *.alignwide {
  max-width: var(--wp--custom--layout--wide);
}
.block-container > *.alignfull {
  margin-left: calc(-1 * var(--wp--custom--layout--padding));
  margin-right: calc(-1 * var(--wp--custom--layout--padding));
  max-width: 100vw;
}
@media (max-width: 781px) {
  .block-container > *.alignwide {
    margin-left: calc(-1 * var(--wp--custom--layout--padding));
    margin-right: calc(-1 * var(--wp--custom--layout--padding));
    max-width: 100vw;
  }
}

/*
.full-width-content .entry-content {

	&:first-child > .alignfull.has-background:first-child {
		margin-top: calc( -1 * var(--wp--custom--layout--block-gap-large) );
	}

	&:last-child > .alignfull.has-background:last-child {
		margin-bottom: calc( -1 * var(--wp--custom--layout--block-gap-large) );
	}
}*/
/* Hero
--------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--wp--preset--color--accent-2);
  overflow: hidden;
  min-height: 300px;
  max-height: 600px;
  padding: 0 var(--wp--custom--layout--padding);
}
@media (min-width: 782px) {
  .hero-section {
    height: auto;
    aspect-ratio: 16/8;
    width: 100vw;
  }
}
@media (min-width: 1200px) {
  .hero-section:not(.jumbo) {
    max-height: 430px;
  }
}
@media (min-width: 2000px) {
  .hero-section:not(.jumbo) {
    max-height: 500px;
  }
}
.hero-section.jumbo {
  min-height: 500px;
}
@media (min-height: 700px) {
  .hero-section.jumbo {
    height: calc(100vh - 150px);
    max-height: 900px;
  }
}
.hero-section .hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  pointer-events: none;
  max-width: none !important;
}
.hero-section .svg-overlay {
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  width: 105vw;
  height: auto;
  color: var(--wp--preset--color--primary);
  display: flex;
  align-items: flex-end;
  max-width: none;
  z-index: 1;
}
@media (min-width: 782px) {
  .hero-section .svg-overlay {
    width: clamp(600px, 65vw, 900px);
  }
}
@media (min-width: 1200px) {
  .hero-section .svg-overlay {
    width: clamp(550px, 60vw, 900px);
  }
}
@media (min-width: 1600px) {
  .hero-section .svg-overlay {
    width: clamp(550px, 65vw, 900px);
  }
}
.hero-section .svg-overlay svg {
  height: auto;
  width: 100%;
  display: block;
  max-height: 145%;
}
.hero-section .svg-overlay.secondary {
  color: var(--wp--preset--color--secondary);
}
.hero-section .svg-overlay.tertiary {
  color: var(--wp--preset--color--tertiary);
}
.hero-section .hero-content {
  position: absolute;
  bottom: 3rem;
  left: var(--wp--custom--layout--padding);
  right: var(--wp--custom--layout--padding);
  margin: auto;
  color: white;
  max-width: var(--wp--custom--layout--page) !important;
  z-index: 2;
}
@media (min-width: 992px) {
  .hero-section .hero-content {
    bottom: 4rem;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1800px) {
  .hero-section .hero-content {
    max-width: 92vw !important;
  }
}
.hero-section .hero-content.tertiary .hero-content-inner > *, .hero-section .hero-content.accent-2 .hero-content-inner > * {
  color: white;
}
.hero-section .hero-content-inner {
  max-width: 65%;
}
@media (min-width: 782px) {
  .hero-section .hero-content-inner {
    max-width: 42vw;
  }
}
@media (min-width: 992px) {
  .hero-section .hero-content-inner {
    max-width: 38vw;
  }
}
@media (min-width: 1600px) {
  .hero-section .hero-content-inner {
    max-width: 575px;
  }
}
@media (min-width: 1800px) {
  .hero-section .hero-content-inner {
    max-width: 600px;
  }
}
.hero-section .hero-content-inner h1 {
  font-size: 6vw;
  margin: 0;
  line-height: 1;
}
@media (min-width: 782px) {
  .hero-section .hero-content-inner h1 {
    font-size: clamp(38px, 3.8vw, 56px);
  }
}
.hero-section.jumbo:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 35%;
  height: 100%;
  background: url("../images/shape2.svg") no-repeat top right;
  background-size: contain;
  animation: fadeInDown 0.5s ease-out forwards;
}

.post-type-post .hero-section .svg-overlay {
  left: clamp(30px, 25vw, 500px);
}
.post-type-post .hero-section .svg-overlay:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: clamp(30px, 25vw, 500px);
  height: 100%;
  z-index: 1;
  background: var(--wp--preset--color--primary);
}
.post-type-post .hero-section .hero-content-inner {
  max-width: 100%;
}
@media (min-width: 782px) {
  .post-type-post .hero-section .hero-content-inner {
    max-width: 85%;
  }
}
@media (min-width: 992px) {
  .post-type-post .hero-section .hero-content-inner {
    max-width: 62%;
  }
}
@media (min-width: 1800px) {
  .post-type-post .hero-section .hero-content-inner {
    max-width: 980px;
  }
}

.singular:not(.home) .hero-section svg {
  animation: none !important;
  opacity: 1;
  transform: none;
}

.hero-label {
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  color: var(--wp--preset--color--foreground);
  margin-bottom: 1rem;
  text-decoration: none;
}
@media (max-width: 781px) {
  .hero-label {
    font-size: 14px;
  }
}
.hero-label:hover {
  color: var(--wp--custom--color--link-hover);
}

body.content-sidebar .hero-section {
  width: auto;
}
body.content-sidebar .hero-section .hero-content {
  left: var(--wp--custom--layout--padding);
  right: var(--wp--custom--layout--padding);
}

.editor-styles-wrapper .wp-block-acf-hero .hero-section {
  width: 100%;
  max-width: 100%;
}
.editor-styles-wrapper .wp-block-acf-hero .hero-content {
  left: var(--wp--custom--layout--padding);
  right: var(--wp--custom--layout--padding);
}
.editor-styles-wrapper .wp-block-acf-hero.has-background {
  padding: 0 !important;
}

/* Spacing
--------------------------------------------- */
@media (max-width: 992px) {
  :root {
    --wp--custom--layout--block-gap-large: 3rem;
    --wp--custom--layout--block-padding: 2rem;
  }
}

.wp-block-columns.has-background,
.wp-block-column.has-background,
.wp-block-group.has-background,
.wp-block-cover,
.wp-block-pullquote.has-background {
  padding: var(--wp--custom--layout--block-padding);
}
.wp-block-columns.has-background.alignfull,
.wp-block-column.has-background.alignfull,
.wp-block-group.has-background.alignfull,
.wp-block-cover.alignfull,
.wp-block-pullquote.has-background.alignfull {
  padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--padding);
}

.alignwide:not(.is-layout-constrained) > *,
.alignfull:not(.is-layout-constrained) > * {
  max-width: var(--wp--custom--layout--wide);
  margin-left: auto;
  margin-right: auto;
}

div[class^=wp-block] {
  margin-block-end: var(--wp--custom--layout--block-gap);
}

.block-container > .alignfull.has-background, .block-container > .alignfull.wp-block-cover, .block-container > .custom-block, .block-container > .wp-block-separator, .block-container > .wp-block-group, .block-container > .wp-block-columns.has-background, .block-container > .wp-block-media-text, .block-container > .wp-block-quote.has-background, .block-container > .wp-block-pullquote.has-background,
.block-container .big-block,
.is-root-container > .alignfull.has-background,
.is-root-container > .alignfull.wp-block-cover,
.is-root-container > .custom-block,
.is-root-container > .wp-block-separator,
.is-root-container > .wp-block-group,
.is-root-container > .wp-block-columns.has-background,
.is-root-container > .wp-block-media-text,
.is-root-container > .wp-block-quote.has-background,
.is-root-container > .wp-block-pullquote.has-background,
.is-root-container .big-block,
.block-container .is-layout-constrained.alignfull > .alignfull.has-background,
.block-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover,
.block-container .is-layout-constrained.alignfull > .custom-block,
.block-container .is-layout-constrained.alignfull > .wp-block-separator,
.block-container .is-layout-constrained.alignfull > .wp-block-group,
.block-container .is-layout-constrained.alignfull > .wp-block-columns.has-background,
.block-container .is-layout-constrained.alignfull > .wp-block-media-text,
.block-container .is-layout-constrained.alignfull > .wp-block-quote.has-background,
.block-container .is-layout-constrained.alignfull > .wp-block-pullquote.has-background,
.block-container .is-layout-constrained.alignfull .big-block,
.is-root-container .is-layout-constrained.alignfull > .alignfull.has-background,
.is-root-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover,
.is-root-container .is-layout-constrained.alignfull > .custom-block,
.is-root-container .is-layout-constrained.alignfull > .wp-block-separator,
.is-root-container .is-layout-constrained.alignfull > .wp-block-group,
.is-root-container .is-layout-constrained.alignfull > .wp-block-columns.has-background,
.is-root-container .is-layout-constrained.alignfull > .wp-block-media-text,
.is-root-container .is-layout-constrained.alignfull > .wp-block-quote.has-background,
.is-root-container .is-layout-constrained.alignfull > .wp-block-pullquote.has-background,
.is-root-container .is-layout-constrained.alignfull .big-block {
  margin-block-start: var(--wp--custom--layout--block-gap-large);
  margin-block-end: var(--wp--custom--layout--block-gap-large);
}
.block-container > *:first-child.has-background,
.is-root-container > *:first-child.has-background,
.block-container .is-layout-constrained.alignfull > *:first-child.has-background,
.is-root-container .is-layout-constrained.alignfull > *:first-child.has-background {
  margin-block-start: 0;
}
.block-container > *:last-child:not(.alignfull):not(.cta),
.is-root-container > *:last-child:not(.alignfull):not(.cta),
.block-container .is-layout-constrained.alignfull > *:last-child:not(.alignfull):not(.cta),
.is-root-container .is-layout-constrained.alignfull > *:last-child:not(.alignfull):not(.cta) {
  margin-block-end: var(--wp--custom--layout--block-gap-large);
}
.block-container > .alignfull.has-background + .alignfull.has-background, .block-container > .alignfull.wp-block-cover + .alignfull.has-background, .block-container > .alignfull.has-background + .alignfull.wp-block-cover,
.is-root-container > .alignfull.has-background + .alignfull.has-background,
.is-root-container > .alignfull.wp-block-cover + .alignfull.has-background,
.is-root-container > .alignfull.has-background + .alignfull.wp-block-cover,
.block-container .is-layout-constrained.alignfull > .alignfull.has-background + .alignfull.has-background,
.block-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover + .alignfull.has-background,
.block-container .is-layout-constrained.alignfull > .alignfull.has-background + .alignfull.wp-block-cover,
.is-root-container .is-layout-constrained.alignfull > .alignfull.has-background + .alignfull.has-background,
.is-root-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover + .alignfull.has-background,
.is-root-container .is-layout-constrained.alignfull > .alignfull.has-background + .alignfull.wp-block-cover {
  margin-block-start: 0;
}
.block-container > .is-style-section-header:not(:first-child),
.is-root-container > .is-style-section-header:not(:first-child),
.block-container .is-layout-constrained.alignfull > .is-style-section-header:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .is-style-section-header:not(:first-child) {
  margin-block-start: var(--wp--custom--layout--block-gap-large);
}
.block-container > .hero-section.alignfull + .alignfull.has-background,
.is-root-container > .hero-section.alignfull + .alignfull.has-background,
.block-container .is-layout-constrained.alignfull > .hero-section.alignfull + .alignfull.has-background,
.is-root-container .is-layout-constrained.alignfull > .hero-section.alignfull + .alignfull.has-background {
  margin-block-start: calc(-1 * var(--wp--custom--layout--block-gap-large));
}

.wp-block-group > *:last-child {
  margin-block-end: 0 !important;
}

.is-root-container .is-layout-constrained:not(.alignleft):not(.alignright):not(.alignfull) > *,
.is-root-container .acf-block-component .acf-block-fields {
  max-width: none;
}

.is-root-container .wp-block-cover .is-layout-constrained:not(.alignleft):not(.alignright):not(.alignfull) > * {
  max-width: var(--wp--style--global--content-size);
}

/* Accessible Colors
--------------------------------------------- */
.has-background {
  color: var(--wp--preset--color--black);
}

.has-tertiary-background-color > *:not(.has-text-color):not(.has-background),
.has-foreground-background-color > *:not(.has-text-color):not(.has-background),
.has-accent-3-background-color > *:not(.has-text-color):not(.has-background),
.has-accent-4-background-color > *:not(.has-text-color):not(.has-background),
.has-accent-2-background-color > *:not(.has-text-color):not(.has-background),
.has-black-background-color > *:not(.has-text-color):not(.has-background) {
  color: var(--wp--preset--color--white);
}
.has-tertiary-background-color a:not(.wp-block-button__link),
.has-foreground-background-color a:not(.wp-block-button__link),
.has-accent-3-background-color a:not(.wp-block-button__link),
.has-accent-4-background-color a:not(.wp-block-button__link),
.has-accent-2-background-color a:not(.wp-block-button__link),
.has-black-background-color a:not(.wp-block-button__link) {
  color: var(--wp--preset--color--white);
}
.has-tertiary-background-color a:not(.wp-block-button__link):hover, .has-tertiary-background-color a:not(.wp-block-button__link):active, .has-tertiary-background-color a:not(.wp-block-button__link):focus,
.has-foreground-background-color a:not(.wp-block-button__link):hover,
.has-foreground-background-color a:not(.wp-block-button__link):active,
.has-foreground-background-color a:not(.wp-block-button__link):focus,
.has-accent-3-background-color a:not(.wp-block-button__link):hover,
.has-accent-3-background-color a:not(.wp-block-button__link):active,
.has-accent-3-background-color a:not(.wp-block-button__link):focus,
.has-accent-4-background-color a:not(.wp-block-button__link):hover,
.has-accent-4-background-color a:not(.wp-block-button__link):active,
.has-accent-4-background-color a:not(.wp-block-button__link):focus,
.has-accent-2-background-color a:not(.wp-block-button__link):hover,
.has-accent-2-background-color a:not(.wp-block-button__link):active,
.has-accent-2-background-color a:not(.wp-block-button__link):focus,
.has-black-background-color a:not(.wp-block-button__link):hover,
.has-black-background-color a:not(.wp-block-button__link):active,
.has-black-background-color a:not(.wp-block-button__link):focus {
  color: var(--wp--preset--color--secondary);
}

/* Heading
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-end: 2rem;
  margin-block-start: 0;
  -webkit-font-smoothing: antialiased;
}

h4 {
  font-weight: 600;
}

h5 {
  font-weight: 600;
}

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

.is-style-section-header {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-block-end: var(--wp--custom--layout--block-gap);
  margin-block-start: var(--wp--custom--layout--block-gap);
}
.is-style-section-header::after {
  content: "";
  height: 2px;
  background-color: var(--wp--preset--color--accent-4);
}
@media (min-width: 782px) {
  .is-style-section-header {
    flex-direction: row;
    align-items: center;
  }
  .is-style-section-header::after {
    content: "";
    flex-grow: 1;
    margin-left: 1rem;
  }
}

.wp-block-heading + .custom-block,
.wp-block-heading + .has-background {
  margin-block-start: var(--wp--custom--layout--block-gap) !important;
}

.mb-0 {
  margin-block-end: 0;
}

/* Paragraphs + Lists
--------------------------------------------- */
p, ol, ul {
  margin-block-start: 2rem;
  margin-block-end: 2rem;
}

:where(.is-layout-flow) .wp-block-buttons,
:where(.is-layout-flow) h3 + h4 {
  margin-block-start: var(--wp--custom--layout--padding) !important;
}

ul + h2,
ul + .wp-block-columns.has-background,
ul + .wp-block-group,
ol + h2,
ol + .wp-block-columns.has-background,
ol + .wp-block-group,
p + h2,
p + .wp-block-columns.has-background,
p + .wp-block-group,
.wp-block-buttons + h2,
.wp-block-buttons + .wp-block-columns.has-background,
.wp-block-buttons + .wp-block-group {
  margin-block-start: var(--wp--custom--layout--block-gap-large);
}
ul + h3,
ol + h3,
p + h3,
.wp-block-buttons + h3 {
  margin-block-start: var(--wp--custom--layout--block-gap);
}

.wp-block-list li {
  margin-bottom: 1rem;
}

ul ul {
  margin-block-start: 1rem;
}

ul.list-unstyled,
ul.is-style-list-unstyled {
  list-style: none;
  padding: 0;
}

ul.is-style-two-columns,
ul.two-columns {
  list-style: none;
  padding: 0;
}
@media (min-width: 782px) {
  ul.is-style-two-columns,
  ul.two-columns {
    column-count: 2;
    gap: var(--wp--custom--layout--block-gap);
  }
}
@media (min-width: 1200px) {
  ul.is-style-two-columns,
  ul.two-columns {
    gap: var(--wp--custom--layout--block-gap-large);
  }
}
ul.is-style-two-columns li,
ul.two-columns li {
  margin-bottom: 2rem;
}

/* Image
--------------------------------------------- */
img {
  display: block;
  max-width: 100%;
  height: auto;
}
img.emoji {
  max-width: 16px;
  display: inline-block;
}
img.alignleft {
  float: left;
  margin: 0 var(--wp--style--block-gap) var(--wp--style--block-gap) 0;
  max-width: calc(var(--wp--custom--layout--content) / 2);
}
img.alignright {
  float: right;
  margin: 0 0 var(--wp--style--block-gap) var(--wp--style--block-gap);
  max-width: calc(var(--wp--custom--layout--content) / 2);
}
img.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

figure.wp-caption {
  max-width: 100%;
}

figcaption {
  font-size: 12px;
}

.wp-block-image:not(.is-style-rounded), .wp-block-image:not(.is-style-rounded) img {
  border-radius: var(--wp--custom--layout--corners);
}
@media (min-width: 601px) {
  .wp-block-image.alignleft {
    float: left;
    margin: 10px 3rem var(--wp--style--block-gap) 0;
    max-width: 48vw;
  }
  .wp-block-image.alignright {
    float: right;
    margin: 10px 0 var(--wp--style--block-gap) 3rem;
    max-width: 48vw;
  }
}
@media (min-width: 782px) {
  .content .block-container > .wp-block-image.alignleft {
    max-width: calc(var(--wp--custom--layout--content) / 2);
    margin-left: calc((100vw - var(--wp--custom--layout--content)) / 2 - var(--wp--custom--layout--padding));
  }
  .content .block-container > .wp-block-image.alignright {
    max-width: calc(var(--wp--custom--layout--content) / 2);
    margin-right: calc((100vw - var(--wp--custom--layout--content)) / 2 - var(--wp--custom--layout--padding));
  }
}
@media (min-width: 1200px) {
  .full-width-content .block-container > .wp-block-image.alignleft {
    max-width: calc(var(--wp--custom--layout--wide) / 2);
    margin-left: calc((100vw - var(--wp--custom--layout--wide)) / 2);
  }
  .full-width-content .block-container > .wp-block-image.alignright {
    max-width: calc(var(--wp--custom--layout--wide) / 2);
    margin-right: calc((100vw - var(--wp--custom--layout--wide)) / 2);
  }
}

/* Embeds
--------------------------------------------- */
.wp-block-embed .wp-block-embed__wrapper {
  border-radius: var(--wp--custom--layout--corners);
  overflow: hidden;
}

/* Media + Text
--------------------------------------------- */
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
}
.wp-block-media-text img {
  border-radius: var(--wp--custom--layout--corners);
}
.wp-block-media-text.has-background {
  border-radius: var(--wp--custom--layout--corners);
  padding: 0;
}
.wp-block-media-text.has-background:not(.has-media-on-the-right) img {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.wp-block-media-text.has-background.has-media-on-the-right img {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.wp-block-media-text.has-background .wp-block-media-text__content {
  padding: var(--wp--custom--layout--block-padding);
}
@media (min-width: 992px) {
  .wp-block-media-text:not(.has-background).has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .wp-block-media-text:not(.has-background):not(.has-media-on-the-right) .wp-block-media-text__content {
    padding-right: 0;
  }
}
.wp-block-media-text figcaption {
  position: absolute;
  top: calc(100% + 10px);
}
@media (max-width: 992px) {
  .wp-block-media-text figcaption {
    padding-left: 10px;
  }
}
@media (max-width: 991px) {
  .wp-block-media-text {
    grid-template-columns: 100% !important;
    row-gap: 2rem;
  }
  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
    grid-row: 1 !important;
    grid-column: 1 !important;
  }
  .wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
    grid-row: 2 !important;
    grid-column: 1 !important;
  }
  .wp-block-media-text:not(.has-background) .wp-block-media-text__content {
    padding: 0;
  }
  .wp-block-media-text img {
    border-radius: var(--wp--custom--layout--corners) var(--wp--custom--layout--corners) 0 0 !important;
  }
}

/* Columns
--------------------------------------------- */
@media (min-width: 782px) {
  .wp-block-columns {
    gap: var(--wp--custom--layout--block-gap-large);
  }
  .wp-block-columns.dividers .wp-block-column:not(:first-child) {
    padding-left: var(--wp--custom--layout--block-gap);
    border-left: 1px solid var(--wp--preset--color--foreground);
  }
}
.wp-block-columns.has-background,
.wp-block-columns .wp-block-column.has-background {
  border-radius: var(--wp--custom--layout--corners);
}

/* Separator
--------------------------------------------- */
.wp-block-separator {
  background: var(--wp--preset--color--black);
  border: none;
  height: 1px;
  padding: 0;
  margin-top: var(--wp--custom--layout--block-gap-large);
  margin-bottom: var(--wp--custom--layout--block-gap-large);
}
.wp-block-separator.has-background {
  padding: 0;
}

/* Buttons
--------------------------------------------- */
.wp-element-button,
.wp-block-button > .wp-block-button__link {
  display: inline-block;
  transition: all 0.2s linear;
  -webkit-font-smoothing: antialiased;
}
.wp-element-button:hover, .wp-element-button:focus,
.wp-block-button > .wp-block-button__link:hover,
.wp-block-button > .wp-block-button__link:focus {
  background: #ffb051;
}

.wp-element-button.is-style-outline,
.wp-block-button.is-style-outline > .wp-block-button__link {
  border: 2px solid currentColor;
  padding: 24px 38px;
}
.wp-element-button.is-style-outline:not(.has-background),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-background) {
  background: var(--wp--preset--color--white);
}
.wp-element-button.is-style-outline:not(.has-text-color),
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color) {
  color: var(--wp--preset--color--primary);
}

.is-small-buttons .wp-block-button > .wp-block-button__link,
.wp-block-file__button,
.wp-element-button.is-style-small,
.wp-block-button.is-style-small > .wp-block-button__link {
  padding: 13px 30px 12px;
  font-size: var(--wp--preset--font-size--small);
}
.is-small-buttons .wp-block-button > .wp-block-button__link:not(.has-background),
.wp-block-file__button:not(.has-background),
.wp-element-button.is-style-small:not(.has-background),
.wp-block-button.is-style-small > .wp-block-button__link:not(.has-background) {
  background-color: var(--wp--preset--color--primary);
}
.is-small-buttons .wp-block-button > .wp-block-button__link:not(.has-background):hover, .is-small-buttons .wp-block-button > .wp-block-button__link:not(.has-background):focus,
.wp-block-file__button:not(.has-background):hover,
.wp-block-file__button:not(.has-background):focus,
.wp-element-button.is-style-small:not(.has-background):hover,
.wp-element-button.is-style-small:not(.has-background):focus,
.wp-block-button.is-style-small > .wp-block-button__link:not(.has-background):hover,
.wp-block-button.is-style-small > .wp-block-button__link:not(.has-background):focus {
  background-color: #44dbd6;
}

/* file */
.wp-block-file {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.wp-block-file a:first-child {
  font-size: 1rem;
  font-weight: 700;
  color: var(--wp--preset--color--black);
  text-decoration: none;
}
.wp-block-file .wp-block-file__button {
  margin-left: 0;
  background-color: var(--wp--preset--color--primary);
}

/* Quotes
--------------------------------------------- */
.wp-block-quote {
  border-radius: var(--wp--custom--layout--corners);
}
.wp-block-quote p {
  font-size: var(--wp--preset--font-size--large);
}

.wp-block-pullquote {
  border-radius: var(--wp--custom--layout--corners);
}
.wp-block-pullquote cite {
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
}

/* Group
--------------------------------------------- */
.wp-block-group:not(.alignfull) {
  border-radius: var(--wp--custom--layout--corners);
}

/* Cover
--------------------------------------------- */
.wp-block-cover:not(.alignfull) {
  border-radius: var(--wp--custom--layout--corners);
}

.wp-block-cover.alignfull > * {
  max-width: none;
}

/* Form
--------------------------------------------- */
input,
select,
textarea {
  background: var(--wp--preset--color--white);
  border: var(--wp--custom--border-width--tiny) solid var(--wp--preset--color--black);
  border-radius: none;
  color: var(--wp--preset--color--black);
  font-size: var(--wp--preset--font-size--small);
  line-height: var(--wp--custom--line-height--medium);
  padding: 9px 12px;
  width: 100%;
}

input[type=checkbox],
input[type=submit] {
  width: auto;
}

textarea {
  width: 100%;
  resize: vertical;
}

::-moz-placeholder {
  color: var(--wp--preset--color--black);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--wp--preset--color--black);
}

::-webkit-input-placeholder {
  color: var(--wp--preset--color--black);
}

input:focus::-webkit-input-placeholder,
input:focus::-moz-placeholder,
input:focus:-ms-input-placeholder,
textarea:focus::-webkit-input-placeholder,
textarea:focus::-moz-placeholder,
textarea:focus:-ms-input-placeholder {
  color: transparent;
}

label,
.wp-block-search__label,
.wpforms-container .wpforms-field-label {
  font-family: var(--wp--custom--typography--interface--font-family);
  letter-spacing: var(--wp--custom--typography--interface--letter-spacing);
  text-transform: var(--wp--custom--typography--interface--text-transform);
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
}
label .wpforms-required-label,
.wp-block-search__label .wpforms-required-label,
.wpforms-container .wpforms-field-label .wpforms-required-label {
  color: inherit;
}

.comment-form-cookies-consent label,
.wpforms-container .wpforms-field-sublabel {
  font-weight: 400;
  font-family: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

/* Search Form
--------------------------------------------- */
.wp-block-search__input,
:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border-color: var(--wp--preset--color--black);
}

.wp-block-search__button-inside .wp-block-search__input {
  border: none;
}

.wp-block-search__inside-wrapper {
  background: var(--wp--preset--color--white);
}

.wp-block-search__button {
  flex-shrink: 0;
}

.wp-block-search__icon-button .wp-block-search__button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: var(--wp--preset--color--black);
}
.wp-block-search__icon-button .wp-block-search__button.wp-element-button {
  padding: 0;
}
.wp-block-search__icon-button .wp-block-search__button svg {
  width: 36px;
  height: 36px;
}

.archive-header .wp-block-search {
  margin: 0 auto;
}

/* Tables
--------------------------------------------- */
.wp-block-table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 2rem;
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: auto;
  border-radius: var(--wp--custom--layout--corners);
  border: 0;
}
.wp-block-table.is-style-stripes {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--wp--preset--color--light);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background-color: var(--wp--preset--color--white);
}
.wp-block-table thead {
  background-color: inherit;
  border: 0;
}
.wp-block-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-color: white !important;
}
.wp-block-table td {
  padding: 0.75rem 1rem;
  border-color: white !important;
  color: var(--wp--preset--color--foreground);
}
/* Separator hr
--------------------------------------------- */
.wp-block-separator {
  height: 2px;
}
.wp-block-separator:not(.has-background) {
  background: var(--wp--preset--color--accent-4);
}

/* Gallery */
.wp-block-gallery {
  padding: 1rem 0;
}
.wp-block-gallery figure.wp-block-image img {
  border-radius: 0;
}
.wp-block-gallery.has-nested-images:not(.is-cropped) figure.wp-block-image:not(#individual-image) {
  margin-bottom: auto;
  margin-top: auto;
}
.wp-block-gallery.logo-gallery img {
  max-height: 145px;
  height: auto;
  width: auto;
  object-fit: contain; /* optional: makes images fit nicely inside their box */
}
@media (max-width: 991px) {
  .wp-block-gallery .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px) * 0.66667);
  }
}

/* CTA */
.cta {
  padding: 0;
  position: relative;
}
.cta .cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--wp--custom--layout--corners);
  overflow: hidden;
  max-width: var(--wp--custom--layout--content);
}
@media (min-width: 782px) {
  .cta .cta-inner {
    justify-content: flex-end;
    flex-direction: row;
  }
}
.cta .cta-image-wrap {
  width: 60%;
  position: relative;
}
.cta .cta-image-wrap .cta-image {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: cover;
}
@media (max-width: 781px) {
  .cta .cta-image-wrap {
    width: 100%;
    height: 100%;
    order: 2;
    min-height: 400px;
  }
}
.cta .svg-overlay {
  position: relative;
}
@media (min-width: 782px) {
  .cta .svg-overlay {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: -1px;
    width: auto;
    z-index: 9;
  }
  .cta .svg-overlay svg {
    height: 100%;
    width: 100%;
    display: block;
  }
}
@media (max-width: 781px) {
  .cta .svg-overlay {
    position: relative;
    order: 2;
    width: 100%;
    z-index: 2;
    height: 250px;
  }
  .cta .svg-overlay svg {
    position: absolute;
    top: 100%;
    left: 0;
    height: 100vw;
    width: 250px;
    transform: rotate(-90deg);
    transform-origin: top left;
    display: block;
  }
}
.cta .cta-content {
  position: relative;
  padding: var(--wp--custom--layout--block-gap);
  z-index: 10;
}
@media (max-width: 781px) {
  .cta .cta-content {
    order: 1;
    padding-bottom: 0;
  }
}
@media (min-width: 782px) {
  .cta .cta-content {
    padding-left: 0;
    width: 40%;
    height: 100%;
  }
}
@media (min-width: 1200px) {
  .cta .cta-content {
    padding: 100px var(--wp--custom--layout--block-gap);
    padding-left: 0;
  }
}
@media (min-width: 1600px) {
  .cta .cta-content {
    padding: 120px var(--wp--custom--layout--block-gap);
    padding-left: 0;
  }
}
.cta .cta-content > * {
  z-index: 10;
  position: relative;
  max-width: 500px;
}
@media (min-width: 782px) {
  .cta .cta-content > * {
    margin-left: -2rem;
  }
}
.cta .cta-content > *:first-child {
  margin-block-start: 0;
}
.cta a {
  text-decoration: none;
}
.cta a:not(:hover) {
  color: var(--wp--preset--color--black);
}
.cta a svg {
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .cta a {
    font-size: var(--wp--preset--font-size--large);
  }
  .cta a svg {
    margin-right: 1rem;
  }
}
.cta figcaption {
  max-width: var(--wp--custom--layout--content) !important;
  margin-top: 10px;
}
@media (max-width: 781px) {
  .cta figcaption {
    padding-left: 10px;
  }
}
.cta:last-child:after {
  content: "";
  background: var(--wp--preset--color--light);
  height: 250px;
  display: block;
  position: absolute;
  top: 70%;
  left: 0;
  right: 0;
  z-index: -1;
}

/* Social Links
--------------------------------------------- */
ul.social-links {
  padding-left: 0;
  display: flex;
}
ul.social-links.has-text-align-center {
  justify-content: center;
}
ul.social-links.has-text-align-right {
  justify-content: flex-end;
}
ul.social-links li {
  list-style-type: none;
}
ul.social-links a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
ul.social-links svg {
  fill: var(--wp--preset--color--black);
  width: 32px;
  height: 32px;
}
ul.social-links a:hover svg {
  fill: var(--wp--preset--color--primary);
}

.editor-styles-wrapper ul.social-links a {
  pointer-events: none;
}

/* Featured Post Grid
--------------------------------------------- */
.featured-post-grid {
  display: grid;
  gap: var(--wp--custom--layout--block-gap);
  grid-template-columns: none;
}
@media (min-width: 782px) {
  .featured-post-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}
.featured-post-grid .card {
  background-color: var(--wp--preset--color--white);
}
.featured-post-grid .card .card-header {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  padding: 0;
}
.featured-post-grid .card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
@media (min-width: 1200px) {
  .featured-post-grid .card:not(:nth-child(1)) .card-header {
    aspect-ratio: 3/5;
    min-width: 33.3%;
    max-width: 33.3%;
  }
}
@media (min-width: 782px) {
  .featured-post-grid .card:nth-child(1) {
    grid-column: 1;
    grid-row: 1/span 2;
  }
  .featured-post-grid .card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
    flex-direction: row;
  }
  .featured-post-grid .card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
    flex-direction: row;
  }
}
@media (max-width: 781px) {
  .featured-post-grid .card:nth-child(2), .featured-post-grid .card:nth-child(3) {
    display: none;
  }
}

.entry-content > .featured-posts .card {
  background: var(--wp--preset--color--light);
}

/* Accordion
--------------------------------------------- */
.accordion {
  padding: 0;
  width: 100%;
}

.accordion:focus-visible {
  outline: 0.15ch solid var(--wp--preset--color--primary);
  outline-offset: 0.7ch;
}

.accordion-header {
  background-color: transparent;
  border: none;
  color: var(--wp--preset--color--foreground);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  margin: 0;
  outline: none;
  padding: 0.75em 1.25em;
  position: relative;
  text-align: left;
  width: 100%;
}

.accordion-content + .accordion-header {
  border-top: 2px solid var(--wp--preset--color--primary);
}

.accordion-header:focus-visible,
.accordion-header:hover {
  background-color: var(--wp--preset--color--light);
  color: var(--wp--preset--color--foreground);
}

.accordion-header:focus-visible {
  outline: 4px solid transparent;
}

.accordion-title {
  border: transparent 2px solid;
  display: block;
  outline: none;
  pointer-events: none;
  padding: 0.25em;
}

.accordion-icon {
  border: solid currentcolor;
  border-width: 0 2px 2px 0;
  height: 0.5rem;
  pointer-events: none;
  position: absolute;
  right: 2em;
  top: 50%;
  transform: translateY(-60%) rotate(45deg);
  width: 0.5rem;
}

.accordion-header[aria-expanded=true] .accordion-icon {
  transform: translateY(-50%) rotate(-135deg);
}

.accordion-content {
  margin: 0;
  padding: 1em 1.5em;
}

.accordion-label,
html :where(.editor-styles-wrapper) h2.accordion-label {
  font-size: 111%;
  font-weight: 700;
}

.js .accordion-content {
  display: none;
  visibility: hidden;
}

.js .accordion-content.is-active {
  display: block;
  visibility: visible;
}

.wp-block-post-content h3 + .accordion-panel {
  margin-top: 0 !important;
}

.acf-accordion-block-empty-state {
  padding: 1rem 1rem;
}

/* Card Loop Grid */
.loop-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--wp--custom--layout--block-gap);
}
@media (min-width: 782px) {
  .loop-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .loop-container.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .loop-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* MAPS */
.acf-map {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  border: #ccc solid 1px;
  border-radius: var(--wp--custom--layout--corners);
  margin-bottom: var(--wp--style--block-gap);
}
@media (min-width: 1200px) {
  .acf-map {
    margin-bottom: var(--wp--custom--layout--block-gap-large);
  }
}

.acf-map img {
  max-width: inherit !important;
}

.gm-style-iw {
  animation: fadeIn 0.3s ease-out;
  backface-visibility: hidden;
  transform: translateZ(0); /* triggers GPU rendering */
}
.gm-style-iw h5 {
  margin-block-start: 0;
  margin-block-end: 0px;
}
.gm-style-iw span {
  display: block;
  font-size: 14px;
  line-height: 1.8;
}
.gm-style-iw p {
  margin-block-start: 5px !important;
}
.gm-style-iw a {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-list li {
  margin-bottom: var(--wp--custom--layout--block-gap);
  break-inside: avoid;
}
.contact-list h4 {
  margin-block-end: 1rem;
  margin-right: 6px;
}
.contact-list em {
  color: var(--wp--preset--color--accent-4);
  display: block;
  margin-top: 10px;
}
.contact-list a {
  display: inline-flex;
  align-items: flex-start;
  text-decoration: none;
}
.contact-list svg {
  margin-top: -1px;
  margin-left: 5px;
}

.lity {
  background: rgba(7, 41, 56, 0.95);
}

.popup-block a.embed .wp-block-image,
.popup-block a.youtube .wp-block-image {
  position: relative;
}
.popup-block a.embed .wp-block-image img,
.popup-block a.youtube .wp-block-image img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.popup-block a.embed .wp-block-image:after,
.popup-block a.youtube .wp-block-image:after {
  content: "";
  background: url(../icons/utility/play.svg) 0 0 no-repeat;
  opacity: 0.8;
  width: 70px;
  height: 70px;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  margin: auto;
  filter: invert(1);
}

.popup {
  width: 90vw;
  max-width: 1200px;
}
.popup.content {
  background: white;
  padding: var(--wp--custom--layout--padding);
  border-radius: var(--wp--custom--layout--corners);
  overflow: hidden;
}
.popup iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9; /* fallback for modern browsers */
  max-width: 100%;
  display: block;
  border: 0;
}

.post-type-curriculum .wp-block-group {
  margin-block-end: 5rem;
}
@media (min-width: 992px) {
  .post-type-curriculum .wp-block-group {
    margin-block-end: 7rem;
  }
}
.post-type-curriculum .wp-block-group a {
  word-break: break-word;
}
@media (max-width: 781px) {
  .post-type-curriculum .video-list .wp-block-columns {
    margin-bottom: 5rem;
  }
  .post-type-curriculum .video-list .wp-block-column {
    margin-bottom: 2rem;
  }
  .post-type-curriculum .video-list .wp-block-column p:last-child {
    margin-block-end: 0;
  }
}

/* WordPress SEO
--------------------------------------------- */
.breadcrumb {
  margin: 0 auto 16px;
  line-height: var(--wp--custom--line-height--small);
  font-size: var(--wp--preset--font-size--tiny);
  max-width: var(--wp--custom--layout--page);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.breadcrumb .sep {
  margin: 0 4px;
}
.archive-header .breadcrumb, .post-header .breadcrumb {
  max-width: 100%;
  grid-column: 1/-1;
  margin-left: 0;
  margin-right: 0;
}

/* WPForms
--------------------------------------------- */
div.wpforms-container .wpforms-title {
  font-size: var(--wp--preset--font-size--x-large);
  line-height: var(--wp--custom--line-height--small);
  margin: 0 0 16px;
  padding: 0;
}
div.wpforms-container .wpforms-description {
  margin: 0 0 16px;
  padding: 0;
}
div.wpforms-container .wpforms-field {
  padding: 0;
  margin-bottom: 16px;
}
div.wpforms-container .wpforms-field.impound {
  display: none;
}
div.wpforms-container .wpforms-field-sublabel {
  font-size: var(--wp--preset--font-size--min);
}
div.wpforms-container .wpforms-submit-container {
  padding: 0;
  margin-top: 16px;
  text-align: left;
}

/* Site Header
---------------------------------------------------------------------------------------------------- */
@media (max-width: 991px) {
  :root {
    --wp--custom--layout--nav-padding-x:10px;
  }
}
@media (max-width: 1199px) {
  :root {
    --wp--custom--layout--nav-padding-y:15px;
    --wp--custom--layout--nav-padding-x:16px;
  }
}

.site-header {
  background: var(--wp--preset--color--white);
  position: relative;
}
@media (max-width: 900px) {
  .site-header {
    max-height: 100vh;
    overflow-y: visible;
    overscroll-behavior-y: contain;
  }
}
.site-header .wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
}
@media (min-width: 901px) {
  .site-header .wrap {
    grid-template-columns: 280px 1fr; /* Fallback for IE */
    grid-template-columns: min(280px, 20vw) 1fr;
    column-gap: 1.5rem;
  }
}
@media (min-width: 1201px) {
  .site-header .wrap {
    column-gap: 3rem;
  }
}
.site-header__toggles {
  display: flex;
  flex-wrap: nowrap;
  justify-self: flex-end;
}
@media (min-width: 901px) {
  .site-header__toggles {
    display: none;
  }
}

.site-header__logo {
  padding: 15px 0;
}
@media (min-width: 901px) {
  .site-header__logo {
    padding: 15px 0 30px;
  }
}

.search-toggle,
.menu-toggle,
.favorite-toggle {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  line-height: 0;
  padding: 0;
  text-align: center;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-toggle svg,
.menu-toggle svg,
.favorite-toggle svg {
  width: 24px;
  height: 24px;
}
.search-toggle .close,
.menu-toggle .close,
.favorite-toggle .close {
  display: none;
}
.search-toggle.active .close,
.menu-toggle.active .close,
.favorite-toggle.active .close {
  display: inline;
}
.search-toggle.active .open,
.menu-toggle.active .open,
.favorite-toggle.active .open {
  display: none;
}

/* Admin Bar
--------------------------------------------- */
@media (min-width: 783px) {
  .admin-bar .site-container {
    padding-top: 32px;
  }
}
@media (max-width: 782px) {
  #wpadminbar {
    display: none !important;
  }
}
/* Navigation
---------------------------------------------------------------------------------------------------- */
.nav-menu > * {
  line-height: 0;
}
.nav-menu ul {
  clear: both;
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 100%;
}
.nav-menu .menu-item {
  list-style: none;
  position: relative;
}
.nav-menu .menu-item a {
  border: none;
  display: block;
  font-size: var(--wp--preset--font-size--small);
  position: relative;
  padding: var(--wp--custom--layout--nav-padding-y) var(--wp--custom--layout--nav-padding-x);
  text-decoration: none;
}
@media (min-width: 900px) {
  .nav-menu .menu-item a {
    font-size: var(--wp--preset--font-size--tiny);
  }
}
@media (min-width: 1200px) {
  .nav-menu .menu-item a {
    font-size: var(--wp--preset--font-size--small);
  }
}
.nav-menu .menu-item.menu-item-has-children > a {
  padding-right: calc(var(--wp--custom--layout--nav-padding-x) + 6px);
}
@media (max-width: 900px) {
  .nav-menu .sub-menu {
    display: none;
    padding-left: 8px;
  }
}
@media (min-width: 901px) {
  .nav-menu .menu {
    display: flex;
  }
  .nav-menu .menu-item:hover > .sub-menu, .nav-menu .menu-item:focus-within > .sub-menu {
    left: auto;
    opacity: 1;
  }
  .nav-menu .menu-item .menu-item:hover > .sub-menu, .nav-menu .menu-item .menu-item:focus-within > .sub-menu {
    left: 100%;
    top: 0;
  }
  .nav-menu .menu > .menu-item-has-children:hover > a {
    color: var(--wp--preset--color--black);
  }
  .nav-menu .sub-menu {
    background: var(--wp--preset--color--light);
    left: -9999px;
    opacity: 0;
    position: absolute;
    z-index: 99;
  }
}
@media (min-width: 901px) and (min-width: 900px) {
  .nav-menu .sub-menu {
    min-width: 215px;
  }
}
@media (min-width: 901px) {
  .nav-menu .sub-menu .menu-item {
    float: none;
  }
  .nav-menu .sub-menu .menu-item:hover > a {
    background: white;
  }
  .nav-menu .sub-menu .sub-menu {
    background: var(--wp--preset--color--light);
  }
  .nav-menu .sub-menu .sub-menu .menu-item > a {
    background: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.nav-menu .submenu-expander {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  outline: none;
  cursor: pointer;
  position: absolute;
  line-height: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media (max-width: 900px) {
  .nav-menu .submenu-expander {
    top: 0;
    right: 0;
    transform: none;
    width: 40px;
    height: 40px;
  }
  .nav-menu .submenu-expander .icon-plus,
  .nav-menu .submenu-expander .icon-minus {
    display: none;
  }
  .nav-menu .submenu-expander .icon-chevron {
    display: none;
  }
  .nav-menu .submenu-expander svg {
    width: 18px;
    height: 18px;
  }
  .nav-menu .submenu-expander:not(.expanded) .icon-plus {
    display: block;
  }
  .nav-menu .submenu-expander.expanded .icon-minus {
    display: block;
  }
  .nav-menu .submenu-expander.expanded + .sub-menu {
    display: block;
  }
}
@media (min-width: 901px) {
  .nav-menu .submenu-expander .icon-plus,
  .nav-menu .submenu-expander .icon-minus {
    display: none;
  }
  .nav-menu .submenu-expander .icon-chevron {
    display: block;
  }
}
@media (min-width: 1201px) {
  .nav-menu .submenu-expander {
    right: 8px;
  }
}
.nav-menu .sub-menu .submenu-expander {
  right: 12px;
}

/*  navigation wrapper */
@media (max-width: 900px) {
  .navbar {
    position: absolute;
    background: var(--wp--preset--color--primary);
    left: 0;
    right: 0;
    top: 100%;
    height: 100vh;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s ease, opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    padding: var(--wp--custom--layout--padding);
  }
  .navbar.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
  }
}
@media (min-width: 1200px) {
  .navbar {
    padding-top: 10px;
  }
}

/* primary nav */
@media (min-width: 901px) {
  #primary-menu {
    justify-content: space-between;
  }
}
@media (min-width: 1201px) {
  #primary-menu {
    justify-content: flex-end;
  }
}
@media (max-width: 900px) {
  #primary-menu > .menu-item {
    border-bottom: 1px solid white;
  }
  #primary-menu > .menu-item.menu-item-has-children > a {
    margin-right: 50px;
  }
  #primary-menu > .menu-item:not(.menu-item-has-children) > a:after {
    content: "";
    background: url(../icons/utility/chevron-right.svg) 0 0 no-repeat;
    width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background-size: contain;
  }
}
#primary-menu > .menu-item a {
  color: var(--wp--preset--color--black);
}
@media (max-width: 900px) {
  #primary-menu > .menu-item > a {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1300px) {
  #primary-menu > .menu-item > a {
    font-size: 1.1rem;
  }
}
@media (min-width: 1600px) {
  #primary-menu > .menu-item > a {
    font-size: 1.125rem;
  }
}
@media (min-width: 901px) {
  #primary-menu > .menu-item.current-menu-item > a:after, #primary-menu > .menu-item.current-menu-ancestor > a:after, #primary-menu > .menu-item:hover > a:after {
    content: "";
    position: absolute;
    bottom: 8px;
    left: var(--wp--custom--layout--nav-padding-x);
    right: var(--wp--custom--layout--nav-padding-x);
    border-bottom: 4px solid var(--wp--preset--color--secondary);
  }
}

/* secondary nav */
.utility-menu .menu {
  display: flex;
}
.utility-menu .menu a {
  color: var(--wp--preset--color--black);
}
.utility-menu .menu a:hover {
  color: var(--wp--preset--color--tertiary);
}
@media (max-width: 900px) {
  .utility-menu .menu {
    gap: 20px;
    margin-top: 3rem;
  }
  .utility-menu .menu a {
    padding: 0;
  }
}
@media (min-width: 901px) {
  .utility-menu {
    display: flex;
    justify-content: flex-end;
    margin-right: -12px;
  }
}

/* search */
.site-header .wp-block-search {
  display: none;
}
@media (min-width: 901px) {
  .site-header .wp-block-search {
    display: block;
    position: relative;
    display: inline-block;
    margin: 4px 2px;
    height: 50px;
    width: 50px;
    vertical-align: bottom;
  }
  .site-header .wp-block-search .wp-block-search__inside-wrapper {
    border: 0;
    padding: 0;
    margin: 0;
  }
  .site-header .wp-block-search .wp-block-search__button {
    position: absolute;
    font-size: 22px;
    width: 100%;
    margin: 0;
    padding: 0;
    background: transparent;
  }
  .site-header .wp-block-search .wp-block-search__button path {
    color: var(--wp--preset--color--black);
  }
  .site-header .wp-block-search .wp-block-search__button svg {
    width: 20px;
    height: 20px;
  }
  .site-header .wp-block-search .wp-block-search__input:focus + .wp-block-search__button {
    transition-duration: 0.4s;
    background-color: var(--wp--preset--color--black);
    border-radius: 0;
  }
  .site-header .wp-block-search .wp-block-search__input:focus + .wp-block-search__button path {
    color: var(--wp--preset--color--white);
  }
  .site-header .wp-block-search .wp-block-search__input {
    left: auto;
    right: 49px;
    position: absolute;
    background-color: var(--wp--preset--color--white);
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    min-width: 0;
    height: 100%;
    z-index: 10;
    transition-duration: 0.4s;
    height: 44px;
  }
  .site-header .wp-block-search .wp-block-search__input:focus {
    width: 363px; /* Bar width+1px */
    padding: 0 15px;
    border: 1px solid var(--wp--preset--color--black);
  }
}

/* Archive Header
--------------------------------------------- */
.archive-header {
  background: var(--wp--preset--color--white);
  padding: 24px 0 40px;
}

.archive-header .wrap {
  max-width: var(--wp--custom--layout--wide);
}

.archive-header h1 {
  margin-top: var(--wp--custom--layout--block-gap-large);
}

.archive-description > *:first-child {
  margin-top: 0;
}

.archive-description > *:last-child {
  margin-bottom: 0;
}

.archive-header .breadcrumb {
  margin-bottom: var(--wp--custom--layout--block-gap-large);
}

/* Post Loop
--------------------------------------------- */
.archive .loop-container {
  max-width: var(--wp--custom--layout--page);
  margin-inline: auto;
  margin-bottom: var(--wp--custom--layout--block-gap-large);
}

.card {
  position: relative;
  transition: all 0.2s;
}
.card time {
  margin-block-end: 1rem;
}
.card .card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-decoration: none;
  color: inherit;
}
.card .card-link:focus-visible {
  outline: 2px solid -webkit-focus-ring-color;
  outline-offset: -2px;
  border-radius: var(--wp--custom--layout--corners);
}

.loop-container .card-header {
  aspect-ratio: 5/4;
  position: relative;
  overflow: hidden;
}
.loop-container .card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.loop-container .card:hover,
.featured-post-grid .card:hover {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.loop-container .card:hover .wp-element-button,
.featured-post-grid .card:hover .wp-element-button {
  background-color: #44dbd6;
  cursor: pointer;
}

@media (min-width: 1201px) {
  .archive:not(.search) .loop-container .card:first-child {
    grid-column: span 3;
    flex-direction: row;
  }
  .archive:not(.search) .loop-container .card:first-child .card-header {
    min-width: 50%;
    max-width: 50%;
  }
  .archive:not(.search) .loop-container .card:first-child h3 {
    font-size: 32px;
  }
}
.archive .wp-block-categories {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.archive .wp-block-categories .current-cat > a {
  color: black;
  text-decoration: none;
}
.archive .wp-block-categories:before {
  content: "Topics: ";
  font-weight: 600;
}

.post-summary__content {
  display: grid;
  gap: 8px;
  padding-top: 12px;
}
.post-summary__content > * {
  margin: 0;
}
.post-summary .entry-category {
  font-size: var(--wp--preset--font-size--tiny);
}
.post-summary .entry-category a {
  text-decoration: none;
}
.post-summary__title {
  font-size: var(--wp--preset--font-size--large);
}
.post-summary__title a {
  color: var(--wp--preset--color--black);
  text-decoration: none;
}
.post-summary__title a:hover {
  color: var(--wp--preset--color--primary);
}

/* Entry Navigation
--------------------------------------------- */
.pagination {
  margin: 32px auto;
  max-width: var(--wp--custom--layout--page);
  grid-column: 1/-1;
}
.pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.pagination ul li {
  list-style-type: none;
  display: inline-block;
}
.pagination ul li a {
  background: var(--wp--preset--color--white);
  border: var(--wp--custom--border-width--tiny) solid var(--wp--preset--color--white);
  border-radius: var(--wp--custom--border-radius--tiny);
  color: var(--wp--preset--color--accent-4);
  fill: var(--wp--preset--color--accent-4);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}
.pagination ul li svg {
  fill: inherit;
}
.pagination ul li:hover > a, .pagination ul li.active > a {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  fill: var(--wp--preset--color--white);
}

/* Singular
---------------------------------------------------------------------------------------------------- */
article::after {
  content: "";
  clear: both;
  display: table;
}

/* Single Post
--------------------------------------------- */
.entry-header,
.entry-footer,
.after-entry,
.entry-comments {
  max-width: var(--wp--custom--layout--page);
  margin-left: auto;
  margin-right: auto;
}

.entry-footer {
  margin-top: 48px;
}

.block-area-after-post {
  margin: 32px 0;
}

time {
  display: block;
  color: var(--wp--preset--color--accent-4);
}

/* Comments
--------------------------------------------- */
.entry-comments h2, .entry-comments h3 {
  display: flex;
  justify-content: space-between;
}
.entry-comments .comment-list {
  margin: 0 0 32px;
  padding: 0;
}
.entry-comments .comment-list li {
  list-style-type: none;
  margin-top: 4px;
}
.entry-comments .comment-list li + li {
  border-top: 1px solid var(--wp--custom--color--neutral-300);
  padding-top: 24px;
}
.entry-comments .comment-list li article {
  border-left: 4px solid var(--wp--custom--color--neutral-300);
  padding: 16px;
  position: relative;
}
.entry-comments .comment-list li.staff > article {
  border-color: var(--wp--preset--color--primary);
}
.entry-comments .comment-list li:not(.staff) > article .avatar {
  display: none;
}
.entry-comments .comment-list > li {
  overflow: hidden;
  margin-top: 24px;
}
.entry-comments .comment-list > li:first-child {
  margin-top: 0;
}
.entry-comments .comment-list .comment-author {
  color: var(--wp--preset--color--black);
  font-size: var(--wp--preset--font-size--large);
  display: inline-block;
  vertical-align: middle;
  margin: 0;
}
.entry-comments .comment-list .comment-author a {
  color: var(--wp--preset--color--black);
  text-decoration: none;
}
.entry-comments .comment-list .comment-author .says {
  display: none;
}
.entry-comments .comment-list .comment-author .avatar {
  float: left;
  border-radius: 50%;
  margin-right: 8px;
}
.entry-comments .comment-list .comment-meta {
  padding-right: 54px;
}
.entry-comments .comment-list .comment-metadata {
  font-size: var(--wp--preset--font-size--tiny);
  margin-bottom: 16px;
}
.entry-comments .comment-list .comment-metadata a {
  color: var(--wp--preset--color--black);
  text-decoration: none;
}
.entry-comments .comment-list .comment-metadata a:hover {
  color: var(--wp--preset--color--primary);
}
.entry-comments .comment-list .comment-content p:last-child {
  margin: 0;
}
.entry-comments .comment-list .comment-reply-link {
  position: absolute;
  top: 32px;
  right: 16px;
  font-family: var(--wp--custom--typography--interface--font-family);
  letter-spacing: var(--wp--custom--typography--interface--letter-spacing);
  text-transform: var(--wp--custom--typography--interface--text-transform);
  font-size: var(--wp--preset--font-size--small);
}
.entry-comments .comment-list ol.children {
  margin: 0;
  padding: 0;
}

.comment-respond {
  margin: 30px 0;
}
@media (min-width: 782px) {
  .comment-respond {
    margin: 60px 0;
  }
}
.comment-respond .comment-form-cookies-consent input {
  width: auto;
}
.comment-respond .comment-form-cookies-consent input + label {
  display: inline;
}
.comment-respond label {
  display: block;
}

.nav-links {
  display: flex;
  justify-content: space-between;
}

/* ANchor menu */
.anchor-menu {
  padding: 10px 0;
}
.anchor-menu span {
  display: block;
  white-space: nowrap;
  line-height: 1;
  padding: var(--wp--custom--layout--nav-padding-y) var(--wp--custom--layout--nav-padding-x);
  text-transform: uppercase;
  min-width: 6%;
  margin-right: 1rem;
}
@media (min-width: 782px) {
  .anchor-menu span {
    padding: 10px 0 0 0;
    font-size: 18px;
  }
}
.anchor-menu .nav-inner {
  margin-block-end: 0 !important;
}
@media (min-width: 782px) {
  .anchor-menu .nav-inner {
    display: flex;
  }
}
.anchor-menu .menu {
  flex-wrap: wrap;
  max-width: 1200px;
}
.anchor-menu .menu a {
  padding: 10px var(--wp--custom--layout--nav-padding-x);
}
.anchor-menu .menu a:hover {
  color: var(--wp--preset--color--accent-3);
}
@media (max-width: 899px) {
  .anchor-menu .menu {
    display: flex;
  }
  .anchor-menu .menu .menu-item {
    width: 50%;
  }
}

/* WEEBLY CLEANUP */
.wsite-image img {
  display: inline-block;
}

/* Site Footer
---------------------------------------------------------------------------------------------------- */
.block-area-before-footer {
  padding: var(--wp--custom--layout--block-gap-large) var(--wp--custom--layout--padding);
}
.block-area-before-footer > * {
  max-width: var(--wp--custom--layout--wide);
}

.site-footer {
  background: var(--wp--preset--color--light);
  font-size: var(--wp--preset--font-size--small);
  position: relative;
}
.site-footer a {
  text-decoration: none;
  color: var(--wp--preset--color--black);
}
.site-footer a:hover {
  color: var(--wp--custom--color--link-hover);
}

.footer-top {
  padding: var(--wp--custom--layout--block-gap) 0;
}
.footer-top .footer-top-row1 {
  margin-bottom: 2rem;
  align-items: flex-end;
}
.footer-top .footer-top-row2 {
  align-items: center;
}

.footer-bottom {
  padding: var(--wp--custom--layout--block-gap) 0;
  background: white;
  text-align: center;
  font-size: var(--wp--preset--font-size--tiny);
}

@media (min-width: 783px) {
  .footer-contact {
    text-align: right;
  }
}
.footer-contact .address2 {
  display: block;
}
@media (min-width: 993px) {
  .footer-contact .address2 {
    display: inline;
    border-left: 2px solid var(--wp--preset--color--black);
    padding-left: 10px;
    margin-left: 5px;
  }
}

@media (min-width: 783px) {
  #footer-menu > li:first-child > a {
    padding-left: 0;
  }
}
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
  animation-delay: 0.2s;
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.slide-in-up {
  opacity: 0.5;
  transform: translateY(50px) translateZ(0);
  animation: slideInUp 0.6s ease-out forwards;
  backface-visibility: hidden;
  will-change: transform opacity;
}

.fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.8s ease-out forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.5s ease-out forwards;
  animation-delay: 0.5s;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.8s ease-out forwards;
}

.zoom-out {
  animation: zoomOut 0.8s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 1;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    transform: translateY(50px) translateZ(0);
    opacity: 0.5;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes zoomOut {
  from {
    transform: translateX(30px) scale(1.5);
  }
  to {
    transform: translateX(0) scale(1);
  }
}

/*# sourceMappingURL=main.css.map */
