@charset "UTF-8";
/**
 * 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
 *
**/
@import "vendor/splide-core.min.css";
.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%;
}

iframe {
  display: block;
}

/* Base grid wrapper */
.grid,
.loop-container {
  display: grid;
  gap: var(--wp--custom--layout--block-gap);
  grid-template-columns: 1fr;
}
@media (min-width: 501px) {
  .grid.grid-4,
  .loop-container.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid-5,
  .loop-container.grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid-6,
  .loop-container.grid-6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 782px) {
  .grid.grid-2,
  .loop-container.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid.grid-3,
  .loop-container.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid-4,
  .loop-container.grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid-5,
  .loop-container.grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid.grid-6,
  .loop-container.grid-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .grid.grid-4,
  .loop-container.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid-5,
  .loop-container.grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid.grid-6,
  .loop-container.grid-6 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .grid.grid-5,
  .loop-container.grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid.grid-6,
  .loop-container.grid-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 782px) {
  .cols {
    display: flex;
    gap: var(--wp--custom--layout--block-gap);
  }
}
.cols.cols-wrap {
  flex-wrap: wrap;
}
.cols.cols-auto {
  justify-content: space-between;
}
.cols.cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}
.cols.cols-3 > * {
  flex: 0 0 33.3%;
}
.cols.cols-2 > * {
  flex: 0 0 25%;
}
.cols.cols-4 > * {
  flex: 0 0 25%;
}

.col {
  flex: 1 1 100%;
}
@media (min-width: 782px) {
  .col {
    flex: 1;
  }
}

@media (min-width: 782px) {
  .col-50 {
    flex: 0 0 50%;
  }
  .col-75 {
    flex: 0 0 75%;
  }
  .col-25 {
    flex: 0 0 25%;
  }
  .col-33 {
    flex: 0 0 33.3%;
  }
  .col-offset {
    margin-left: auto;
  }
}
.mt-0 {
  margin-block-start: 0;
  margin-top: 0;
}

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

.card {
  border-radius: var(--wp--custom--layout--corners);
  background-color: var(--wp--preset--color--white);
  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: 100%;
    --wp--custom--layout--padding: 2rem;
  }
}
@media (min-width: 1600px) {
  :root {
    --wp--custom--layout--content: 1360px;
  }
}

/* Wrappers
--------------------------------------------- */
.site-container {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

.home .site-container {
  animation: fadeIn 1.5s ease-out forwards;
}

.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;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-left: var(--wp--custom--layout--padding);
  padding-right: var(--wp--custom--layout--padding);
  background-color: var(--wp--preset--color--primary);
}
@media (min-width: 782px) {
  .hero-section {
    height: auto;
    width: 100vw;
  }
}
@media (min-width: 992px) {
  .hero-section:not(.jumbo) {
    min-height: 400px;
    height: 50vh;
    max-height: 460px;
  }
}
@media (min-width: 1200px) {
  .hero-section:not(.jumbo) {
    max-height: 560px;
  }
}
@media (min-width: 1800px) {
  .hero-section:not(.jumbo) {
    height: 60vh;
    max-height: 600px;
  }
}
.hero-section:not(.jumbo) > *:last-child {
  margin-block-end: var(--wp--custom--layout--block-padding);
}
.hero-section.jumbo {
  min-height: 500px;
  min-height: calc(100vh - 95px);
  max-height: 100vh;
}
@media (min-width: 900px) {
  .hero-section.jumbo {
    min-height: calc(100vh - 127px);
  }
}
.hero-section.jumbo > *:last-child {
  margin-block-end: var(--wp--custom--layout--block-gap-large);
}
.hero-section:after {
  content: "";
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  z-index: 5;
}
.hero-section .hero-image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  z-index: 1;
  max-width: 100vw !important;
  object-fit: cover;
}
.hero-section .hero-content {
  z-index: 10;
  position: relative;
  width: 100%;
  color: white;
}
.hero-section .hero-content .hero-content-inner {
  max-width: 800px;
}
.hero-section .hero-content .hero-headline {
  color: #fff;
}
.hero-section .hero-content .hero-headline span {
  font-size: 0.68em;
  display: block;
}
.hero-section .hero-content *:last-child {
  margin-block-end: 0;
}

.single .hero-section .hero-content-inner {
  max-width: none;
}

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

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: 1199px) {
  :root {
    --wp--custom--layout--block-gap-large: 5rem;
  }
}
@media (max-width: 782px) {
  :root {
    --wp--custom--layout--block-gap-large: 3rem;
    --wp--custom--layout--block-padding: 2rem;
  }
}

:root {
  --wp--preset--color--foreground: var(--wp--preset--color--black);
  --wp--preset--color--accent-1: var(--wp--preset--color--light);
}

.wp-block-group,
.wp-block-columns,
.wp-block-media-text {
  position: relative;
}

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

.block-container > .custom-block.alignfull:not(.has-background),
.block-container > .wp-block-group.alignfull:not(.has-background) {
  padding: 0 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;
}

