:root {
  --color-brand: #CF2030;
  --color-accent: #FF9D1A;
  --color-accent-light: #FED81E;
  --gradient-accent: linear-gradient(to bottom, #FED81E, #F9A219);
  --color-text: #111;
  --color-light-text: #fff;
  --color-bg: #fff;
  --color-border: rgba(17, 17, 17, 0.14);
}

/* Theme font faces. Merriweather is loaded from Google Fonts (see functions.php). */
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-UltraLight-11.ttf") format("truetype");
  font-weight: 100 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-UltraLightItalic-12.ttf") format("truetype");
  font-weight: 100 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-Regular-08.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-Italic-05.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-Medium-06.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-MediumItalic-07.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-DemiBold-03.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-DemiBoldItalic-04.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-Bold-01.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-BoldItalic-02.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-Heavy-09.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../../src/scss/fonts/Avenir Next/AvenirNext-HeavyItalic-10.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Feeling Passionate";
  src: url("../../src/scss/fonts/Feeling Passionate/WOFF/Feeling Passionate.woff2") format("woff2"), url("../../src/scss/fonts/Feeling Passionate/WOFF/Feeling Passionate.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Feeling Passionate Swash";
  src: url("../../src/scss/fonts/Feeling Passionate/WOFF/Wonderful Somerset Swash.woff2") format("woff2"), url("../../src/scss/fonts/Feeling Passionate/WOFF/Wonderful Somerset Swash.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --st-font-sans: "Nunito Sans", "Helvetica Neue", Helvetica, system-ui, sans-serif;
}

html {
  font-size: 18px;
}

body {
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--st-font-sans);
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-brand);
  line-height: 1.15;
}

a {
  color: var(--color-accent);
}

a:hover,
a:focus-visible {
  color: var(--color-brand);
}

button[type=button],
button[type=submit],
button[type=reset],
.wp-element-button,
.fl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.35rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  color: #111;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  button[type=button],
  button[type=submit],
  button[type=reset],
  .wp-element-button,
  .fl-button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  button[type=button],
  button[type=submit],
  button[type=reset],
  .wp-element-button,
  .fl-button {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}

button[type=button]:hover,
button[type=submit]:hover,
button[type=reset]:hover,
.wp-element-button:hover,
.fl-button:hover {
  filter: brightness(0.95);
}

button[type=button]:focus-visible,
button[type=submit]:focus-visible,
button[type=reset]:focus-visible,
.wp-element-button:focus-visible,
.fl-button:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}

button[type=button]:focus:not(:focus-visible),
button[type=submit]:focus:not(:focus-visible),
button[type=reset]:focus:not(:focus-visible),
.wp-element-button:focus:not(:focus-visible),
.fl-button:focus:not(:focus-visible) {
  outline: 0;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=password],
textarea,
select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.35rem;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  box-shadow: none;
  outline: none;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border-color: rgba(207, 32, 48, 0.6);
  box-shadow: 0 0 0 4px rgba(207, 32, 48, 0.12);
}

.cta,
.bb-cta,
.wp-block-button__link {
  background-image: var(--gradient-accent);
  color: #111;
  text-decoration: none;
}

.cta:hover,
.bb-cta:hover,
.wp-block-button__link:hover {
  filter: brightness(0.95);
}

.cta:focus-visible,
.bb-cta:focus-visible,
.wp-block-button__link:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}

.cta:focus:not(:focus-visible),
.bb-cta:focus:not(:focus-visible),
.wp-block-button__link:focus:not(:focus-visible) {
  outline: 0;
}

.st-section-heading {
  align-self: center;
  width: fit-content;
  max-width: 100%;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 27px);
  font-weight: 300;
  color: var(--color-text);
  margin: 0;
  padding: 0 0.35rem 2rem;
  text-align: center;
  position: relative;
}
.st-section-heading::after {
  content: " ";
  display: block;
  width: 76px;
  height: 3px;
  background: var(--color-accent);
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.st-section-heading.st-section-heading--center {
  margin-left: auto;
  margin-right: auto;
}

.st-rich-text h3,
.fl-module-rich-text h3 {
  font-size: clamp(24px, 4vw, 48px);
}
.st-rich-text p,
.fl-module-rich-text p {
  margin: 0 0 0.85em;
  line-height: 2;
}
.st-rich-text p:last-child,
.fl-module-rich-text p:last-child {
  margin-bottom: 0;
}
.st-rich-text ul,
.st-rich-text ol,
.fl-module-rich-text ul,
.fl-module-rich-text ol {
  margin: 0;
  padding-left: 2em;
  margin-bottom: 1rem;
}
.st-rich-text ul.two-column,
.st-rich-text ol.two-column,
.fl-module-rich-text ul.two-column,
.fl-module-rich-text ol.two-column {
  column-count: 2;
  column-gap: 1rem;
}
@media (max-width: 768px) {
  .st-rich-text ul.two-column,
  .st-rich-text ol.two-column,
  .fl-module-rich-text ul.two-column,
  .fl-module-rich-text ol.two-column {
    column-count: 1;
  }
}
.st-rich-text li,
.fl-module-rich-text li {
  margin-bottom: 0.65em;
  line-height: 2;
}
.st-rich-text li:last-child,
.fl-module-rich-text li:last-child {
  margin-bottom: 0;
}
.st-rich-text a,
.fl-module-rich-text a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.st-rich-text a:hover, .st-rich-text a:focus-visible,
.fl-module-rich-text a:hover,
.fl-module-rich-text a:focus-visible {
  color: var(--color-accent);
}

.st-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  color: var(--color-brand);
  text-decoration: none;
  font-size: inherit;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.st-action-link:hover, .st-action-link:focus-visible {
  color: var(--color-accent);
}
.st-action-link:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 3px;
}
.st-action-link:focus:not(:focus-visible) {
  outline: 0;
}

.st-action-link__dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

.st-action-link__text {
  display: inline-block;
  vertical-align: middle;
}
.st-action-link__text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -2px;
  background-image: url("../../assets/img/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.st-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--st-btn-ghost-padding-y, 1rem) var(--st-btn-ghost-padding-x, 2rem);
  border: 1px solid var(--color-accent);
  border-radius: 7px;
  background: transparent;
  color: var(--st-btn-ghost-color, var(--color-light-text));
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: var(--st-btn-ghost-font-size, 1rem);
  font-weight: 300;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}
.st-btn-ghost:hover, .st-btn-ghost:focus-visible {
  background: var(--color-accent);
  color: #111;
  filter: brightness(1.05);
  opacity: 0.95;
  text-decoration: none;
}
.st-btn-ghost:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 3px;
}
.st-btn-ghost:focus:not(:focus-visible) {
  outline: 0;
}

.st-btn-ghost--on-dark:focus-visible {
  outline-color: rgba(255, 255, 255, 0.45);
}

@media screen and (max-width: 768px) {
  .st-btn-ghost {
    padding: var(--st-btn-ghost-padding-y, 1.15rem) var(--st-btn-ghost-padding-x, 2rem);
    font-size: var(--st-btn-ghost-font-size, 1.25rem);
  }
}
@media (max-width: 575px) {
  .st-btn-ghost {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
  }
}
.st-btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: var(--st-btn-brand-padding-y, 1rem) var(--st-btn-brand-padding-x, 2rem);
  border: 0;
  border-radius: 7px;
  background: var(--color-brand);
  color: var(--color-light-text) !important;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: var(--st-btn-brand-font-size, 1rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
}
.st-btn-brand:hover, .st-btn-brand:focus-visible {
  filter: brightness(0.92);
  color: var(--color-light-text) !important;
  text-decoration: none;
}
.st-btn-brand:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}
.st-btn-brand:focus:not(:focus-visible) {
  outline: 0;
}

