@charset "UTF-8";
/*
  Made by Elly Loel - https://ellyloel.com/
  With inspiration from:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE

  Notes:
    - `:where()` is used to lower specificity for easy overriding.
*/
* {
  /* Remove default margin on everything */
  margin: 0;
  /* Remove default padding on everything */
  padding: 0;
  /* Calc `em` based line height, bigger line height for smaller font size and smaller line height for bigger font size: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  line-height: calc(0.25rem + 1em + 0.25rem);
}

/* Use a more-intuitive box-sizing model on everything */
*,
::before,
::after {
  box-sizing: border-box;
}

/* Remove border and set sensible defaults for backgrounds, on all elements except fieldset progress and meter */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* Allow percentage-based heights in the application */
  block-size: 100%;
  /* Making sure text size is only controlled by font-size */
  -webkit-text-size-adjust: none;
}

/* Smooth scrolling for users that don't prefer reduced motion */
html:focus-within {
  scroll-behavior: smooth;
}

body {
  /* Improve text rendering */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* Allow percentage-based heights in the application */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
}

/* Improve media defaults */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* Remove stroke and set fill colour to the inherited font colour */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* Remove built-in form typography styles */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* Change textarea resize to vertical only and block only if the browser supports that */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* Avoid text overflows */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  font-variation-settings: "wdth" 87.5;
}

/* Fix h1 font size inside article, aside, nav, and section */
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* More readable underline style for anchor tags without a class. This could be set on anchor tags globally, but it can cause conflicts. */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make it clear that interactive elements are interactive */
:where(a[href], area, button, input, label[for], select, summary, textarea) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* Animate focus outline */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 1px;
}

/* Make sure users can't select button text */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
  background-color: transparent;
}

/* Disabled cursor for disabled buttons */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

address {
  font-style: normal;
}

:root {
  overscroll-behavior: none;
}