.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-end: var(--wp--custom--layout--block-gap-large);
}
.block-container > .alignfull.has-background:not(:first-child), .block-container > .alignfull.wp-block-cover:not(:first-child), .block-container > .custom-block:not(:first-child), .block-container > .wp-block-separator:not(:first-child), .block-container > .wp-block-group:not(:first-child), .block-container > .wp-block-columns.has-background:not(:first-child), .block-container > .wp-block-media-text:not(:first-child), .block-container > .wp-block-quote.has-background:not(:first-child), .block-container > .wp-block-pullquote.has-background:not(:first-child),
.block-container .big-block:not(:first-child),
.is-root-container > .alignfull.has-background:not(:first-child),
.is-root-container > .alignfull.wp-block-cover:not(:first-child),
.is-root-container > .custom-block:not(:first-child),
.is-root-container > .wp-block-separator:not(:first-child),
.is-root-container > .wp-block-group:not(:first-child),
.is-root-container > .wp-block-columns.has-background:not(:first-child),
.is-root-container > .wp-block-media-text:not(:first-child),
.is-root-container > .wp-block-quote.has-background:not(:first-child),
.is-root-container > .wp-block-pullquote.has-background:not(:first-child),
.is-root-container .big-block:not(:first-child),
.block-container .is-layout-constrained.alignfull > .alignfull.has-background:not(:first-child),
.block-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover:not(:first-child),
.block-container .is-layout-constrained.alignfull > .custom-block:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-separator:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-group:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-columns.has-background:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-media-text:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-quote.has-background:not(:first-child),
.block-container .is-layout-constrained.alignfull > .wp-block-pullquote.has-background:not(:first-child),
.block-container .is-layout-constrained.alignfull .big-block:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .alignfull.has-background:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .alignfull.wp-block-cover:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .custom-block:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-separator:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-group:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-columns.has-background:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-media-text:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-quote.has-background:not(:first-child),
.is-root-container .is-layout-constrained.alignfull > .wp-block-pullquote.has-background:not(:first-child),
.is-root-container .is-layout-constrained.alignfull .big-block:not(:first-child) {
  margin-block-start: var(--wp--custom--layout--block-gap-large);
}
.block-container > *:first-child.alignfull.has-background,
.is-root-container > *:first-child.alignfull.has-background,
.block-container .is-layout-constrained.alignfull > *:first-child.alignfull.has-background,
.is-root-container .is-layout-constrained.alignfull > *:first-child.alignfull.has-background {
  margin-block-start: 0;
}

.block-container > *:last-child.alignfull:not(.hero-section) {
  margin-block-end: 1rem;
}
.block-container > *:last-child:not(.alignfull) {
  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, .block-container > .hero-section.alignfull + .alignfull.has-background {
  margin-block-start: calc(-1 * var(--wp--custom--layout--block-gap-large));
}
.block-container > .alignfull.has-light-background-color + .alignfull.has-light-background-color, .block-container > .alignfull.has-white-background-color + .alignfull.has-white-background-color {
  margin-block-start: calc(-1.5 * var(--wp--custom--layout--block-gap-large));
}

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

.has-primary-background-color > *:not(.has-text-color):not(.has-background),
.has-foreground-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-primary-background-color a:not(.wp-block-button__link),
.has-foreground-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-primary-background-color a:not(.wp-block-button__link):hover, .has-primary-background-color a:not(.wp-block-button__link):active, .has-primary-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-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: 1em;
  margin-block-start: 0;
  -webkit-font-smoothing: antialiased;
}

h5 {
  font-weight: 600;
}

.post-type-post h2,
.single h2 {
  font-size: clamp(32px, 3.4vw, 38px);
}

.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 + .wp-block-media-text,
.wp-block-heading + .wp-block-group,
.wp-block-heading + .wp-block-columns,
.wp-block-heading + .custom-block,
.wp-block-heading + .has-background {
  margin-block-start: var(--wp--custom--layout--block-gap) !important;
}

/* Paragraphs + Lists
--------------------------------------------- */
p {
  margin-block-start: 30px;
  margin-block-end: 30px;
}

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

.wp-block-list li {
  margin-bottom: 10px;
}

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,
ul + h4,
ul + .wp-block-buttons,
ul + .wp-block-columns:not(.has-background),
ol + h3,
ol + h4,
ol + .wp-block-buttons,
ol + .wp-block-columns:not(.has-background),
p + h3,
p + h4,
p + .wp-block-buttons,
p + .wp-block-columns:not(.has-background),
.wp-block-buttons + h3,
.wp-block-buttons + h4,
.wp-block-buttons + .wp-block-buttons,
.wp-block-buttons + .wp-block-columns:not(.has-background) {
  margin-block-start: calc(1.3 * var(--wp--custom--layout--block-gap));
}

h4 + p,
h5 + p {
  margin-block-start: 0.8em !important;
}

@media (max-width: 1200px) {
  .has-medium-font-size {
    font-size: 1rem !important;
  }
}

ul.list-unstyled {
  list-style: none;
  padding: 0;
}
ul.list-unstyled li {
  margin-bottom: 5px;
}

/* 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 var(--wp--style--block-gap) var(--wp--style--block-gap) 0;
    max-width: 48vw;
  }
  .wp-block-image.alignright {
    float: right;
    margin: 10px 0 var(--wp--style--block-gap) var(--wp--style--block-gap);
    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
--------------------------------------------- */
@media (min-width: 1200px) {
  .wp-block-media-text {
    column-gap: 2rem;
  }
}
.wp-block-media-text .wp-block-media-text__media {
  position: relative;
  will-change: transform;
  aspect-ratio: 1/1.05;
  overflow: hidden;
}
.wp-block-media-text .wp-block-media-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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;
  }
}