.st-btn-brand--gold {
  background: var(--color-accent);
}
.st-btn-brand--gold:focus-visible {
  outline-color: rgba(255, 157, 26, 0.45);
}

.st-btn-brand--outline-red,
.st-btn-brand--outline-gold {
  background: transparent;
  color: inherit !important;
}
.st-btn-brand--outline-red:hover, .st-btn-brand--outline-red:focus-visible,
.st-btn-brand--outline-gold:hover,
.st-btn-brand--outline-gold:focus-visible {
  filter: none;
}

.st-btn-brand--outline-red {
  border: 1px solid var(--color-brand);
}
.st-btn-brand--outline-red:hover, .st-btn-brand--outline-red:focus-visible {
  background: var(--color-brand);
  color: var(--color-light-text) !important;
  text-decoration: none;
}
.st-btn-brand--outline-red:focus-visible {
  outline-color: rgba(207, 32, 48, 0.35);
}

.st-btn-brand--outline-gold {
  border: 1px solid var(--color-accent);
}
.st-btn-brand--outline-gold:hover, .st-btn-brand--outline-gold:focus-visible {
  background: var(--color-accent);
  color: var(--color-text) !important;
  text-decoration: none;
}
.st-btn-brand--outline-gold:focus-visible {
  outline-color: rgba(255, 157, 26, 0.45);
}

.st-btn-brand--padding-comfy {
  --st-btn-brand-padding-y: 22px;
  --st-btn-brand-padding-x: 44px;
}

.st-btn-brand--padding-large {
  --st-btn-brand-padding-y: 2rem;
  --st-btn-brand-padding-x: 4rem;
}

.st-btn-brand--width-fixed {
  width: var(--st-btn-brand-width);
  max-width: 100%;
}

.st-btn-brand--block {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .st-btn-brand {
    padding: var(--st-btn-brand-padding-y, 1.15rem) var(--st-btn-brand-padding-x, 2rem);
    font-size: var(--st-btn-brand-font-size, 1.25rem);
  }
  .st-btn-brand--padding-comfy {
    --st-btn-brand-padding-y: 18px;
    --st-btn-brand-padding-x: 36px;
  }
  .st-btn-brand--padding-large {
    --st-btn-brand-padding-y: 1.5rem;
    --st-btn-brand-padding-x: 3rem;
  }
}
@media (max-width: 575px) {
  .st-btn-brand {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }
  .st-btn-brand--padding-comfy {
    --st-btn-brand-padding-y: 18px;
    --st-btn-brand-padding-x: 36px;
  }
  .st-btn-brand--padding-large {
    --st-btn-brand-padding-y: 1.5rem;
    --st-btn-brand-padding-x: 3rem;
  }
}
.st-carousel-nav-anchor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

button.st-carousel-nav {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  font-weight: 400;
  letter-spacing: normal;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
}
button.st-carousel-nav:hover, button.st-carousel-nav:focus-visible {
  background: var(--color-accent);
  color: #fff;
  filter: none;
}
button.st-carousel-nav:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 3px;
}
button.st-carousel-nav:focus:not(:focus-visible) {
  outline: 0;
}

button.st-carousel-nav--prev {
  left: 0;
  transform: translate(-50%, -50%);
}
button.st-carousel-nav--prev:hover, button.st-carousel-nav--prev:focus-visible {
  transform: translate(-50%, -50%) scale(1.05);
}

button.st-carousel-nav--next {
  right: 0;
  left: auto;
  transform: translate(50%, -50%);
}
button.st-carousel-nav--next:hover, button.st-carousel-nav--next:focus-visible {
  transform: translate(50%, -50%) scale(1.05);
}

@media screen and (max-width: 768px) {
  button.st-carousel-nav {
    width: 44px;
    height: 44px;
  }
}
.st-mobile-header {
  display: none;
}

.st-mobile-nav {
  display: none;
}

.st-desktop-header {
  display: block;
}