::selection {
  background-color: var(--wp--preset--color--pale-citron); /* Highlight color */
  color: #ffffff; /* Text color */
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.sr-only:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #185571;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#main-content[tabindex="-1"]:focus {
  outline: 0;
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.navigate_site-skip-link {
  font-family: var(--wp--preset--font-family--noto-sans-serif);
  font-weight: 600;
  color: var(--wp--preset--color--uni-primary-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  font-size: var(--wp--preset--font-size--body-high);
  line-height: 1.25;
  display: block;
  padding-left: max(var(--wp--custom--layout--padding), env(safe-area-inset-left));
  padding-right: max(var(--wp--custom--layout--padding), env(safe-area-inset-right));
  padding-top: max(var(--wp--custom--layout--padding), env(safe-area-inset-top));
  padding-bottom: max(var(--wp--custom--layout--padding), env(safe-area-inset-bottom));
}

.navigate_site-skip-link:not(:active):not(:focus) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.navigate_site-skip-link:focus {
  outline: 3px solid var(--wp--preset--color--glitch-gold);
  outline-offset: 0;
  background-color: var(--wp--preset--color--glitch-gold);
}

/* --Hover Mixin.--*/
/* -- Cross browser opacity.--*/
/* -- Animation.--*/
/**
 * Placeholder Color
 *
 */
/* ==========================================================================
   #Site Global Sizes
   ========================================================================== */
/**
 * This shall stop the z-index chaos
 */
/*--------------------------------------------------------------
# Animation Control
--------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@-o-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  60% {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
  }
}
.arrow-down svg {
  -webkit-animation: bounce 3s infinite;
  -moz-animation: bounce 3s infinite;
  -ms-animation: bounce 3s infinite;
  -o-animation: bounce 3s infinite;
  animation: bounce 3s infinite;
}

/*
.site-header {
	 @include menu-animation;
	    animation-duration: 0.5s;
	    animation-fill-mode: both;
	    will-change: transform, opacity;

		&.floating-head-fixed_scrolled,
	  	&.header-up {
	    animation-name: slideDown;
	  }

	  &.header-down {
	    animation-name: slideUp;
	  }
}*/
@-webkit-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-moz-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-ms-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-o-keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-moz-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-ms-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@-o-keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.site-header {
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
@media (min-width: 46.25em) {
  .site-header.floating-head-fixed_scrolled, .site-header.header-up {
    animation-name: slideDown;
  }
  .site-header.header-down {
    animation-name: slideUp;
  }
}

/* Lazy Loading
   ===========================================================*/
/* fade image in after load */
.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  -webkit-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 450ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

@-webkit-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  to {
    opacity: 1;
  }
}
.swiper-slide-active .hero-slider__desc,
.element-fadein {
  opacity: 0;
  -webkit-animation: fadein 450ms .5s ease forwards;
  -moz-animation: fadein 450ms .5s ease forwards;
  -ms-animation: fadein 450ms .5s ease forwards;
  -o-animation: fadein 450ms .5s ease forwards;
  animation: fadein 450ms .5s ease forwards;
}

/*--------------------------------------------------------------
# Images
--------------------------------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Offset `alt` text from surrounding copy.
 * 3. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 * 4. Rezise height for responsive images.
 */
/* Start hidden */
img {
  max-width: 100%; /* [1] */
  font-style: italic; /* [2] */
  vertical-align: middle; /* [3] */
  height: auto; /* [3] */
}

.no-squish {
  flex: none;
}

.has-background .wp-block-image.img-background-transparent > img {
  mix-blend-mode: multiply;
}

.media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

svg {
  fill: currentColor;
}

.main-btn svg {
  pointer-events: none;
}

.filled-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curved-image {
  border-radius: 0.75rem;
}

.no-shrink {
  flex-shrink: 0;
}

/* SVG Sizing
========================================================================== */
.inline-text-icon {
  display: inline-block;
}

/* Hide SVG Region
   ========================================================================== */
.svg-region {
  display: none;
}

.icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.svg-icon {
  width: 1em;
  height: 1em;
  position: relative;
  top: 0;
}

/*--------------------------------------------------------------
# Clearing
--------------------------------------------------------------*/
.clear::after {
  display: block;
  content: "";
  clear: both;
}

/*--------------------------------------------------------------
# Useful Classes
--------------------------------------------------------------*/
.f-width {
  width: 100%;
}

.f-height {
  height: 100%;
}

.pos-rel {
  position: relative;
}

.is-block {
  display: block;
}

.no-list {
  list-style: none;
  padding: 0;
}

.index-z-1 {
  z-index: 1;
}

.has-text-c {
  text-align: center;
}

:is(.no-flex, .no-flex.wp-element-button) {
  display: inline-flex;
}

@media (max-width: 61.24em) {
  .mobile-touch-hide {
    display: none;
  }
}

html, body {
  height: 100%;
}

html {
  height: -webkit-fill-available;
}

body.slide-menu-active {
  overflow: hidden;
}

body {
  min-height: 100vh;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
}

.g-wrap {
  display: grid;
}

.safe-svg-cover {
  align-items: center;
  display: flex;
}

.safe-svg-cover {
  text-align: center;
}

.safe-svg-cover .safe-svg-inside {
  display: inline-block;
  max-width: 100%;
}

.safe-svg-cover svg {
  fill: currentColor;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  width: 100%;
}

/* Card Links
--------------------------------------------- */
.card-link a[href]::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* cancel it for groups inside a card */
.card-link :where(.wp-block-group.wp-block-group-is-layout-constrained) {
  position: unset; /* or unset */
}

/* make only the card container relative */
.card-link > .wp-block-post,
.card-link {
  position: relative;
}

/* CSS pseudo-element styling */
/* Home Page Hero
--------------------------------------------- */
.hero-banner-cover {
  min-height: 50vh;
}

.hero-banner-cover > .wp-block-cover__inner-container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-banner-cover > .wp-block-cover__inner-container > .wp-block-group.alignfull {
  flex: 1 1 auto;
}

.project-card-link {
  text-decoration: none;
}

/* Figure container */
.content-scroller__card > .project-card-link > .wp-block-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--wp--custom--border-radius--default);
  margin: 0 0 1em;
}

/* Image base state – always smooth */
.project-card-link:hover .wp-block-image > img,
.wp-post-image {
  transition: transform 500ms cubic-bezier(0.16, 0.01, 0.77, 1);
}

/* Image hover – scale up */
.project-card-link:hover .wp-block-image > img,
.project-card-link:hover .wp-post-image {
  transform: scale(1.05);
  text-decoration: underline;
}

.project-card-link:hover .has-text-color {
  text-decoration: underline;
}

/* Icon styles – these are correct */
.hover-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  color: white;
  width: 93px;
  height: 87px;
  z-index: 2;
  pointer-events: none;
}

.hover-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Icon hover – fade in and scale up */
.project-card-link:hover .hover-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.5);
}
@media (min-width: 61.25em) {
  .project-card-link:hover .hover-icon {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* =========================
   LOADER OVERLAY
========================= */
body.is-loading {
  overflow: hidden;
}

#main-content {
  opacity: 0;
  transition: opacity 0.8s ease;
}

#main-content.is-visible {
  opacity: 1;
}

#site-loader {
  position: fixed;
  inset: 0;
  background-color: var(--wp--preset--color--hyper-blue);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Fade out state */