.wp-block-column .wp-block-media-text {
  grid-template-columns: 100% !important;
  row-gap: 2rem;
  column-gap: 0;
  margin-block-start: var(--wp--custom--layout--block-padding);
}
.wp-block-column .wp-block-media-text.has-media-on-the-right .wp-block-media-text__media {
  grid-row: 1 !important;
  grid-column: 1 !important;
}
.wp-block-column .wp-block-media-text .wp-block-media-text__content {
  grid-row: 2 !important;
  grid-column: 1 !important;
}
.wp-block-column .wp-block-media-text:not(.has-background) .wp-block-media-text__content {
  padding: 0;
}
.wp-block-column .wp-block-media-text img {
  border-radius: var(--wp--custom--layout--corners) var(--wp--custom--layout--corners) 0 0 !important;
}
.wp-block-column .wp-block-media-text .wp-block-media-text__media {
  top: calc(-1 * var(--wp--custom--layout--block-padding)) !important;
  left: calc(-1 * var(--wp--custom--layout--block-padding)) !important;
  margin-bottom: -4rem;
  aspect-ratio: 4/3;
}

@media (max-width: 991px) {
  .wp-block-media-text.is-stacked-on-mobile {
    grid-template-columns: 100% !important;
    row-gap: 2rem;
    column-gap: 0;
  }
  .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.is-stacked-on-mobile:not(.has-background) .wp-block-media-text__content {
    padding: 0;
  }
  .wp-block-media-text.is-stacked-on-mobile 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 {
  filter: brightness(85%);
}

.wp-block-button:not(.is-style-outline):not(.is-style-fill) {
  align-self: stretch;
}

.wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link,
.wp-element-button.is-style-arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: var(--wp--preset--color--black);
  padding-left: 70px; /* padding for the space for the icon */
  padding-right: 30px;
  width: auto;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  transition: all 0.5s ease;
  z-index: 2;
  /* Expanding background (behind everything) */
}
.wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link::after,
.wp-element-button.is-style-arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  background-color: var(--wp--preset--color--primary);
  z-index: 0;
  transition: width 0.4s ease;
}
.wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link::before,
.wp-element-button.is-style-arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 100%;
  color: #fff;
  background-color: transparent !important;
  background-image: url(../icons/utility/arrow-right.svg);
  background-color: var(--wp--preset--color--primary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 28px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1; /* Stack above the background */
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .block-container .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link,
  .block-container .wp-element-button.is-style-arrow {
    /* Hover effects: expand background and shift arrow/text */
  }
  .block-container .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link:hover::after,
  .block-container .wp-element-button.is-style-arrow:hover::after {
    width: 100%;
    z-index: -1;
  }
  .block-container .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link:hover,
  .block-container .wp-element-button.is-style-arrow:hover {
    color: white;
    transform: translateX(3px);
    background: transparent;
    filter: none;
  }
  .block-container .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link:hover::before,
  .block-container .wp-element-button.is-style-arrow:hover::before {
    transform: translateX(6px);
  }
}

.has-primary-background-color .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link,
.has-primary-background-color .wp-element-button.is-style-arrow {
  color: white;
}
.has-primary-background-color .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link:hover,
.has-primary-background-color .wp-element-button.is-style-arrow:hover {
  color: var(--wp--preset--color--black);
}
.has-primary-background-color .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link::after,
.has-primary-background-color .wp-element-button.is-style-arrow::after {
  background-color: var(--wp--preset--color--secondary);
}
.has-primary-background-color .wp-block-button:not(.is-style-outline):not(.is-style-fill) .wp-block-button__link::before,
.has-primary-background-color .wp-element-button.is-style-arrow::before {
  filter: invert(1);
}

.wp-element-button.is-style-outline,
.wp-block-button.is-style-outline > .wp-block-button__link {
  border: 2px solid currentColor;
  padding: 18px 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);
}

.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);
}
.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);
}
.wp-block-file__button:not(.has-background):hover,
.wp-element-button.is-style-small:not(.has-background):hover,
.wp-block-button.is-style-small > .wp-block-button__link:not(.has-background):hover {
  background-color: var(--wp--preset--color--secondary);
}

.read-more {
  color: black;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--wp--preset--font-size--tiny);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: all 0.2s ease;
}
.read-more:hover {
  gap: 6px;
}