@media (max-width: 1200px) {
  .fl-page-header-container {
    padding-top: 0;
  }
  .fl-page-nav-left.fl-page-header-primary {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10040;
    width: 100%;
    background: var(--color-brand);
  }
  .fl-page-nav-left .fl-page-content,
  #fl-main-content {
    padding-top: var(--st-mobile-header-height, 70px);
  }
  .st-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 0;
  }
  .st-mobile-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
  }
  .st-mobile-header__logo img {
    max-height: 46px;
    width: auto;
  }
  button.st-mobile-header__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-weight: 400;
    letter-spacing: normal;
    cursor: pointer;
    color: var(--color-light-text);
    filter: none;
  }
  button.st-mobile-header__toggle:hover, button.st-mobile-header__toggle:active, button.st-mobile-header__toggle:focus {
    background: transparent;
    color: var(--color-light-text);
    filter: none;
  }
  button.st-mobile-header__toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
  }
  .st-mobile-header__toggle-icon,
  .st-mobile-header__toggle-icon::before,
  .st-mobile-header__toggle-icon::after {
    display: block;
    width: 1.375rem;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .st-mobile-header__toggle-icon {
    position: relative;
    flex-shrink: 0;
  }
  .st-mobile-header__toggle-icon::before,
  .st-mobile-header__toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .st-mobile-header__toggle-icon::before {
    top: -6px;
  }
  .st-mobile-header__toggle-icon::after {
    top: 6px;
  }
  button.st-mobile-header__toggle[aria-expanded=true] .st-mobile-header__toggle-icon {
    background: transparent;
  }
  button.st-mobile-header__toggle[aria-expanded=true] .st-mobile-header__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  button.st-mobile-header__toggle[aria-expanded=true] .st-mobile-header__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .st-desktop-header {
    display: none;
  }
  .st-mobile-nav {
    display: block;
    position: fixed;
    top: var(--st-mobile-header-height, 4.5rem);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10035;
    background: var(--color-accent);
    color: var(--color-text);
    overflow: hidden;
  }
  .st-mobile-nav a,
  .st-mobile-nav button {
    -webkit-tap-highlight-color: transparent;
  }
  .st-mobile-nav a:focus:not(:focus-visible),
  .st-mobile-nav button:focus:not(:focus-visible) {
    outline: 0;
  }
  .st-mobile-nav[hidden] {
    display: none !important;
  }
  .st-mobile-nav__toolbar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.25);
    min-height: 3.25rem;
    background: var(--color-accent);
  }
  .st-mobile-nav__toolbar[hidden] {
    display: none !important;
  }
  button.st-mobile-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.25rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-text);
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: 1.125rem;
    font-weight: 300;
    letter-spacing: normal;
    text-transform: none;
    cursor: pointer;
    filter: none;
    -webkit-tap-highlight-color: transparent;
  }
  button.st-mobile-nav__back:hover, button.st-mobile-nav__back:active, button.st-mobile-nav__back:focus {
    background: transparent;
    color: var(--color-text);
    filter: none;
    outline: 0;
  }
  button.st-mobile-nav__back:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
    color: var(--color-text);
  }
  .st-mobile-nav__back *,
  .st-mobile-mega-menu__column-trigger * {
    color: var(--color-text);
  }
  .st-mobile-nav__back-icon {
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .st-mobile-nav__viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
  }
  .st-mobile-nav:not(.is-at-root) .st-mobile-nav__viewport {
    height: calc(100% - 3.25rem);
  }
  .st-mobile-nav__track {
    position: relative;
    height: 100%;
  }
  .st-mobile-nav__panel {
    display: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0 2rem;
  }
  .st-mobile-nav__panel.is-active {
    display: block;
  }
  .st-mobile-nav__panel-title {
    margin: 0 1rem 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-text);
  }
  .st-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .st-mobile-menu + .st-mobile-menu {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(17, 17, 17, 0.2);
  }
  .st-mobile-menu > li {
    margin: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.25);
  }
  .st-mobile-menu > li > .st-mobile-menu__row,
  .st-mobile-nav__panel .st-mobile-menu > li > a:only-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
  }
  .st-mobile-nav.is-at-root .st-mobile-menu > li > a,
  .st-mobile-nav.is-at-root .st-mobile-menu__row > a {
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.313rem, 7.5vw, 2.625rem);
    font-weight: 400;
    text-transform: none;
  }
  .st-mobile-menu > li > a {
    display: block;
    flex: 1 1 auto;
    padding: 1rem 1.25rem;
    font-family: var(--st-font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
  }
  .st-mobile-menu__row > a {
    flex: 1 1 auto;
    padding: 1rem 0 1rem 1.25rem;
    font-family: var(--st-font-sans);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
    text-decoration: none;
    text-transform: uppercase;
  }
  .st-mobile-menu > li > a:hover,
  .st-mobile-menu > li > a:focus,
  .st-mobile-menu > li > a:active,
  .st-mobile-menu > li > a:focus-visible,
  .st-mobile-menu__row > a:hover,
  .st-mobile-menu__row > a:focus,
  .st-mobile-menu__row > a:active,
  .st-mobile-menu__row > a:focus-visible,
  .st-mobile-nav.is-at-root a:hover,
  .st-mobile-nav.is-at-root a:focus,
  .st-mobile-nav.is-at-root a:active,
  .st-mobile-nav.is-at-root a:focus-visible {
    color: var(--color-text);
    outline: 0;
  }
  .st-mobile-menu__submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    margin-right: 0.5rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--color-text) !important;
    cursor: pointer;
    filter: none;
  }
  .st-mobile-menu__submenu-toggle:hover,
  .st-mobile-menu__submenu-toggle:active,
  .st-mobile-menu__submenu-toggle:focus,
  .st-mobile-menu__submenu-toggle:focus-visible {
    background: transparent;
    color: var(--color-text) !important;
    filter: none;
  }
  .st-mobile-menu__submenu-toggle::after {
    content: "";
    display: block;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-text);
    border-top: 2px solid var(--color-text);
    transform: rotate(45deg);
  }
  .st-mobile-menu__submenu-toggle:focus-visible {
    outline: 2px solid var(--color-text);
    outline-offset: 2px;
  }
  .st-mobile-menu .sub-menu {
    display: none !important;
  }
  .st-mobile-menu .fl-submenu-icon-wrap {
    display: none !important;
  }
  .st-mobile-menu li.st-menu-button > .st-mobile-menu__row {
    display: block;
  }
  .st-mobile-menu li.st-menu-button .st-mobile-menu__submenu-toggle {
    display: none;
  }
  .st-mobile-menu + .st-mobile-menu {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .st-mobile-mega-panel {
    background: var(--color-accent);
    color: var(--color-text);
    padding: 1.5rem 1.25rem 2rem;
  }
  .st-mobile-mega-panel__title {
    margin: 0 0 1.5rem;
    padding: 0 0 1rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.45);
    color: var(--color-text);
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 6vw, 2.25rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: normal;
    text-transform: none;
    text-align: left;
  }
  .st-mobile-mega-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .st-mobile-mega-menu--columns {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .st-mobile-mega-menu__column-item {
    margin: 0;
    border-bottom: 0;
  }
  button.st-mobile-mega-menu__column-trigger {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 300;
    font-style: normal;
    letter-spacing: normal;
    line-height: 1.25;
    color: var(--color-text);
    -webkit-tap-highlight-color: transparent;
    filter: none;
  }
  button.st-mobile-mega-menu__column-trigger em {
    font-style: italic;
  }
  button.st-mobile-mega-menu__column-trigger::after {
    content: none;
  }
  button.st-mobile-mega-menu__column-trigger::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    border-right: 2px solid var(--color-text);
    border-top: 2px solid var(--color-text);
    transform: rotate(45deg);
  }
  button.st-mobile-mega-menu__column-trigger:hover, button.st-mobile-mega-menu__column-trigger:active, button.st-mobile-mega-menu__column-trigger:focus {
    background: transparent;
    color: var(--color-text);
    filter: none;
    outline: 0;
  }
  button.st-mobile-mega-menu__column-trigger:focus-visible {
    outline: 2px solid rgba(17, 17, 17, 0.85);
    outline-offset: 2px;
    color: var(--color-text);
  }
  .st-mobile-mega-menu__column-item > .st-mega-menu__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1rem 0;
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text);
    text-align: left;
    text-decoration: none;
    text-transform: none;
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }
  .st-mobile-mega-menu__column-item > .st-mega-menu__heading em {
    font-style: italic;
  }
  .st-mobile-mega-menu__column-item > .st-mega-menu__heading::after {
    content: none;
  }
  .st-mobile-mega-menu__column-item > .st-mega-menu__heading:hover, .st-mobile-mega-menu__column-item > .st-mega-menu__heading:focus, .st-mobile-mega-menu__column-item > .st-mega-menu__heading:active, .st-mobile-mega-menu__column-item > .st-mega-menu__heading:focus-visible {
    color: var(--color-text);
    outline: 0;
  }
  .st-mobile-mega-menu__heading {
    margin: 0 0 1.75rem;
    padding: 0 0 1.35rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.45);
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--color-text);
    text-align: left;
    position: relative;
  }
  .st-mobile-mega-menu__heading em {
    font-style: italic;
  }
  .st-mobile-mega-menu__heading::after {
    content: none;
  }
  .st-mobile-mega-menu__heading > em {
    color: var(--color-text);
  }
  .st-mobile-mega-menu--links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 22rem;
    margin: 0 auto;
  }
  .st-mobile-mega-panel--links .st-mega-menu__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 8px;
    gap: 0.35rem 0.5rem;
    width: 100%;
    margin: 0;
  }
  .st-mobile-mega-panel--links .st-mega-menu__item::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CF2030' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
  }
  .st-mobile-mega-panel--links .st-mega-menu__item::after {
    content: "";
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    height: 8px;
    opacity: 0;
    background-image: repeating-linear-gradient(to right, var(--color-brand) 0 4px, transparent 4px 8px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
    pointer-events: none;
  }
  .st-mobile-mega-panel--links .st-mega-menu__link {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 100%;
    padding: 0;
    font-family: var(--st-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: #000 !important;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
  }
  .st-mobile-mega-panel--links .st-mega-menu__link:hover,
  .st-mobile-mega-panel--links .st-mega-menu__link:focus,
  .st-mobile-mega-panel--links .st-mega-menu__link:active,
  .st-mobile-mega-panel--links .st-mega-menu__link:focus-visible {
    color: #000 !important;
    outline: 0;
  }
  .st-mobile-mega-panel--columns a:hover,
  .st-mobile-mega-panel--columns a:focus,
  .st-mobile-mega-panel--columns a:active,
  .st-mobile-mega-panel--columns a:focus-visible {
    color: var(--color-text);
    outline: 0;
  }
  body.st-mobile-nav-open {
    overflow: hidden;
  }
}
@media (max-width: 1200px) and (prefers-reduced-motion: reduce) {
  .st-mobile-header__toggle-icon,
  .st-mobile-header__toggle-icon::before,
  .st-mobile-header__toggle-icon::after {
    transition: none;
  }
}
@media (min-width: 1201px) {
  .st-mobile-header,
  .st-mobile-nav {
    display: none !important;
  }
}
header {
  border-bottom: 1px solid var(--color-border);
}

header a:hover,
header a:focus-visible {
  color: var(--color-brand);
}

header a,
header button {
  -webkit-tap-highlight-color: transparent;
}

header a:focus:not(:focus-visible),
header button:focus:not(:focus-visible) {
  outline: 0;
}

.nav::before {
  content: unset;
}

.fl-page-nav-left {
  text-align: left;
}
.fl-page-nav-left .navbar-nav a {
  font-family: var(--st-font-sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--color-light-text);
  padding: 1rem 0;
}
.fl-page-nav-left {
  margin: 0;
  width: 100%;
}
.fl-page-nav-left .st-nav-left-header .fl-page-header-row {
  align-items: center;
}
.fl-page-nav-left .st-nav-logo-col {
  text-align: center;
}
.fl-page-nav-left .st-nav-logo-col .fl-page-header-logo {
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.fl-page-nav-left .st-nav-left-menu-col {
  text-align: left;
}
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li,
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li {
  flex: 0 0 auto;
}
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
.fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
  padding: 1rem 0.75rem;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-light-text);
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 1560px) {
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1500px) {
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 1400px) {
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.2rem;
  }
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.85rem 1rem;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 1300px) {
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.1rem;
  }
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.75rem 1rem;
    font-size: 14px;
    letter-spacing: -0.015em;
  }
}
@media screen and (max-width: 1240px) {
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0;
  }
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-left-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.7rem 0.9rem;
  }
}
.fl-page-nav-left .st-nav-right-menu-col {
  padding-left: 0;
}
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 1rem;
}
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li,
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li {
  flex: 0 0 auto;
}
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
  padding: 1rem 0.75rem;
  font-size: 17px;
  font-weight: 600;
  color: var(--color-light-text);
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 1560px) {
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.5rem;
  }
}
@media screen and (max-width: 1500px) {
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 1400px) {
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.2rem;
  }
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.85rem 1rem;
    font-size: 15px;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 1300px) {
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0.1rem;
  }
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.75rem 1rem;
    font-size: 14px;
    letter-spacing: -0.015em;
  }
}
@media screen and (max-width: 1240px) {
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
    gap: 0;
  }
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse > .navbar-nav > li > a,
  .fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li > a {
    padding: 0.7rem 0.9rem;
  }
}
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav {
  justify-content: flex-end;
}
.fl-page-nav-left .st-nav-right-menu-col nav > .fl-page-nav-collapse-right > .navbar-nav > li {
  flex: unset;
}
.fl-page-nav-left .st-nav-logo-col .fl-page-header-logo img {
  max-height: 46px;
  width: auto;
}
.fl-page-nav-left .st-nav-right-menu-col .navbar-nav {
  margin-left: auto;
}
@media (min-width: 1201px) {
  .fl-page-nav-left .navbar-nav li.st-menu-button a {
    border: 1px solid var(--color-accent);
    border-radius: 100px;
    padding: 0.5rem 1.75rem !important;
    background-color: transparent;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    width: 180px;
  }
  .fl-page-nav-left .navbar-nav li.st-menu-button a:hover, .fl-page-nav-left .navbar-nav li.st-menu-button a:focus-visible {
    background-color: var(--color-accent);
    color: black;
  }
}
@media screen and (max-width: 1400px) and (min-width: 1201px) {
  .fl-page-nav-left .st-nav-logo-col .fl-page-header-logo img {
    max-height: 40px;
  }
  .fl-page-nav-left .navbar-nav li.st-menu-button a {
    width: auto;
    min-width: 7.5rem;
    padding: 0.4rem 2rem !important;
  }
  .fl-page-nav-left .st-nav-left-menu-col,
  .fl-page-nav-left .st-nav-right-menu-col,
  .fl-page-nav-left .st-nav-logo-col {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
}
@media screen and (max-width: 1300px) and (min-width: 1201px) {
  .fl-page-nav-left .st-nav-logo-col .fl-page-header-logo img {
    max-height: 36px;
  }
  .fl-page-nav-left .navbar-nav li.st-menu-button a {
    min-width: 0;
    padding: 0.35rem 2rem !important;
  }
  .fl-page-nav-left .st-nav-left-menu-col,
  .fl-page-nav-left .st-nav-right-menu-col,
  .fl-page-nav-left .st-nav-logo-col {
    padding-left: 0.2rem;
    padding-right: 0.2rem;
  }
}
@media screen and (max-width: 1240px) and (min-width: 1201px) {
  .fl-page-nav-left .st-nav-logo-col .fl-page-header-logo img {
    max-height: 32px;
  }
  .fl-page-nav-left .navbar-nav li.st-menu-button a {
    padding: 0.3rem 1.7rem !important;
  }
}
.fl-page-nav-left .fl-submenu-icon-wrap {
  position: absolute;
  right: 0;
  top: 0;
}

.fl-submenu-indicator .fl-page-nav ul.navbar-nav > li.menu-item-has-children > a::after {
  position: relative;
  left: 11px;
  top: -2px;
  color: var(--color-accent);
  margin-left: 0;
}

@media screen and (max-width: 1400px) and (min-width: 1201px) {
  .fl-submenu-indicator .fl-page-nav ul.navbar-nav > li.menu-item-has-children > a::after {
    left: 6px;
    font-size: 0.75em;
  }
}
@media screen and (max-width: 1300px) and (min-width: 1201px) {
  .fl-submenu-indicator .fl-page-nav ul.navbar-nav > li.menu-item-has-children > a::after {
    left: 4px;
  }
}
.fl-page-header .fl-page-header-container, .fl-page-header .fl-page-nav-container {
  position: static;
}
.fl-page-header .fl-page-header-container {
  max-width: 95%;
}
@media screen and (max-width: 1400px) and (min-width: 1201px) {
  .fl-page-header .fl-page-header-container {
    max-width: 98%;
  }
}
@media screen and (max-width: 1300px) and (min-width: 1201px) {
  .fl-page-header .fl-page-header-container {
    max-width: 100%;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

@media (min-width: 1201px) {
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu:not(.st-mega-menu):not(.st-mega-menu__links) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .fl-page-nav-left .st-desktop-header .fl-page-nav li:hover > ul.sub-menu:not(.st-mega-menu):not(.st-mega-menu__links),
  .fl-page-nav-left .st-desktop-header .fl-page-nav li:focus-within > ul.sub-menu:not(.st-mega-menu):not(.st-mega-menu__links),
  .fl-page-nav-left .st-desktop-header .fl-page-nav li.fl-sub-menu-open > ul.sub-menu:not(.st-mega-menu):not(.st-mega-menu__links) {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu.st-mega-menu,
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu.st-mega-menu__links {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-mega-open > .st-mega-menu,
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-mega-open .st-mega-menu__links,
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu:focus-within > .st-mega-menu,
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu:focus-within .st-mega-menu__links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:hover > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:focus-within > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li.fl-sub-menu-open > ul.sub-menu {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    gap: 0.25rem 1.5rem;
    width: auto;
    min-width: 11rem;
    max-width: min(36rem, 100vw - 2rem);
    padding: 0.75rem 1rem;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:hover > ul.sub-menu > li,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:focus-within > ul.sub-menu > li,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li.fl-sub-menu-open > ul.sub-menu > li {
    display: block;
    width: auto;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:hover > ul.sub-menu > li > a,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li:focus-within > ul.sub-menu > li > a,
  .fl-page-nav-left .st-desktop-header .st-main-menu-right > li.fl-sub-menu-open > ul.sub-menu > li > a {
    display: block;
    white-space: normal;
  }
  .fl-page-nav-left .st-desktop-header .st-nav-right-menu-col .fl-page-nav li:hover > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .st-nav-right-menu-col .fl-page-nav li:focus-within > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .st-nav-right-menu-col .fl-page-nav li.fl-sub-menu-open > ul.sub-menu {
    left: auto;
    right: 0;
  }
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu:not(.st-mega-menu) li:hover > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu:not(.st-mega-menu) li:focus-within > ul.sub-menu,
  .fl-page-nav-left .st-desktop-header .fl-page-nav ul.sub-menu:not(.st-mega-menu) li.fl-sub-menu-open > ul.sub-menu {
    display: block;
    grid-template-columns: 1fr;
    width: 11rem;
    max-width: 11rem;
    left: 100%;
    top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}
nav a {
  text-decoration: none;
  color: inherit;
}

nav a:focus:not(:focus-visible) {
  outline: 0;
}

nav a:hover,
nav a:focus-visible {
  color: var(--color-accent);
}

@media (min-width: 1201px) {
  .fl-page-nav-left .st-nav-left-header {
    position: relative;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.menu-item-has-children {
    position: static;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu:not(.st-mega-open) > .st-mega-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu > .st-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 2.75rem clamp(1.5rem, 5vw, 4rem) 3rem;
    box-sizing: border-box;
    list-style: none;
    background: var(--color-accent);
    border: 0;
    box-shadow: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem clamp(1.5rem, 4vw, 3rem);
    z-index: 10030;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu.st-mega-open > .st-mega-menu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu.st-mega-open > .st-mega-menu::before {
    content: "";
    position: absolute;
    top: -0.75rem;
    left: 0;
    right: 0;
    height: 0.75rem;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu.st-mega-open > .st-mega-menu .st-mega-menu__links {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left > li.st-has-mega-menu:focus-within > .st-mega-menu {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__heading {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 0 1.35rem;
    font-family: Merriweather, Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 300;
    font-style: normal;
    line-height: 1.25;
    color: #fff;
    text-transform: none;
    pointer-events: none;
    position: relative;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__heading em {
    font-style: italic;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__heading::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 3.25rem;
    height: 0.35rem;
    transform: translateX(-50%);
    background-image: radial-gradient(circle, #fff 2px, transparent 2.5px);
    background-repeat: repeat-x;
    background-size: 0.8125rem 100%;
    background-position: 0;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__column:not(.menu-item-has-children) > .st-mega-menu__heading {
    pointer-events: auto;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__column:not(.menu-item-has-children) > .st-mega-menu__heading:hover, .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__column:not(.menu-item-has-children) > .st-mega-menu__heading:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.15em;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 60%;
    min-width: 300px;
    margin: 0;
    padding: 2rem;
    box-sizing: border-box;
    list-style: none;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 8px;
    gap: 0.35rem 0.5rem;
    width: 100%;
    margin: 0;
    position: relative;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item::before {
    content: "";
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 1.125rem;
    height: 1.125rem;
    opacity: 0;
    transform: translateX(-0.25rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23CF2030' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center/contain;
    pointer-events: none;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item::after {
    content: "";
    grid-column: 1/-1;
    grid-row: 2;
    width: 100%;
    height: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
    background-image: repeating-linear-gradient(to right, var(--color-brand) 0 4px, transparent 4px 8px);
    background-size: 8px 4px;
    background-repeat: repeat-x;
    pointer-events: none;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item:has(.st-mega-menu__link:hover)::before, .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item:has(.st-mega-menu__link:focus-visible)::before {
    opacity: 1;
    transform: translateX(0);
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item:has(.st-mega-menu__link:hover)::after, .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__item:has(.st-mega-menu__link:focus-visible)::after {
    opacity: 1;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__link {
    grid-column: 1;
    grid-row: 1;
    display: block;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    min-height: 1.35em;
    font-family: var(--st-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.35;
    color: #000 !important;
    text-transform: uppercase;
    text-decoration: none;
    white-space: normal;
    transition: color 0.2s ease;
    margin: 0;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__link:hover, .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .st-mega-menu__link:focus-visible {
    color: var(--color-brand) !important;
  }
  .fl-page-nav-left .st-desktop-header .st-main-menu-left .st-mega-menu .fl-submenu-icon-wrap {
    display: none !important;
  }
}
@media (max-width: 1200px) {
  .st-mobile-nav .st-mega-menu,
  .st-mobile-nav .st-mega-menu__links {
    display: none !important;
  }
}
.st-footer-wrap {
  border-top: 0;
}

.st-footer {
  background: #e8e8e8;
  color: var(--color-text);
  padding: 3rem 0 2rem;
}

.st-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.st-footer a {
  color: var(--color-brand);
  text-decoration: none;
}

.st-footer a:hover,
.st-footer a:focus-visible {
  color: var(--color-accent);
}

.st-footer__top {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: minmax(140px, 300px) 1fr;
  align-items: start;
  margin-bottom: 2.5rem;
}

.st-footer__logo {
  margin: 20px 0 20px 30px;
}

.st-footer__logo-image {
  display: block;
  height: auto;
  max-width: 200px;
  width: 100%;
}

.st-footer__columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 260px));
  justify-content: space-between;
  align-items: stretch;
}
.st-footer__columns .st-footer__column {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
}

.st-footer__column .st-section-heading {
  margin-bottom: 1.75rem;
}

.st-footer__body,
.st-footer__address,
.st-footer__contact {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  text-align: center;
}

.st-footer__address {
  font-style: normal;
}

.st-footer__address-bold,
.st-footer__phone {
  margin-bottom: 0.65rem;
  font-size: 1.0625rem;
}

.st-footer__email {
  margin: 0 0 0.35rem;
}

.st-footer__email a {
  color: var(--color-brand);
}

.st-footer__phone a {
  color: var(--color-text);
}

.st-footer__phone a:hover,
.st-footer__phone a:focus-visible {
  color: var(--color-text);
}

.st-footer__cta {
  margin: auto 0 0;
  padding-top: 2rem;
}

.st-footer__button {
  --st-btn-brand-font-size: 1rem;
}
@media (max-width: 575px) {
  .st-footer__button {
    display: inline-block;
    width: auto;
  }
}

.st-footer__social {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  width: 100%;
}

.st-footer__social-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.st-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  color: var(--color-text);
}

.st-footer__social-link:hover,
.st-footer__social-link:focus-visible {
  color: var(--color-brand);
}

.st-footer__social-link svg {
  width: 100%;
  height: 100%;
}

.st-footer__tagline {
  text-align: center;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  line-height: 1.2;
  margin: 2rem 0;
}

.st-footer__tagline-serif {
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.st-footer__tagline-script {
  font-family: "Feeling Passionate", cursive;
  font-size: 1.15em;
  color: var(--color-text);
  position: relative;
  top: 8px;
  left: 4px;
}

.st-footer__copyright {
  text-align: center;
  font-size: 0.875rem;
  margin: 0;
  color: rgba(17, 17, 17, 0.85);
}

.st-footer__privacy {
  margin-left: 0.35rem;
}

@media (max-width: 991px) {
  .st-footer__top {
    grid-template-columns: 1fr;
  }
  .st-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .st-footer__cta {
    margin: 0.75rem 0 1.5rem;
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  .st-footer__tagline {
    font-size: 6vw;
  }
  .st-footer__tagline-script {
    font-size: 9vw;
  }
}
@media (max-width: 575px) {
  .st-footer__columns {
    grid-template-columns: 1fr;
  }
}
footer:not(.st-footer-wrap) {
  border-top: 3px solid var(--color-brand);
}

footer:not(.st-footer-wrap) a {
  color: var(--color-accent);
}

footer:not(.st-footer-wrap) a:hover,
footer:not(.st-footer-wrap) a:focus-visible {
  color: var(--color-brand);
}

.st-contact-form {
  position: fixed;
  inset: 0;
  z-index: 11111111111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.st-contact-form[hidden] {
  display: none;
}
.st-contact-form.is-open {
  display: flex;
}

.st-contact-form__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.85);
  pointer-events: auto;
}

.st-contact-form__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1440px);
  max-height: calc(100vh - 3rem);
  overflow: auto;
  border-radius: 0.35rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.st-contact-form__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 400px);
  min-height: 100%;
}

.st-contact-form__main {
  background: #fff;
  padding: clamp(2.5rem, 4vw, 4.5rem);
}

.st-contact-form__heading {
  margin: 0 0 1.75rem;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-brand);
}

.st-contact-form__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
.st-contact-form__grid--names, .st-contact-form__grid--contact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.st-contact-form__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.95fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.st-contact-form__field input,
.st-contact-form__field textarea {
  background: #ececec;
  border-color: transparent;
  color: var(--color-text);
}
.st-contact-form__field input::placeholder,
.st-contact-form__field textarea::placeholder {
  color: rgba(17, 17, 17, 0.55);
}

.st-contact-form__field--message textarea {
  min-height: 12rem;
  resize: vertical;
}

.st-contact-form__interests {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.st-contact-form__interests-label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--color-text);
}

.st-contact-form__interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.75rem;
}

.st-contact-form__interest-option {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
}
.st-contact-form__interest-option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  border: 2px solid rgba(17, 17, 17, 0.25);
  border-radius: 50%;
  background: #fff;
  outline: none;
  box-shadow: none;
}
.st-contact-form__interest-option input[type=radio]:checked {
  border-color: var(--color-brand);
  background: var(--color-brand);
  box-shadow: inset 0 0 0 0.18em #fff;
}
.st-contact-form__interest-option input[type=radio]:focus, .st-contact-form__interest-option input[type=radio]:focus-visible {
  outline: none;
  box-shadow: none;
}
.st-contact-form__interest-option input[type=radio]:checked:focus, .st-contact-form__interest-option input[type=radio]:checked:focus-visible {
  border-color: var(--color-brand);
  background: var(--color-brand);
  box-shadow: inset 0 0 0 0.18em #fff;
}

.st-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.st-contact-form__feedback {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.st-contact-form__feedback.is-error {
  color: var(--color-brand);
}
.st-contact-form__feedback.is-success {
  color: #1b7f3b;
}

.st-contact-form__success {
  padding: 2rem 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--color-text);
}

.st-contact-form__actions {
  margin-top: 0.5rem;
}

.st-contact-form button.st-contact-form__submit,
.st-contact-form button.st-btn-brand.st-contact-form__submit {
  padding: var(--st-btn-brand-padding-y, 1rem) var(--st-btn-brand-padding-x, 2rem);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: var(--st-btn-brand-font-size, 1rem);
  font-weight: 400;
  letter-spacing: normal;
  filter: none;
}
.st-contact-form button.st-contact-form__submit:hover, .st-contact-form button.st-contact-form__submit:focus-visible,
.st-contact-form button.st-btn-brand.st-contact-form__submit:hover,
.st-contact-form button.st-btn-brand.st-contact-form__submit:focus-visible {
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  filter: brightness(0.92);
}
.st-contact-form button.st-contact-form__submit:focus-visible,
.st-contact-form button.st-btn-brand.st-contact-form__submit:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}
.st-contact-form button.st-contact-form__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  min-width: 4rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--color-accent) !important;
  color: var(--color-light-text) !important;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 0;
  cursor: pointer;
  box-shadow: none;
  filter: none;
  transform: none;
}
.st-contact-form button.st-contact-form__close:hover, .st-contact-form button.st-contact-form__close:focus-visible {
  background: var(--color-accent) !important;
  color: var(--color-light-text) !important;
  filter: none;
  transform: none;
}
.st-contact-form button.st-contact-form__close:focus-visible {
  outline: 3px solid rgba(255, 157, 26, 0.45);
  outline-offset: 2px;
}

.st-contact-form__close-icon {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.st-contact-form__sidebar {
  position: relative;
  max-width: 400px;
  background: var(--color-brand);
  color: var(--color-light-text);
  padding: clamp(2.5rem, 4vw, 4.5rem);
}

.st-contact-form__sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2.5rem;
}

.st-contact-form__address-mobile {
  display: none;
  margin: 0;
  font-style: normal;
  line-height: 1.45;
  font-size: 13px;
  text-align: center;
}

.st-contact-form__address {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  font-style: normal;
  line-height: 1.45;
}

.st-contact-form__org {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.st-contact-form__phone,
.st-contact-form__email {
  margin: 0;
  line-height: 1.45;
}

.st-contact-form__phone a,
.st-contact-form__email a {
  color: var(--color-light-text);
  text-decoration: none;
}

.st-contact-form__phone a:hover,
.st-contact-form__phone a:focus-visible,
.st-contact-form__email a:hover,
.st-contact-form__email a:focus-visible {
  color: var(--color-light-text);
  text-decoration: underline;
}

.st-contact-form__phone strong {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
}

.st-contact-form__divider {
  width: 100%;
  height: 3px;
  margin: 0.5rem 0 0;
  border: 0;
  background: var(--color-accent);
}

.st-contact-form__social .st-footer__social {
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.st-contact-form__social .st-footer__social-item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  justify-content: center;
}
.st-contact-form__social .st-footer__social-link {
  width: 100%;
  max-width: 2.75rem;
  height: auto;
  aspect-ratio: 1;
  color: var(--color-light-text);
}
.st-contact-form__social .st-footer__social-link:hover,
.st-contact-form__social .st-footer__social-link:focus-visible {
  color: var(--color-accent);
}
.st-contact-form__social svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

body.st-contact-form-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .st-contact-form__layout {
    grid-template-columns: 1fr;
  }
  .st-contact-form__main {
    padding: clamp(1.5rem, 4vw, 2.5rem) 1.25rem;
  }
  .st-contact-form button.st-contact-form__close {
    top: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 2.75rem;
  }
  .st-contact-form__close-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
  .st-contact-form__sidebar {
    max-width: none;
    padding-top: 1.25rem;
  }
  .st-contact-form__sidebar-inner {
    padding-top: 0;
  }
  .st-contact-form__address,
  .st-contact-form__phone,
  .st-contact-form__email,
  .st-contact-form__divider {
    display: none;
  }
  .st-contact-form__address-mobile {
    display: block;
    margin-top: 0.25rem;
  }
  .st-contact-form__grid {
    gap: 0.65rem;
    margin-bottom: 0.75rem;
  }
  .st-contact-form__split {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .st-contact-form__field--message textarea {
    height: 5.5rem;
    min-height: 5.5rem;
  }
  .st-contact-form__interests-label {
    display: none;
  }
  .st-contact-form__interest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 0.5rem;
  }
  .st-contact-form__interest-option {
    gap: 0.4rem;
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.3;
  }
  .st-contact-form__interest-option input[type=radio] {
    width: 1rem;
    height: 1rem;
    margin-top: 0.1rem;
  }
}
@media (max-width: 640px) {
  .st-contact-form {
    padding: 0.75rem;
  }
  .st-contact-form__grid {
    gap: 0.5rem;
  }
}
.st-assisi-info-form {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.st-assisi-info-form__panel {
  background: #ececec;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.st-assisi-info-form__panel.is-submitted {
  background: #fff;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.st-assisi-info-form__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 658px;
  margin: 0 auto 2rem auto;
}
.st-assisi-info-form__form[hidden] {
  display: none;
}

.st-assisi-info-form__section {
  padding: 1.75rem 0;
}
.st-assisi-info-form__section + .st-assisi-info-form__section {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.st-assisi-info-form__section-title {
  display: block;
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.st-assisi-info-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.st-assisi-info-form__field input,
.st-assisi-info-form__field select,
.st-assisi-info-form__field textarea {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  color: var(--color-text);
  box-shadow: none;
}
.st-assisi-info-form__field input::placeholder,
.st-assisi-info-form__field select::placeholder,
.st-assisi-info-form__field textarea::placeholder {
  color: rgba(17, 17, 17, 0.45);
  text-transform: none;
}
.st-assisi-info-form__field input:focus, .st-assisi-info-form__field input:focus-visible,
.st-assisi-info-form__field select:focus,
.st-assisi-info-form__field select:focus-visible,
.st-assisi-info-form__field textarea:focus,
.st-assisi-info-form__field textarea:focus-visible {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 157, 26, 0.2);
}

.st-assisi-info-form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.st-assisi-info-form__options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.st-assisi-info-form__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
}
.st-assisi-info-form__option input[type=checkbox],
.st-assisi-info-form__option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.35);
  border-radius: 50%;
  background: #fff;
  outline: none;
  box-shadow: none;
}
.st-assisi-info-form__option input[type=checkbox]:checked,
.st-assisi-info-form__option input[type=radio]:checked {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 0.22em #fff;
}
.st-assisi-info-form__option input:focus,
.st-assisi-info-form__option input:focus-visible {
  outline: none;
  box-shadow: none;
}
.st-assisi-info-form__option input:checked:focus,
.st-assisi-info-form__option input:checked:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 0.22em #fff;
}

.st-assisi-info-form__other {
  padding-left: 2rem;
}
.st-assisi-info-form__other[hidden] {
  display: none;
}
.st-assisi-info-form__other input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.35rem;
}

.st-assisi-info-form__mailing-address {
  margin-top: 1rem;
}
.st-assisi-info-form__mailing-address[hidden] {
  display: none;
}
.st-assisi-info-form__mailing-address textarea {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  resize: vertical;
  min-height: 6rem;
}

.st-assisi-info-form__label {
  display: block;
  margin-bottom: 0.65rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.35;
}

.st-assisi-info-form__required {
  color: var(--color-brand);
  margin-left: 0.15rem;
}

.st-assisi-info-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.st-assisi-info-form__feedback {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.st-assisi-info-form__feedback[hidden] {
  display: none;
}
.st-assisi-info-form__feedback.is-error {
  color: var(--color-brand);
}
.st-assisi-info-form__feedback.is-success {
  color: #1b7f3b;
}

.st-assisi-info-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  color: var(--color-text);
}
.st-assisi-info-form__success[hidden] {
  display: none;
}

.st-assisi-info-form__success-message {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
}

.st-assisi-info-form__success-rule {
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 1.15rem 0 1rem;
  background: var(--color-accent);
}

.st-assisi-info-form__success-thanks {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
}

.st-assisi-info-form__actions {
  padding: 0.5rem 0 0;
}

.st-assisi-info-form button.st-assisi-info-form__submit,
.st-assisi-info-form button.st-btn-brand.st-assisi-info-form__submit {
  padding: var(--st-btn-brand-padding-y, 1rem) var(--st-btn-brand-padding-x, 2rem);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: var(--st-btn-brand-font-size, 1rem);
  font-weight: 400;
  letter-spacing: normal;
  filter: none;
}
.st-assisi-info-form button.st-assisi-info-form__submit:hover, .st-assisi-info-form button.st-assisi-info-form__submit:focus-visible,
.st-assisi-info-form button.st-btn-brand.st-assisi-info-form__submit:hover,
.st-assisi-info-form button.st-btn-brand.st-assisi-info-form__submit:focus-visible {
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  filter: brightness(0.92);
}
.st-assisi-info-form button.st-assisi-info-form__submit:focus-visible,
.st-assisi-info-form button.st-btn-brand.st-assisi-info-form__submit:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}
.st-assisi-info-form button.st-assisi-info-form__submit:disabled,
.st-assisi-info-form button.st-btn-brand.st-assisi-info-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 640px) {
  .st-assisi-info-form__grid {
    grid-template-columns: 1fr;
  }
  .st-assisi-info-form__section {
    padding: 1.35rem 0;
  }
  .st-assisi-info-form__section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.st-guide-dementia-form {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}

.st-guide-dementia-form__panel {
  background: #ececec;
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.st-guide-dementia-form__panel.is-submitted {
  background: #fff;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.5rem, 4vw, 3rem);
}

.st-guide-dementia-form__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 658px;
  margin: 0 auto 2rem auto;
}
.st-guide-dementia-form__form[hidden] {
  display: none;
}

.st-guide-dementia-form__section {
  padding: 1.75rem 0;
}
.st-guide-dementia-form__section + .st-guide-dementia-form__section {
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.st-guide-dementia-form__section-title {
  display: block;
  margin: 0 0 1.15rem;
  padding: 0;
  border: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-text);
}

.st-guide-dementia-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

.st-guide-dementia-form__field input,
.st-guide-dementia-form__field select,
.st-guide-dementia-form__field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  color: var(--color-text);
  box-shadow: none;
}
.st-guide-dementia-form__field input::placeholder,
.st-guide-dementia-form__field select::placeholder,
.st-guide-dementia-form__field textarea::placeholder {
  color: rgba(17, 17, 17, 0.45);
  text-transform: none;
}
.st-guide-dementia-form__field input:focus, .st-guide-dementia-form__field input:focus-visible,
.st-guide-dementia-form__field select:focus,
.st-guide-dementia-form__field select:focus-visible,
.st-guide-dementia-form__field textarea:focus,
.st-guide-dementia-form__field textarea:focus-visible {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 157, 26, 0.2);
}
.st-guide-dementia-form__field textarea {
  resize: vertical;
  min-height: 7rem;
}
.st-guide-dementia-form__field--full {
  grid-column: 1/-1;
}

.st-guide-dementia-form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.st-guide-dementia-form__options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.st-guide-dementia-form__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text);
  cursor: pointer;
}
.st-guide-dementia-form__option input[type=checkbox],
.st-guide-dementia-form__option input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.35);
  border-radius: 50%;
  background: #fff;
  outline: none;
  box-shadow: none;
}
.st-guide-dementia-form__option input[type=checkbox]:checked,
.st-guide-dementia-form__option input[type=radio]:checked {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 0.22em #fff;
}
.st-guide-dementia-form__option input:focus,
.st-guide-dementia-form__option input:focus-visible {
  outline: none;
  box-shadow: none;
}
.st-guide-dementia-form__option input:checked:focus,
.st-guide-dementia-form__option input:checked:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-accent);
  box-shadow: inset 0 0 0 0.22em #fff;
}