#site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Inner container (for subtle motion) */
.loader-inner {
  transform: translateY(0);
  animation: loaderFloat 1.8s ease-in-out infinite;
}

/* SVG styling */
.loader-svg {
  width: 80px;
  height: 80px;
}

.loader-svg circle {
  fill: none;
  stroke: var(--wp--preset--color--hot-coral);
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: loaderDraw 1.4s ease-in-out infinite;
}

/* Drawing animation */
@keyframes loaderDraw {
  0% {
    stroke-dashoffset: 220;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -220;
  }
}
/* Subtle float */
@keyframes loaderFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
#venue-cta > .wp-block-group,
#countdown > .wp-block-group {
  z-index: 1010;
  bottom: -100px;
  position: relative;
}

#brand-explode {
  position: relative;
}

#brand-explode > * {
  transition: transform 0.8s ease, opacity 0.6s ease;
  will-change: transform;
}

/* optional polish */
#brand-explode.is-exploded > * {
  z-index: 2;
}

:root {
  --desktop-header-height: 40px;
  --mobile-header-height: 100px;
  --search-radius: 30px;
  --desktop-title-height: 80px;
  --mobile-title-height: 70px;
}

/* === Site Header Title & Structure === */
.site-header {
  position: absolute;
  width: 100%;
  z-index: 1015;
}
@media (max-width: 61.24em) {
  .site-header {
    max-height: 100vh;
    overflow-y: auto;
    overscroll-behavior-y: contain;
  }
}

.site-header > .site-header__upper {
  padding-top: max(var(--wp--custom--layout--header-padding), env(safe-area-inset-top));
  padding-bottom: max(var(--wp--custom--layout--header-padding), env(safe-area-inset-bottom));
}

.site-header__upper.g-wrap {
  padding-top: var(--wp--preset--spacing--40-80-flex);
  display: flex;
  justify-content: space-between;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "header-logo header-logo  . .  header-nav-open header-upper-buttons";
}
@media (min-width: 61.25em) {
  .site-header__upper.g-wrap {
    display: grid;
    grid-column-gap: 0;
    grid-column-gap: var(--wp--custom--layout--block-gap);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "header-logo .  . . . header-box";
    padding-right: var(--wp--preset--spacing--gutter-gap);
    padding-left: var(--wp--preset--spacing--gutter-gap);
  }
}
@media (max-width: 61.24em) {
  .site-header__upper.g-wrap {
    grid-row-gap: 0;
  }
}

.mobile-nav.is-layout-flex {
  justify-content: flex-end;
}
@media (min-width: 61.25em) {
  .mobile-nav.is-layout-flex {
    display: none;
  }
}

.mobile-nav.is-layout-flex > .menu-toggle--mini.menu-icon-open .menu-icon-close,
.mobile-nav.is-layout-flex > .menu-toggle--mini .menu-icon {
  display: block;
}

.mobile-nav.is-layout-flex > .menu-toggle--mini.menu-icon-open .menu-icon,
.mobile-nav.is-layout-flex > .menu-toggle--mini .menu-icon-close {
  display: none;
}

.site-header .navigate-logo {
  grid-area: header-logo;
  width: auto;
  margin-right: 0;
  max-width: 110px;
  align-items: center;
}
@media (min-width: 61.25em) {
  .site-header .navigate-logo {
    width: auto;
    max-width: 163px;
    grid-area: header-logo;
    margin-right: 0;
  }
}

.site-header .navigate-box {
  grid-area: header-box;
  width: auto;
  margin-right: 0;
  max-width: 21px;
  align-items: center;
  place-self: end;
}
@media (min-width: 61.25em) {
  .site-header .navigate-box {
    width: auto;
    max-width: 28px;
    grid-area: header-box;
    margin-left: auto;
  }
}

/* === Admin Bar === */
@media (min-width: 61.25em) {
  .admin-bar .site-container {
    padding-top: 32px;
  }
}

@media (max-width: 61.24em) {
  #wpadminbar {
    display: none !important;
  }
}

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@keyframes pulse {
  0%, 100% {
    fill: #DB1A72;
  }
  50% {
    fill: #047E8B;
  }
}
.location-arrow {
  animation: pulse 3.5s infinite;
}

/* Site Footer --------------------------------- */
.site-footer {
  background: url(../footer/footer-behind.optimized.svg) no-repeat center;
  background-size: cover;
  background-position: left center;
}

.site-footer__upper {
  padding-top: var(--wp--preset--spacing--40-80-flex);
  color: var(--wp--preset--color--base);
}

.site-footer__lower {
  font-size: var(--wp--preset--font-size--x-small);
  padding-bottom: var(--wp--preset--spacing--40-80-flex);
  color: var(--wp--preset--color--industrial-grey);
}