/* 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
--------------------------------------------- */
blockquote,
.wp-block-quote {
  border-radius: var(--wp--custom--layout--corners);
  font-family: var(--wp--preset--font-family--headings);
  position: relative;
  background: var(--wp--preset--color--white);
  border-top: 2px solid var(--wp--preset--color--tertiary);
  border-bottom: 2px solid var(--wp--preset--color--tertiary);
  padding: var(--wp--custom--layout--block-padding);
  padding-left: 5vw;
}
blockquote:before,
.wp-block-quote:before {
  content: "";
  background: url(../icons/quotes.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(-1 * var(--wp--custom--layout--block-padding));
  width: 50px;
  height: 50px;
}
@media (min-width: 782px) {
  blockquote:before,
  .wp-block-quote:before {
    width: 5vw;
    height: 5vw;
    left: -3vw;
    bottom: 0;
    top: 0;
    margin: auto;
  }
}
blockquote p,
.wp-block-quote p {
  font-size: var(--wp--preset--font-size--large);
  font-family: var(--wp--preset--font-family--headings);
  font-weight: 500;
}

.wp-block-pullquote {
  border-radius: var(--wp--custom--layout--corners);
  text-align: left;
  padding: 0;
}
.wp-block-pullquote cite {
  font-size: var(--wp--preset--font-size--small);
  text-transform: uppercase;
  font-style: normal;
  letter-spacing: 1px;
  text-align: right;
  font-weight: 600;
  color: var(--wp--preset--color--tertiary);
}
.wp-block-pullquote blockquote {
  margin-left: 3vw;
}
.wp-block-pullquote blockquote:after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: 100%;
  width: 50vw;
  background: var(--wp--preset--color--white);
  border-top: 2px solid var(--wp--preset--color--tertiary);
  border-bottom: 2px solid var(--wp--preset--color--tertiary);
}
.wp-block-pullquote.alignfull {
  background: var(--wp--preset--color--light);
}

/* Group
--------------------------------------------- */
.wp-block-group > * {
  position: relative;
  z-index: 2;
}
.wp-block-group:not(.alignfull) {
  border-radius: var(--wp--custom--layout--corners);
}
.wp-block-group::after {
  content: "";
  display: table;
  clear: both;
}
.wp-block-group > *:last-child {
  margin-block-end: 0 !important;
}

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

/* Hammer List
--------------------------------------------- */
ul.is-style-hammer {
  list-style: none;
  padding-left: 0;
}
ul.is-style-hammer li {
  position: relative;
  padding-left: 40px;
  padding-bottom: 1.8rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--wp--preset--color--light);
}
ul.is-style-hammer li:last-child {
  margin-bottom: 0;
}
@media (min-width: 783px) {
  ul.is-style-hammer li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
ul.is-style-hammer li::before {
  content: "";
  background: url(../icons/utility/hammer.svg) 0 0 no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 0.1em;
  transform: rotate(0);
  will-change: transform;
  backface-visibility: hidden;
  image-rendering: pixelated; /* or pixelated */
}
ul.is-style-hammer li.visible::before {
  animation: hammerBounce 0.3s ease-out forwards;
}

.has-light-background-color ul.is-style-hammer li {
  border-color: white;
}

/* 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--white);
  width: 32px;
  height: 32px;
}
ul.social-links a:hover svg {
  fill: var(--wp--preset--color--secondary);
}

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

/* Projects
--------------------------------------------- */
html.drawer-open {
  overflow: hidden !important;
}

.drawer {
  position: fixed;
  top: 50px;
  right: -100%;
  width: 95vw;
  max-width: 100vw;
  height: calc(100% - 50px);
  background: var(--wp--preset--color--light);
  transition: right 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  z-index: 1000;
  padding: 10px 10px 10px 0;
}
.drawer.open {
  right: 0;
}
.drawer .drawer-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: black;
}
@media (max-width: 781px) {
  .drawer .drawer-close {
    top: 5px;
    left: 5px;
  }
  .drawer .drawer-close svg {
    width: 30px;
  }
}
.drawer .drawer-content {
  overflow-y: scroll;
  height: 100%;
  padding: var(--wp--custom--layout--block-gap-large);
}

.project-portfolio {
  position: relative;
}
.project-portfolio > * {
  z-index: 2;
}
.project-portfolio .blueprint {
  z-index: 1;
  top: 50%;
}
.project-portfolio .blueprint.left {
  top: 80%;
}
.project-portfolio .post-preview {
  text-decoration: none;
  height: 100%;
}

.carousel {
  margin-left: auto;
  margin-right: 0 !important;
}
.carousel .card {
  background: var(--wp--preset--color--light);
}
.carousel .card-header {
  aspect-ratio: 1/1.2;
  overflow: hidden;
}
.carousel .card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .card-body {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  test-decoration: none;
  transition: opacity 0.4s ease;
}
.carousel .card-body h4 {
  text-align: center;
}
.carousel .card-body * {
  color: white;
}
.carousel .card-body:focus {
  outline: var(--focus-outline);
}
.carousel .card-body:hover {
  opacity: 1;
}
.carousel .splide__arrows {
  margin: 0 var(--wp--custom--layout--padding) 1rem 0;
}

.portfolio {
  visibility: visible;
}
.portfolio .card-header {
  background: var(--wp--preset--color--tertiary);
  aspect-ratio: 1.1/1;
  overflow: hidden;
}
.portfolio .card-header img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.portfolio .card-body {
  border: 2px solid var(--wp--preset--color--light);
  background: white;
  text-align: left;
}
.portfolio .post-preview:hover .read-more {
  gap: 6px;
}

.thumbnail-carousel {
  margin-top: 1rem;
}
.thumbnail-carousel ul {
  justify-content: center;
}

.gallery-slider img {
  max-height: calc(100vh - 240px);
  max-width: 100%;
  display: block;
  margin-inline: auto;
  object-fit: contain;
}

.logo-carousel .splide__slide {
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}
.logo-carousel .splide__slide img {
  max-height: 150px;
  width: auto;
}