.st-guide-dementia-form__other {
  padding-left: 2rem;
}
.st-guide-dementia-form__other[hidden] {
  display: none;
}
.st-guide-dementia-form__other input {
  background: #fff;
  border: 1px solid transparent;
  border-radius: 0.35rem;
}

.st-guide-dementia-form__required {
  color: var(--color-brand);
  margin-left: 0.15rem;
}

.st-guide-dementia-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.st-guide-dementia-form__feedback {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.st-guide-dementia-form__feedback[hidden] {
  display: none;
}
.st-guide-dementia-form__feedback.is-error {
  color: var(--color-brand);
}
.st-guide-dementia-form__feedback.is-success {
  color: #1b7f3b;
}

.st-guide-dementia-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  color: var(--color-text);
}
.st-guide-dementia-form__success[hidden] {
  display: none;
}

.st-guide-dementia-form__success-message {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.35;
}

.st-guide-dementia-form__success-rule {
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 1.15rem 0 1rem;
  background: var(--color-accent);
}

.st-guide-dementia-form__success-thanks {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
}

.st-guide-dementia-form__actions {
  padding: 0.5rem 0 0;
}

.st-guide-dementia-form button.st-guide-dementia-form__submit,
.st-guide-dementia-form button.st-btn-brand.st-guide-dementia-form__submit {
  padding: var(--st-btn-brand-padding-y, 1rem) var(--st-btn-brand-padding-x, 2rem);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: var(--st-btn-brand-font-size, 1rem);
  font-weight: 400;
  letter-spacing: normal;
  filter: none;
}
.st-guide-dementia-form button.st-guide-dementia-form__submit:hover, .st-guide-dementia-form button.st-guide-dementia-form__submit:focus-visible,
.st-guide-dementia-form button.st-btn-brand.st-guide-dementia-form__submit:hover,
.st-guide-dementia-form button.st-btn-brand.st-guide-dementia-form__submit:focus-visible {
  background: var(--color-brand) !important;
  color: var(--color-light-text) !important;
  filter: brightness(0.92);
}
.st-guide-dementia-form button.st-guide-dementia-form__submit:focus-visible,
.st-guide-dementia-form button.st-btn-brand.st-guide-dementia-form__submit:focus-visible {
  outline: 3px solid rgba(207, 32, 48, 0.35);
  outline-offset: 2px;
}
.st-guide-dementia-form button.st-guide-dementia-form__submit:disabled,
.st-guide-dementia-form button.st-btn-brand.st-guide-dementia-form__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