.site-footer__lower.g-wrap {
  grid-template-columns: 1fr;
}
@media (min-width: 61.25em) {
  .site-footer__lower.g-wrap {
    display: grid;
    padding-left: var(--wp--custom--layout--gutter-gap);
    padding-right: var(--wp--custom--layout--gutter-gap);
    grid-column-gap: var(--wp--custom--layout--gutter-gap);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.site-footer__upper.g-wrap {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 61.25em) {
  .site-footer__upper.g-wrap {
    display: grid;
    padding-left: var(--wp--custom--layout--gutter-gap);
    padding-right: var(--wp--custom--layout--gutter-gap);
    grid-column-gap: var(--wp--custom--layout--gutter-gap);
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

.site-footer .zen-logo {
  align-items: flex-start;
  grid-area: zen-logo;
  max-width: 123px;
}
@media (min-width: 61.25em) {
  .site-footer .zen-logo {
    max-width: 180px;
    width: auto;
    grid-area: zen-logo;
    margin-right: 0;
  }
}

.site-footer .zen-box {
  place-self: end;
  grid-area: zen-box;
  max-width: 24px;
}
@media (min-width: 61.25em) {
  .site-footer .zen-box {
    max-width: 37px;
    width: auto;
    grid-area: zen-box;
    margin-right: 0;
  }
}

.site-footer__upper.g-wrap {
  grid-template-areas: "zen-logo zen-box";
}
@media (min-width: 61.25em) {
  .site-footer__upper.g-wrap {
    grid-template-areas: "zen-logo zen-logo . . . . . . . . . zen-box";
  }
}

.site-footer__lower.g-wrap {
  margin-top: var(--wp--custom--layout--gutter-gap);
}
@media (min-width: 61.25em) {
  .site-footer__lower.g-wrap {
    grid-template-areas: "footer-credits footer-credits footer-credits . . footer-meta-nav footer-meta-nav footer-meta-nav footer-meta-nav footer-meta-nav footer-meta-nav footer-meta-nav";
  }
}

.footer-credits {
  order: 1;
}
@media (min-width: 61.25em) {
  .footer-credits {
    grid-area: footer-credits;
    text-align: left;
    order: 1;
  }
}

.footer-meta-nav {
  order: 2;
  list-style: none;
}
@media (min-width: 61.25em) {
  .footer-meta-nav {
    grid-area: footer-meta-nav;
    text-align: right;
    order: 2;
    display: flex;
    place-content: end;
    align-items: end;
  }
}

@media (min-width: 61.25em) {
  .footer-meta-nav li:not(:last-child) {
    border-right: 1px solid var(--wp--preset--color--base);
    margin-right: 13px;
    padding-right: 13px;
  }
}
.site-footer {
  color: var(--wp--preset--color--base);
  font-size: var(--wp--preset--font-size--small);
}

.site-footer a:not(.zen-logo) {
  color: var(--wp--preset--color--hot-coral);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
}
.site-footer a:not(.zen-logo):hover, .site-footer a:not(.zen-logo):focus {
  text-decoration: underline;
}
.site-footer a:not(.zen-logo):focus {
  outline: 2px solid inherit;
}

.arrow-link {
  position: relative;
  padding-right: 20px;
}

.arrow-link::after {
  content: "";
  width: 13px;
  height: 8px;
  position: absolute;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTMgOCI+PHBhdGggZmlsbD0iI2ZmNWM3YyIgZD0iTTEyLjg2IDMuODEuMzQuMDFDLjEtLjA2LS4xLjIzLjA2LjQzbDIuNjUgMy40M2MuMDYuMDguMDYuMiAwIC4yOEwuMDYgNy41N2MtLjE2LjIuMDQuNDkuMjguNDJMMTIuODYgNC4yYy4xOS0uMDYuMTktLjMzIDAtLjM5Ii8+PC9zdmc+);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}

:root {
  --panel-desktop-width: 720px;
}

/*--------------------------------------------------------------
# Navgitaion
--------------------------------------------------------------*/
.header-navigation {
  position: relative;
}

.search-btn:hover .search-icon {
  animation: rotate 0.5s ease-in-out forwards;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(20deg); /* Adjust the degree of rotation as needed */
  }
}

/* Define the keyframes for the reverse rotation */
@keyframes rotate-back {
  from {
    transform: rotate(20deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* keep base hidden state */
.header-navigation_list li,
.header-navigation_list a,
.header-navigation_list .nav-btn {
  transform: translateX(-20px);
  opacity: 0;
  transition: transform 920ms ease, opacity 920ms ease;
  transition-delay: 0ms;
  will-change: transform, opacity;
}

/* only reveal items when the panel has finished opening */
.slide-menu.panel-opened .header-navigation_list li,
.slide-menu.panel-opened .header-navigation_list a,
.slide-menu.panel-opened .header-navigation_list .nav-btn {
  transform: translateX(0);
  opacity: 1;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .header-navigation_list li,
  .header-navigation_list a {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.header-navigation_list li:not(:last-child) {
  margin-bottom: 8px;
}

.header-navigation {
  padding-top: clamp(60px, 3.75rem + (1vw - 3.2px) * 2.4194, 90px);
}

.header-navigation a {
  font-size: var(--wp--preset--font-size--intro-hero);
  text-decoration: none;
}

.header-navigation li a::before {
  content: "•";
  opacity: 0;
  margin-right: 0;
  transition: all 0.3s;
}

.header-navigation li a:hover::before {
  opacity: 1;
  margin-right: 8px;
}

.slide-menu .close-menu-btn {
  margin-left: auto;
}

html.mini-menu-active,
html.slide-menu-active {
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: hidden !important;
}
@media (min-width: 46.25em) {
  html.mini-menu-active,
  html.slide-menu-active {
    position: relative;
  }
}

/* === Overlay and Slide Navigation === */
@keyframes layerfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes layerfadeout {
  100% {
    opacity: 0;
  }
  0% {
    opacity: 0.8;
  }
}
.menu-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background: var(--wp--preset--color--obsidian-teal);
  z-index: 1020;
  transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  animation: layerfadeIn 0.2s;
}

.menu-overlay.visible {
  opacity: 0.8;
  visibility: visible;
  display: block;
}

.slide-panel {
  color: var(--wp--preset--color--deep-teal);
  display: block;
  min-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  border: none;
  transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: var(--wp--preset--color--pale-citron);
  min-width: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  transition-delay: 0.3s;
  z-index: 1030;
  padding-left: max(var(--wp--style--root--padding-left), env(safe-area-inset-left));
  padding-right: max(var(--wp--style--root--padding-right), env(safe-area-inset-right));
  padding-top: max(16px, env(safe-area-inset-top));
  padding-bottom: max(var(--wp--custom--layout--vertical-layout-padding), env(safe-area-inset-bottom));
}
@media (min-width: 46.25em) {
  .slide-panel {
    padding-top: max(var(--wp--custom--layout--vertical-layout-padding), env(safe-area-inset-top));
    min-width: var(--panel-desktop-width);
    width: var(--panel-desktop-width);
  }
}

.header-global-navigation .close-menu-btn {
  justify-content: flex-end;
}
@media (min-width: 61.25em) {
  .header-global-navigation .close-menu-btn {
    display: none;
  }
}

.slide-panel.right-panel {
  transform: translate3d(100%, 0, 0);
  right: 0;
}

.header-global-navigation.slide-panel.left-panel[aria-hidden=false],
.slide-menu.slide-panel.right-panel[aria-hidden=false] {
  transform: translate3d(0, 0, 0);
}

@media (min-width: 46.25em) {
  .slide-menu .close-menu-btn {
    display: block;
  }
}

.slide-menu__header {
  justify-content: flex-end;
  flex-wrap: nowrap;
  width: 100%;
}

.slide-menu__header__title {
  font-size: var(--wp--preset--font-size--body-high);
  font-family: var(--wp--preset--font-family--noto-sans-serif);
  font-weight: 500;
  font-variation-settings: "wdth" 87.5;
}
@media (min-width: 46.25em) {
  .slide-menu__header__title {
    padding-right: 55px;
  }
}

.slide-menu__header .wp-block-button.is-style-pill .bg-slide {
  background-color: var(--wp--preset--color--dusty-lemon);
}

.is-style-pill.wp-block-button > .wp-block-button__link.has-deep-teal-background-color:hover {
  color: var(--wp--preset--color--deep-teal);
}

/* ==========================================================================
   #DEFAULT FORM LAYOUTS
   ========================================================================== */
.wp-front p.formidable-recaptcha-privacy {
  display: none;
}
.wp-front .is-layout-constrained > .frm_forms {
  max-width: var(--wp--style--global--wide-size);
}
.wp-front .frm_form_fields .frm_fields_container {
  column-gap: var(--wp--custom--layout--gutter-gap);
}
.wp-front fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.wp-front .contact-form-boxes .frm_form_fields .frm_fields_container {
  min-width: 0;
}
.wp-front .frm_submit {
  justify-content: flex-end;
}
.wp-front .form-field {
  margin-bottom: var(--wp--custom--layout--block-gap);
}
.wp-front label {
  color: var(--wp--preset--color--obsidian-teal);
  font-family: var(--wp--preset--font-family--noto-sans-serif);
  font-variation-settings: "wdth" 87.5;
  font-weight: var(--wp--custom--font-weight--semi-bold);
  font-size: var(--wp--preset--font-size--nav-size);
  /*margin-bottom: math.div($nav-item-gap, 2);*/
  text-align: left;
  width: 100%;
  display: block;
  margin-bottom: var(--wp--custom--form-spaces--input-padding-top);
}
.wp-front textarea,
.wp-front input[type=date],
.wp-front input[type=datetime],
.wp-front input[type=datetime-local],
.wp-front input[type=email],
.wp-front input[type=month],
.wp-front input[type=password],
.wp-front input[type=tel],
.wp-front input[type=time],
.wp-front input[type=url],
.wp-front input[type=week],
.wp-front select:not(.filter-select),
.wp-front input[type=text]:not(.filter-search-input) {
  background-color: var(--wp--preset--color--border-grey-container);
  border: 1px solid var(--wp--preset--color--border-grey);
  color: var(--wp--preset--color--obsidian-teal);
  padding-top: var(--wp--custom--form-spaces--input-padding-top);
  padding-bottom: var(--wp--custom--form-spaces--input-padding-top);
  padding-left: var(--wp--custom--form-spaces--input-padding-side);
  padding-right: var(--wp--custom--form-spaces--input-padding-side);
  border-radius: var(--wp--custom--border-radius--medium);
  font-size: var(--wp--preset--font-size--small);
}
.wp-front textarea {
  height: initial;
}
.wp-front textarea,
.wp-front input[type=date],
.wp-front input[type=datetime],
.wp-front input[type=datetime-local],
.wp-front input[type=email],
.wp-front input[type=month],
.wp-front input[type=password],
.wp-front input[type=tel],
.wp-front input[type=time],
.wp-front input[type=url],
.wp-front input[type=week],
.wp-front select:not(.filter-select):not(.auto_width),
.wp-front input[type=text]:not(.filter-search-input) {
  width: 100%;
}
.wp-front textarea {
  height: initial;
}
.wp-front input[readonly] {
  opacity: 0.5;
}
.wp-front ::-webkit-input-placeholder {
  font-size: var(--wp--preset--font-size--body-hig);
}
.wp-front ::-webkit-input-placeholder {
  /*color: $intro-text-grey;*/
}
.wp-front :-moz-placeholder {
  font-size: var(--wp--preset--font-size--body-hig);
}
.wp-front :-moz-placeholder {
  /*color: $intro-text-grey;*/
}
.wp-front ::-moz-placeholder {
  font-size: var(--wp--preset--font-size--body-hig);
}
.wp-front ::-moz-placeholder {
  /*color: $intro-text-grey;*/
}
.wp-front :-ms-input-placeholder {
  font-size: var(--wp--preset--font-size--body-hig);
}
.wp-front :-ms-input-placeholder {
  /*color: $intro-text-grey;*/
}
.wp-front .frm_dropzone .dz-message {
  border-radius: var(--wp--custom--border-radius--small);
}
.wp-front .frm_dropzone.frm_single_upload {
  width: 100%;
  max-width: 100%;
}
.wp-front .frm_dropzone.dz-clickable .dz-message > .frmsvg {
  width: 35px;
  color: var(--wp--preset--color--border-grey);
}
.wp-front input[type=submit],
.wp-front .frm_final_submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px var(--wp--preset--spacing--14-20);
  color: var(--wp--preset--color--white);
  background-color: var(--wp--preset--color--blue-sapphire);
  border-radius: var(--wp--custom--border-radius--small);
  font-family: var(--wp--preset--font-family--inter-sans-serif);
  font-size: var(--wp--preset--font-size--body-copy);
  font-style: normal;
  font-weight: 600;
}

.is-layout-constrained > .alignwide {
  width: 100%;
}

@media (max-width: 46.24em) {
  .mobile-order-1 {
    order: 1;
  }
  .mobile-order-2 {
    order: 2;
  }
  .mobile-full-bleed {
    border-right: none !important;
    border-left: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .mobile-center {
    flex-direction: column;
    justify-content: center;
  }
  .mobile-stacking {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-hide {
    display: none;
    visibility: hidden;
  }
  .mobile-space-border-strip {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-left: 0;
    border-right: 0;
  }
}
@media (max-width: 61.24em) {
  .mobile-tablet-hide {
    display: none;
    visibility: hidden;
  }
}
.hide-element {
  display: none !important;
}

.height-100-percent {
  height: 100%;
}

.height-100-percent > img {
  height: inherit;
}

.width-100-percent,
.width-100-percent > :is(div, section, article, main, aside, header, footer, nav):not(.wp-block-safe-svg-svg-icon) {
  width: 100%;
}

.width-100-percent.wp-block-image > img {
  width: 100% !important;
}

.grid-htag-center.is-layout-grid > .wp-block-heading.has-text-align-center {
  place-content: center;
}

@media (max-width: 46.24em) {
  .wp-block-group.alignwide.is-layout-grid.wp-block-group-is-layout-grid,
  .wp-block-group-is-layout-grid.wp-block-group.alignwide {
    grid-template-columns: 1fr;
  }
}
/* Equal columns with a vertical divider */
@media (min-width: 46.25em) {
  .is-layout-flex .column-right {
    margin-left: auto;
  }
}
.wp-block-list {
  padding-left: var(--wp--preset--spacing--9-12-flex);
}

/* Heading
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-end: var(--wp--style--block-gap);
  font-variation-settings: "wdth" 87.5;
}

h3 > a {
  color: inherit;
  text-decoration: none;
}
h3 > a:hover, h3 > a:focus {
  text-decoration: underline;
}
h3 > a:focus {
  outline: 2px solid inherit;
}

#adminmenu .wp-menu-image img {
  opacity: 1 !important;
}

.inner-row-title {
  font-size: var(--wp--preset--font-size--x-large);
}

/* text
--------------------------------------------- */
.wp-block-heading a {
  text-decoration: none;
}
.wp-block-heading a:hover, .wp-block-heading a:focus {
  text-decoration: underline;
}
.wp-block-heading a:focus {
  outline: 2px solid inherit;
}

.has-medium-heading-font-size {
  line-height: clamp(29px, 1.8125rem + (1vw - 3.2px) * 0.8871, 40px);
}

/* Default Videos
--------------------------------------------- */
.wp-block-column iframe[src^="https://uol.cloud.panopto.eu/Panopto/"],
.wp-block-embed.is-type-video > .wp-block-embed__wrapper > iframe,
.wp-block-video video {
  border-radius: var(--wp--custom--border-radius--default);
}

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

.wp-block-image figcaption {
  font-size: var(--wp--preset--font-size--small);
  text-align: center;
}
@media (min-width: 46.25em) {
  .wp-block-image.alignleft {
    float: left;
    margin: var(--wp--style--block-gap) var(--wp--style--block-gap) var(--wp--style--block-gap) 0;
    max-width: 48vw;
  }
  .wp-block-image.alignright {
    float: right;
    margin: var(--wp--style--block-gap) 0 var(--wp--style--block-gap) var(--wp--style--block-gap);
    max-width: 48vw;
  }
  .content .entry-content > .wp-block-image.alignleft, .content .block-area > .wp-block-image.alignleft {
    max-width: calc(var(--wp--custom--layout--content) / 2);
    margin-left: calc((100vw - var(--wp--custom--layout--content)) / 2);
  }
  .content .entry-content > .wp-block-image.alignright, .content .block-area > .wp-block-image.alignright {
    max-width: calc(var(--wp--custom--layout--content) / 2);
    margin-right: calc((100vw - var(--wp--custom--layout--content)) / 2);
  }
}
@media (min-width: 81.25em) {
  .full-width-content .entry-content > .wp-block-image.alignleft, .full-width-content .block-area > .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 .entry-content > .wp-block-image.alignright, .full-width-content .block-area > .wp-block-image.alignright {
    max-width: calc(var(--wp--custom--layout--wide) / 2);
    margin-right: calc((100vw - var(--wp--custom--layout--wide)) / 2);
  }
}

/* ICONS
--------------------------------------------- */
.hearts > .icon-box--image,
.icon-box-detail > .wp-block-group > figure,
.icon-box--image {
  flex-shrink: 0;
  width: 36px;
}

/* Separator
--------------------------------------------- */
.wp-block-separator {
  border: none;
  height: 1px;
  padding: 0;
}
.wp-block-separator.has-background {
  padding: 0;
}

/* Button
--------------------------------------------- */
.register-button {
  justify-content: center;
}

.register-button .wp-block-button__link {
  align-content: center;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  word-break: break-word;
}

.has-hot-coral-background-color {
  --btn-bg: var(--wp--preset--color--hot-coral);
  --btn-bg-dark: #d44d68;
}

.is-style-pill > .wp-block-button__link {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
  width: 100%;
  height: clamp(2.5rem, 2.198vw + 2.06rem, 3.75rem);
  text-transform: uppercase;
  color: white;
  font-size: var(--wp--preset--font-size--small);
  border-radius: 40px;
  background: var(--btn-bg, currentColor);
  transition: color 0.3s ease;
}
.is-style-pill > .wp-block-button__link::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background: var(--btn-bg-dark, #d44d68);
  transform: translateX(-100%) skewX(45deg);
  transform-origin: left;
  transition: transform 0.5s ease-in-out;
}
.is-style-pill > .wp-block-button__link:hover {
  color: white;
}
.is-style-pill > .wp-block-button__link:hover::before {
  transform: translateX(0) skewX(45deg);
}

.wp-element-button.has-background,
.wp-block-button > .wp-block-button__link.has-background {
  padding: 6px 25px;
}
.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: none;
}
.wp-element-button:focus,
.wp-block-button > .wp-block-button__link:focus {
  outline: 2px solid inherit;
}

.is-style-pill.wp-block-button.right-arrow-pill .wp-block-button__link {
  overflow: hidden; /* clip the sliding bg */
}

.is-style-pill.wp-block-button.right-arrow-pill > .wp-block-button__link {
  padding-right: 85px;
}

.wp-block-button.right-arrow-pill .wp-block-button__link::after {
  content: "";
  display: inline-block;
  height: clamp(0.563rem, 0.33vw + 0.497rem, 0.75rem);
  width: clamp(0.813rem, 0.659vw + 0.681rem, 1.188rem);
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  position: absolute;
  right: 30px;
  mask-repeat: no-repeat;
  mask-size: contain;
  transition: transform 0.2s;
  transform-origin: center;
  background-position: center;
  mask-position: center;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTMgOCI+CiAgPHBhdGggZmlsbD0iaW5oZXJpdCIgZD0iTTEyLjg2IDMuODEuMzQuMDFDLjEtLjA2LS4xLjIzLjA2LjQzbDIuNjUgMy40M2MuMDYuMDguMDYuMiAwIC4yOEwuMDYgNy41N2MtLjE2LjIuMDQuNDkuMjguNDJMMTIuODYgNC4yYy4xOS0uMDYuMTktLjMzIDAtLjM5Ii8+Cjwvc3ZnPgo=");
  mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgMTMgOCI+CiAgPHBhdGggZmlsbD0iaW5oZXJpdCIgZD0iTTEyLjg2IDMuODEuMzQuMDFDLjEtLjA2LS4xLjIzLjA2LjQzbDIuNjUgMy40M2MuMDYuMDguMDYuMiAwIC4yOEwuMDYgNy41N2MtLjE2LjIuMDQuNDkuMjguNDJMMTIuODYgNC4yYy4xOS0uMDYuMTktLjMzIDAtLjM5Ii8+Cjwvc3ZnPgo=");
}

.wp-block-group.plain-with-arrow,
.is-style-plain-text.plain-with-arrow {
  width: 100%;
  position: relative;
}

/* =====================================
   Pill button background slide
   ===================================== */
/* Group
--------------------------------------------- */
.has-background:not(.tag-pill):not(.wp-block-separator):not(.wp-element-button):not(.navigate_site-query-loop__event-date):not(.wp-block-accordion-heading):not(.wp-block-accordion-panel):not(.wp-block-accordion) {
  padding-top: var(--wp--custom--layout--block-gap);
  padding-bottom: var(--wp--custom--layout--block-gap);
}
.has-background:not(.tag-pill):not(.wp-block-separator):not(.wp-element-button):not(.navigate_site-query-loop__event-date):not(.wp-block-accordion-heading):not(.wp-block-accordion-panel):not(.wp-block-accordion).alignfull {
  padding-top: var(--wp--custom--layout--block-gap-large);
  padding-bottom: var(--wp--custom--layout--block-gap-large);
}

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

.has-deep-space-blue-background-color,
.has-hot-coral-background-color {
  color: var(--wp--preset--color--base);
}

.has-pale-citron-background-color {
  color: var(--wp--preset--color--deep-teal);
}

.has-off-white-background-color .wp-block-accordion-heading__toggle-icon {
  background-color: var(--wp--preset--color--uni-primary-blue);
}

.has-blue-sapphire-background-color.wp-element-button:hover, .has-blue-sapphire-background-color.wp-element-button:focus {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%), var(--wp--preset--color--blue-sapphire, #181C1F);
}
.has-blue-sapphire-background-color.wp-element-button:focus {
  outline: 2px solid inherit;
}

.has-contrast-background-color.wp-element-button:hover, .has-contrast-background-color.wp-element-button:focus {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.16) 100%), var(--wp--preset--color--obsidian-teal, #181C1F);
}
.has-contrast-background-color.wp-element-button:focus {
  outline: 2px solid inherit;
}