.splide__arrows {
  text-align: right;
  margin: 0 0 1rem 0;
}
.splide__arrows .splide__arrow {
  background: none;
  border: 0;
  color: black;
}
.splide__arrows .splide__arrow.splide__arrow--next svg {
  transform: rotate(180deg);
}
.splide__arrows .splide__arrow:disabled {
  opacity: 0.2;
}

.splide:not(.is-overflow) .splide__list {
  justify-content: center;
}
.splide:not(.is-overflow) .splide__arrows {
  display: none !important;
}

.splide-static {
  visibility: visible;
  opacity: 1;
}
.splide-static .splide__arrows {
  display: none;
}
.splide-static .splide__list {
  gap: 3rem;
  justify-content: center;
}
.splide-static.portfolio .splide__list {
  justify-content: flex-start;
}
.splide-static .splide__slide {
  width: 33.3%;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-shrink: initial;
}

/* Team
--------------------------------------------- */
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.team-card {
  text-decoration: none;
  position: relative;
  transition: all 0.4s ease;
}
.team-card .card-body {
  padding: 1.5rem 0 0;
}
.team-card .card-header {
  position: relative;
  background: var(--wp--preset--color--primary);
  overflow: hidden;
}
.team-card span {
  font-size: var(--wp--preset--font-size--tiny);
  font-weight: 500;
  display: block;
  line-height: var(--wp--custom--line-height--small);
}
.team-card h4 {
  margin-bottom: 2px;
}
@media (max-width: 1200px) {
  .team-card h4 {
    font-size: var(--wp--preset--font-size--medium);
  }
}
@media (max-width: 501px) {
  .team-card h4 {
    font-size: 1.1rem;
  }
}
.team-card img {
  transition: all 0.5s ease;
  transform-origin: top;
}
.team-card .wp-element-button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding-right: 0;
  padding-left: 56px;
}
.team-card .wp-element-button:hover {
  transform: unset !important;
}
.team-card .wp-element-button:hover:after, .team-card .wp-element-button:hover:before {
  transform: none !important;
}

a.team-card:hover .wp-element-button {
  transform: translateX(10px);
}
a.team-card:hover img {
  transform: scale(1.04);
}

.team-drawer {
  height: 95vh;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 782px) {
  .team-drawer {
    height: 80vh;
  }
}

.bio {
  display: flex;
  gap: var(--wp--custom--layout--block-gap);
  align-items: flex-start;
  flex-direction: column;
}
@media (min-width: 782px) {
  .bio {
    flex-direction: row;
  }
  .bio img {
    max-width: 33%;
  }
}
@media (min-width: 1200px) {
  .bio {
    gap: var(--wp--custom--layout--block-gap-large);
  }
}
.bio h2 {
  margin-bottom: 1rem;
}

/* Featured Post Grid
--------------------------------------------- */
.featured-posts {
  position: relative;
}
.featured-posts:not(:last-child) {
  margin-block-end: var(--wp--custom--layout--block-gap);
}

.blog-card {
  background-color: var(--wp--preset--color--white);
  border: 2px solid var(--wp--preset--color--light);
}
.blog-card .card-header {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  padding: 0;
}
.blog-card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.blog-card time {
  font-size: var(--wp--preset--font-size--tiny);
  display: block;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--tertiary);
}

/* Parallax / GSAP
--------------------------------------------- */
@media (min-width: 782px) {
  .push-up {
    margin-top: calc(-2.2 * var(--wp--custom--layout--block-gap-large)) !important;
  }
  .wp-block-media-text.push-up,
  .offset-callout.push-up {
    margin-top: 0 !important;
  }
  .wp-block-media-text.push-up .wp-block-media-text__media,
  .offset-callout.push-up .wp-block-media-text__media {
    margin-top: calc(-2.2 * var(--wp--custom--layout--block-gap-large)) !important;
  }
}
.blueprint {
  position: absolute;
  right: -20vw;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blueprint.left {
  right: auto;
  left: -20vw;
}
.blueprint img {
  max-width: clamp(100%, 2000px, 80vw);
}

/* 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;
  margin: 0;
  outline: none;
  padding: 2rem 0 0.5em;
  position: relative;
  text-align: left;
  width: 100%;
  font-size: var(--wp--preset--font-size--medium);
}
@media (min-width: 782px) {
  .accordion-header {
    font-size: var(--wp--preset--font-size--large);
  }
}

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

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

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

.accordion-header:focus-visible .accordion-title {
  outline: 4px solid var(--wp--preset--color--secondary);
}

.accordion-icon {
  line-height: 0;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.5rem;
  font-size: 40px;
}
.accordion-icon:before {
  content: "+";
}

.accordion-header[aria-expanded=true] .accordion-icon:before {
  content: "–";
}

.accordion-content {
  margin: 0;
  padding: 0;
}
.accordion-content p:first-child {
  margin-block-start: 0;
}

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

.js .accordion-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.js .accordion-content.is-active {
  height: auto; /* but auto won't transition */
  opacity: 1;
}

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

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