@media (max-width: 640px) {
  .st-guide-dementia-form__grid {
    grid-template-columns: 1fr;
  }
  .st-guide-dementia-form__section {
    padding: 1.35rem 0;
  }
  .st-guide-dementia-form__section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.st-posts-index {
  padding-bottom: 4rem;
}

.st-posts-index__content {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  clear: both;
}

.st-posts-index__header {
  text-align: center;
  padding-bottom: 2.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-border);
}

.st-posts-index__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--st-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
}

.st-posts-index__heading {
  margin: 0;
  font-family: var(--st-font-sans);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #555;
}

.st-posts-index__list {
  display: flex;
  flex-direction: column;
}

.st-posts-index__item {
  margin: 0;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--color-border);
}
.st-posts-index__item:last-child {
  border-bottom: 0;
}

.st-posts-index__item-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.st-posts-index__media {
  flex: 0 0 clamp(160px, 22vw, 220px);
  width: clamp(160px, 22vw, 220px);
}

.st-posts-index__media-link {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f5f5f5;
  text-decoration: none;
}

.st-posts-index__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-posts-index__image--fallback {
  object-fit: contain;
  padding: 1rem;
  background: #f5f5f5;
}

.st-posts-index__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.st-posts-index__title {
  margin: 0;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  color: var(--color-brand);
}
.st-posts-index__title a {
  color: inherit;
  text-decoration: none;
}
.st-posts-index__title a:hover, .st-posts-index__title a:focus-visible {
  color: var(--color-accent);
  text-decoration: none;
}