/* Tabs
--------------------------------------------- */
.tab-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
  position: relative;
  white-space: nowrap;
}
.tab-list[aria-orientation=vertical] {
  display: flex;
  flex-direction: column;
  white-space: normal;
}
.tab-list[aria-orientation=vertical] .tab-item {
  display: block;
}
.tab-list[aria-orientation=vertical] .tab-item:last-of-type > [role=tab] {
  border-bottom-color: #777;
}
.tab-list[aria-orientation=vertical] .tab-item > [role=tab] {
  border-bottom-color: #fff;
  width: 100%;
}
.tab-list[aria-orientation=vertical] .tab-item.is-active > [role=tab] {
  border-right-color: #fff;
}

.tab-item {
  display: inline-block;
}
.tab-item > [role=tab] {
  border: 1px solid #777;
  display: inline-block;
  padding: 5px 8px;
  text-decoration: none;
  cursor: pointer;
}
.tab-item > [role=tab]:focus, .tab-item > [role=tab]:hover {
  background: #ccc;
  outline: none;
}
.tab-item.is-active > [role=tab] {
  background: #fff;
  border-bottom-color: #fff;
  position: relative;
  z-index: 1;
}

@media (min-width: 782px) {
  .tab-item > [role=tab] {
    padding: 10px 15px;
  }
}
.tabs-vertical {
  display: flex;
}
.tabs-vertical .tab-group {
  flex: 1;
  margin-left: -1px;
  margin-top: 0;
}

.tab-group {
  border: 1px solid #777;
  margin-top: -1px;
}

.tab-content {
  padding: 15px;
}
.tab-content[aria-hidden=true] {
  display: none;
}

/* Blog Post Grid
--------------------------------------------- */
@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));
  }
}

.contacts a {
  color: currentColor;
}
.contacts .contact-address,
.contacts .contact-email,
.contacts .contact-phone {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
  text-decoration: none;
}
.contacts .contact-address a,
.contacts .contact-email a,
.contacts .contact-phone a {
  text-decoration: none;
}

@media (min-width: 782px) {
  ul.two-columns {
    column-count: 2;
    gap: var(--wp--custom--layout--block-gap);
  }
}
@media (min-width: 1200px) {
  ul.two-columns {
    gap: var(--wp--custom--layout--block-gap-large);
  }
}

/* Popups
--------------------------------------------- */
.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;
}

/* Offset Callout
--------------------------------------------- */
.offset-callout {
  position: relative;
  background: none !important;
}
.offset-callout .inset-image {
  position: absolute;
  top: 35vw;
  right: 0;
  width: 60%;
  z-index: 99;
}
.offset-callout .inset-image img {
  aspect-ratio: 1.4/1;
  object-fit: cover;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .offset-callout .inset-image {
    width: 40%;
    top: 25%;
    left: 10%;
    right: auto;
  }
}
@media (min-width: 1200px) {
  .offset-callout .inset-image {
    top: 40%;
  }
}
.offset-callout .wp-block-media-text .wp-block-media-text__content {
  padding-top: 3vw;
}
.offset-callout .wp-block-media-text .wp-block-media-text__media {
  padding-bottom: 20vw;
}
.offset-callout .wp-block-media-text .wp-block-media-text__media img {
  width: 70%;
  aspect-ratio: 1/1; /* square */
  object-fit: cover; /* crop to fit square */
  height: auto;
  display: block;
}
.offset-callout .wp-block-media-text.has-media-on-the-right + .wp-block-acf-offset-callout-image .inset-image,
.offset-callout .wp-block-media-text.has-media-on-the-right + .inset-image {
  left: auto;
  right: 0;
}

.is-root-container .wp-block-acf-offset-callout-image {
  width: 100%;
  top: 40%;
  position: absolute;
}

.service-map {
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.service-map .map-svg {
  width: 100%;
  margin-block-start: 0;
  margin-block-end: 0;
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
  max-width: 70vw;
}
@media (min-width: 992px) {
  .service-map .map-svg {
    max-width: 75vw;
  }
}
@media (max-width: 782px) {
  .service-map .map-svg svg {
    margin-left: -30px;
  }
}
@media (min-width: 783px) {
  .service-map .map-svg svg {
    margin-right: -30px;
  }
}
@media (min-width: 1601px) {
  .service-map .map-svg svg {
    margin-right: -100px;
  }
}
.service-map .map-svg svg path {
  stroke: #24497e;
}
.service-map .map-svg svg .svg-label {
  fill: white;
  text-transform: uppercase;
  font-size: clamp(14px, 0.7vw, 20px);
  font-family: Arial, sans-serif;
  pointer-events: none;
  font-weight: 500;
  letter-spacing: 0.1;
}
@media (max-width: 782px) {
  .service-map .map-svg {
    max-width: 100vw;
    width: calc(100vw - 30px);
  }
}
@media (min-width: 783px) {
  .service-map .map-svg {
    margin-right: -30px !important;
    justify-content: flex-end;
    text-align: right;
    min-height: 400px;
  }
  .service-map .map-svg:before {
    content: "";
    bottom: 0;
    width: 25%;
    height: 100%;
    background: linear-gradient(to right, rgb(36, 73, 126) 0%, rgba(36, 73, 126, 0.99) 1%, rgba(36, 73, 126, 0) 100%);
    left: 0;
    top: 0;
    z-index: 10;
    position: absolute;
  }
  .service-map .map-svg:after {
    content: "";
    bottom: 0;
    width: 1000px;
    height: 100%;
    background: var(--wp--preset--color--primary);
    right: 100%;
    top: 0;
    z-index: 10;
    position: absolute;
  }
}
.service-map .map-svg #tooltip {
  position: absolute;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7vw;
  display: none;
  z-index: 1000;
  white-space: nowrap;
}
@media (max-width: 501px) {
  .service-map .map-svg.has-list {
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
  }
  .service-map .map-svg.has-list .highlight {
    fill: #315486 !important;
  }
  .service-map .map-svg.has-list .svg-label {
    display: none !important;
  }
}
.service-map .map-content {
  position: relative;
  z-index: 100;
  text-align: left;
  font-size: clamp(14px, 1.5vw, 16px);
}
.service-map .acf-innerblocks-container {
  padding: var(--wp--custom--layout--block-gap-large) 0 0;
}
@media (min-width: 783px) {
  .service-map .acf-innerblocks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    padding: var(--wp--custom--layout--block-gap-large) 0;
  }
}
.service-map .map-list {
  display: none;
}
@media (max-width: 501px) {
  .service-map .map-list {
    display: block;
    column-count: 2;
    column-gap: 2rem;
    font-size: 14px;
    margin: 2rem 0;
  }
  .service-map .map-list li {
    vertical-align: top;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    -webkit-break-inside: avoid;
    margin: 0;
    padding: 0;
  }
}