.st-posts-index__date {
  margin: 0;
  font-family: var(--st-font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
}

.st-posts-index__read-more {
  margin-top: 0.35rem;
  font-family: var(--st-font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  padding: 0.7rem 1.4rem;
}

.st-pagination {
  margin-top: 2.5rem;
  padding-top: 1rem;
}
.st-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-pagination li {
  margin: 0;
}
.st-pagination a.page-numbers,
.st-pagination span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.85rem;
  margin-left: -1px;
  border: 1px solid #111;
  background: #fff;
  color: var(--color-brand);
  font-family: var(--st-font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}
.st-pagination a.page-numbers:hover,
.st-pagination a.page-numbers:focus-visible {
  background: #111;
  color: #fff;
  text-decoration: none;
  z-index: 1;
}
.st-pagination span.page-numbers.current {
  background: #111;
  color: #fff;
  z-index: 1;
}
.st-pagination span.page-numbers.dots {
  color: #111;
}
.st-pagination a.prev,
.st-pagination a.next {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  .st-posts-index {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
  .st-posts-index__item {
    padding: 1.75rem 0;
  }
  .st-posts-index__item-inner {
    gap: 1.5rem;
  }
  .st-posts-index__media {
    flex-basis: 120px;
    width: 120px;
  }
}
@media screen and (max-width: 575px) {
  .st-posts-index__item-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .st-posts-index__media {
    flex-basis: auto;
    width: 100%;
    max-width: 220px;
  }
  .st-posts-index__title {
    font-size: 1.35rem;
  }
}
.st-single-post {
  padding-bottom: 4rem;
}

.st-single-post__content-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  float: none;
  clear: both;
}

.st-single-post__article {
  margin: 0;
}

.st-single-post__media {
  margin: 0 0 2rem;
  overflow: hidden;
  background: #f5f5f5;
}

.st-single-post__image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.st-single-post__image--fallback {
  max-height: 280px;
  object-fit: contain;
  padding: 2.5rem;
  background: #f5f5f5;
}

.st-single-post__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.st-single-post__title {
  margin: 0 0 0.75rem;
  font-family: Merriweather, Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  color: var(--color-brand);
}

.st-single-post__date {
  margin: 0;
  font-family: var(--st-font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
}

.st-single-post__body {
  font-size: 1.05rem;
}

.st-single-post__page-nav {
  margin-top: 2rem;
  font-family: var(--st-font-sans);
  font-size: 0.95rem;
}

@media screen and (max-width: 768px) {
  .st-single-post {
    padding-bottom: 3rem;
  }
  .st-single-post__media {
    margin-bottom: 1.5rem;
  }
  .st-single-post__image {
    max-height: 320px;
  }
  .st-single-post__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
  }
}
.fl-builder-content :is(h1, h2, h3, h4, h5, h6) {
  color: var(--color-text);
}

body.st-debug #fl-main-content a[href="#"]:not(.leaflet-control-zoom-in):not(.leaflet-control-zoom-out),
body.st-debug #fl-main-content a[href="#!"],
body.st-debug #fl-main-content a[href=""],
body.st-debug #fl-main-content a:not([href]) {
  outline: 3px solid #ff1493 !important;
  outline-offset: 2px;
  position: relative;
}
body.st-debug #fl-main-content a[href="#"]:not(.leaflet-control-zoom-in):not(.leaflet-control-zoom-out)::after,
body.st-debug #fl-main-content a[href="#!"]::after,
body.st-debug #fl-main-content a[href=""]::after,
body.st-debug #fl-main-content a:not([href])::after {
  content: "Missing link";
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin-top: 2px;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  background: #ff1493;
  color: #111;
  font: 600 10px/1.3 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
body.st-debug #fl-main-content a:empty,
body.st-debug #fl-main-content button:empty:not(.st-big-text-carousel__dot) {
  outline: 3px dashed #ff6b00 !important;
  outline-offset: 2px;
  min-width: 1em;
  min-height: 1em;
  position: relative;
}
body.st-debug #fl-main-content a:empty::after,
body.st-debug #fl-main-content button:empty:not(.st-big-text-carousel__dot)::after {
  content: "Empty link/button";
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin-top: 2px;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  background: #ff6b00;
  color: #111;
  font: 600 10px/1.3 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