div[id^=rwl] {
  color: initial !important;
}

.rwlReviewContainer {
  line-height: 1.2;
  font-size: 15px;
}

.rwlJobLocations {
  margin-top: 3rem;
}

#rwl-map {
  padding-bottom: 25px;
}
#rwl-map .rwl-map-widget {
  max-width: 100% !important;
  min-width: 100% !important;
}

.rwlReviewContainer:hover {
  background: white !important;
}

#rwl-output {
  text-align: left;
}
#rwl-output .rwl-page-widget {
  max-width: 100% !important;
  min-width: 100% !important;
}

h2.rwl-neighborhood-header {
  color: white;
  font-size: var(--wp--preset--font-size--big) !important;
  font-family: var(--wp--preset--font-family--headings);
  font-weight: 400;
  margin-bottom: 1.5rem !important;
}

/* TIMELINE */
.timeline-main {
  position: relative;
  width: 100%;
  border-top: 3px solid var(--wp--preset--color--primary);
  border-bottom: 3px solid var(--wp--preset--color--primary);
  padding: 3rem 0;
}
.timeline-main .timeline {
  position: absolute;
  left: 30%;
  top: 0;
  transform: translateX(-50%);
  width: 10px;
  height: 100%;
  background: var(--wp--preset--color--light);
}
.timeline-main .timeline-inner {
  background: var(--wp--preset--color--primary);
  width: 100%;
  height: 100%;
  transform-origin: top center;
  transform: scaleY(0);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.timeline-main .box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  margin-bottom: 3rem;
}
.timeline-main .box-title {
  width: 30%;
  font-size: clamp(34px, 4.5vw, 68px);
  font-family: var(--wp--preset--font-family--headings);
  font-weight: 300;
  color: var(--wp--preset--color--primary);
}
.timeline-main .box-content {
  width: 70%;
  display: flex;
  align-items: center;
}
@media (min-width: 782px) {
  .timeline-main .box-content {
    font-size: var(--wp--preset--font-size--medium);
  }
}
@media (min-width: 1200px) {
  .timeline-main .box-content {
    font-size: 1.4rem;
  }
}
.timeline-main .box-content img {
  display: none;
}
@media (min-width: 782px) {
  .timeline-main .box-content img {
    display: block;
    aspect-ratio: 4/3;
    margin-left: 2rem;
  }
}
.timeline-main .dot {
  width: 32px;
  height: 32px;
  background-color: white;
  border: 3px solid var(--wp--preset--color--primary);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
  z-index: 2;
}
.timeline-main .dot.filled {
  background-color: var(--wp--preset--color--primary);
}

.js .timeline-main .box-content {
  opacity: 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;
}

/* LEAP Form */
.has-primary-background-color .jps-form-ui .jps-standard-fieldset label,
.has-primary-background-color .jps-form-ui .jps-standard-fieldset > label {
  color: white !important;
}
.has-primary-background-color .jps-form-ui .jps-form-buttons .btn-form-cancel {
  color: #ccc !important;
}

.jps-form-ui input::placeholder {
  color: #999 !important;
}
.jps-form-ui textarea::placeholder {
  color: #999 !important;
}

/* 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 {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--wp--preset--color--white);
  transform: none;
  transition: none;
  box-shadow: 0 0 19px rgba(0, 0, 0, 0.05);
}
@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;
}
@media (min-width: 901px) {
  .site-header .wrap {
    grid-template-columns: 250px 1fr; /* Fallback for IE */
    grid-template-columns: min(250px, 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;
  align-self: center;
}
@media (min-width: 901px) {
  .site-header__toggles {
    display: none;
  }
}

.home .site-header {
  position: absolute;
}

body.nav-stick .site-header {
  position: fixed;
  top: -60px; /* Off-screen to start */
  z-index: 999;
  transition: transform 0.5s ease;
}
body.nav-stick.nav-reveal .site-header {
  transform: translateY(60px); /* slide into view */
  transition: transform 0.5s ease;
}

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