body.st-debug #fl-main-content img[src=""],
body.st-debug #fl-main-content img:not([src]) {
  outline: 3px dashed #00bcd4 !important;
  outline-offset: 2px;
  position: relative;
}
body.st-debug #fl-main-content img[src=""]::after,
body.st-debug #fl-main-content img:not([src])::after {
  content: "Missing src";
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin-top: 2px;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  background: #00bcd4;
  color: #111;
  font: 600 10px/1.3 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}
body.st-debug #fl-main-content h1:empty,
body.st-debug #fl-main-content h2:empty,
body.st-debug #fl-main-content h3:empty,
body.st-debug #fl-main-content h4:empty,
body.st-debug #fl-main-content h5:empty,
body.st-debug #fl-main-content h6:empty {
  outline: 3px dashed #9c27b0 !important;
  outline-offset: 2px;
  min-height: 1em;
  position: relative;
}
body.st-debug #fl-main-content h1:empty::after,
body.st-debug #fl-main-content h2:empty::after,
body.st-debug #fl-main-content h3:empty::after,
body.st-debug #fl-main-content h4:empty::after,
body.st-debug #fl-main-content h5:empty::after,
body.st-debug #fl-main-content h6:empty::after {
  content: "Empty heading";
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin-top: 2px;
  padding: 0.1em 0.4em;
  border-radius: 2px;
  background: #9c27b0;
  color: #111;
  font: 600 10px/1.3 system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/*# sourceMappingURL=child-theme.css.map */