.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;
  color: black;
}
.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 svg {
    width: 18px;
    height: 18px;
  }
  .nav-menu .submenu-expander.expanded .icon-chevron svg {
    transform: rotate(180deg);
  }
  .nav-menu .submenu-expander.expanded + .sub-menu {
    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: url(../images/blueprint-footer.webp) center center no-repeat var(--wp--preset--color--primary);
    background-size: 105% auto;
    right: 0;
    left: 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;
    justify-content: flex-start;
    padding: var(--wp--custom--layout--padding);
    width: 0;
  }
  .navbar.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    visibility: visible;
    width: 100%;
  }
}
@media (min-width: 901px) {
  .navbar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 10px;
  }
}

/* primary nav */
@media (min-width: 901px) {
  .nav-primary {
    margin-right: calc(-1 * var(--wp--custom--layout--nav-padding-x));
  }
}

@media (min-width: 901px) {
  #primary-menu {
    justify-content: space-between;
  }
}
@media (max-width: 900px) {
  #primary-menu > .menu-item.menu-item-has-children > a {
    margin-right: 50px;
  }
  #primary-menu > .menu-item .icon svg {
    fill: white;
  }
}
#primary-menu > .menu-item a {
  color: var(--wp--preset--color--white);
}
@media (min-width: 901px) {
  #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, #primary-menu > .menu-item.current-menu-ancestor > a, #primary-menu > .menu-item:hover > a {
    color: var(--wp--preset--color--primary);
  }
}

/* secondary nav */
.utility-menu {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 901px) {
  .utility-menu {
    justify-content: flex-end;
    background: var(--wp--preset--color--light);
    padding: 10px var(--wp--custom--layout--nav-padding-x);
    margin: 0;
  }
}
.utility-menu .header-phone {
  display: flex;
  text-decoration: none;
  gap: 5px;
  color: white;
  align-items: center;
}
@media (min-width: 901px) {
  .utility-menu .header-phone {
    color: black;
  }
}
.utility-menu .menu {
  display: flex;
  gap: 20px;
}
.utility-menu .menu a {
  padding: 0;
}
@media (min-width: 901px) {
  .utility-menu .menu {
    gap: 0;
  }
  .utility-menu .menu a {
    color: var(--wp--preset--color--black);
    padding: 5px var(--wp--custom--layout--nav-padding-x);
  }
  .utility-menu .menu a:hover {
    color: var(--wp--preset--color--tertiary);
  }
}

/* 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);
  }
}

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

.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--primary);
  border-radius: var(--wp--custom--border-radius--tiny);
  color: var(--wp--preset--color--primary);
  fill: var(--wp--preset--color--primary);
  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
---------------------------------------------------------------------------------------------------- */
/* 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;
}

.single p + h2 {
  margin-block-start: calc(var(--wp--custom--layout--block-gap) + 10px);
}

/* 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%;
  }
}

/* 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: url(../images/blueprint-footer.webp) center center no-repeat var(--wp--preset--color--primary);
  background-size: 60% auto;
  font-size: var(--wp--preset--font-size--small);
  position: relative;
  color: var(--wp--preset--color--white);
  z-index: 900;
}
.site-footer a {
  text-decoration: none;
  color: var(--wp--preset--color--white);
}
.site-footer a:hover {
  color: var(--wp--preset--color--secondary);
}

.footer-logo img {
  max-width: 215px;
}

.footer-top {
  padding: var(--wp--custom--layout--block-gap) 0;
}
.footer-top .footer-top-row1 {
  margin-bottom: 2rem;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 782px) {
  .footer-top .footer-top-row1 {
    flex-direction: row-reverse;
  }
}
.footer-top .footer-top-row2 {
  align-items: center;
  flex-direction: column;
}
@media (min-width: 782px) {
  .footer-top .footer-top-row2 {
    flex-direction: row;
  }
}

.footer-legal {
  font-size: var(--wp--preset--font-size--tiny);
}

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

@media (min-width: 783px) {
  #footer-menu {
    display: flex;
    flex-wrap: wrap;
  }
  #footer-menu > li:first-child > a {
    padding-left: 0;
  }
}

.social-links {
  justify-content: center;
}
@media (min-width: 783px) {
  .social-links {
    justify-content: flex-end;
  }
}

.footer-contact .contact-email {
  display: none;
}

html.js .hero-content,
html.js .home .hero-section {
  visibility: hidden;
}
html.js .home .site-header {
  margin-top: -95px;
}
@media (min-width: 900px) {
  html.js .home .site-header {
    margin-top: -127px;
  }
}
html.js .home .hero-section {
  height: 100vh;
}
html.js .animate {
  opacity: 0;
  transform: translateY(50px);
}

@keyframes hammerBounce {
  0% {
    transform: rotate(0deg);
  }
  70% {
    transform: rotate(60deg);
  }
  100% {
    transform: rotate(50deg);
  }
}
.kenburns {
  animation: kenburns 32s ease infinite;
  animation-direction: alternate;
}

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

.fade-out {
  opacity: 1;
  animation: fadeOut 0.2s ease-out forwards;
}

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    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);
  }
}
@keyframes kenburns {
  0% {
    transform-origin: bottom left;
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

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