:root {
  --black: #000;
  --white: #fff;
  --red: #dc2f34;
  --grey: #6b6b6d;
  --silver: #fafafa;
  --background-color: var(--silver);
  --text-color: var(--black);
  --border-color: var(--text-color);
  --focus-color: var(--red);
  --block-spacing-x: clamp(2rem, 5vw, 3.75rem);
  --block-spacing-y: clamp(2rem, 10vw, 10rem);
  --grid-gap: clamp(1rem, 2.5vw, 1.625rem);
  --wrapper-max-width: 96.25rem;
  --admin-bar-height: 0;
  --font-family-default: "Plus Jakarta Sans", system-ui, sans-serif;
  --prose-font-size: inherit;
  --prose-line-height: 1.8;
}

*, :before, :after {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  box-sizing: border-box;
  appearance: none;
  color: inherit;
  background-color: #0000;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-family-default);
  background-color: var(--background-color);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

@media (width <= 47.99em) {
  html {
    margin-top: 0 !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-size: clamp(1rem, 2vw, 1.375rem);
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, svg {
  flex-shrink: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

[type="date"], [type="datetime-local"], [type="email"], [type="number"], [type="password"], [type="search"], [type="tel"], [type="text"], [type="time"], [type="url"], textarea, select {
  width: 100%;
  display: block;
}

select {
  background: url("data:image/svg+xml,%3Csvg height=\"10\" viewBox=\"0 0 12 10\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cpath d=\"m12 0-6 10-6-10z\" fill=\"silver\"/%3E%3C/svg%3E") right 1rem top 52% no-repeat;
}

[type="submit"], button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}

img.alignright, .wp-caption.alignright {
  float: right;
  margin: .5em 0 1em 1em;
}

img.alignleft, .wp-caption.alignleft {
  float: left;
  margin: .5em 1em 1em 0;
}

img.aligncenter, .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wp-caption-text {
  text-align: center;
  opacity: .7;
  font-size: .8em;
}

@media (width >= 48em) {
  .admin-bar {
    --admin-bar-height: 32px;
  }
}

@media (width <= 47.99em) {
  #wpadminbar {
    display: none !important;
  }
}

[x-cloak] {
  display: none !important;
}

.wrapper {
  width: calc(100% - var(--block-spacing-x) * 2);
  max-width: var(--wrapper-max-width);
  margin-inline: auto;
}

.block-margin {
  margin-block: var(--block-spacing-y);
}

.block-padding {
  padding-block: var(--block-spacing-y);
}

.cover-video {
  position: relative;
  overflow: hidden;
}

.cover-video > video, .cover-video > iframe {
  width: 177.778vh;
  min-width: 100%;
  height: 100%;
  min-height: 56.25vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.cover-image {
  width: 100%;
  position: relative;
}

.cover-image > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.zoom-image {
  overflow: hidden;
}

.zoom-image > img {
  transition: transform .5s;
}

.zoom-image:hover > img, button:hover .zoom-image > img, a:hover .zoom-image > img {
  transform: scale(1.05);
}

.embed-container {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.embed-container iframe, .embed-container object, .embed-container embed, .embed-container video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.grid {
  gap: var(--grid-gap);
  grid-template-columns: repeat(12, 1fr);
  display: grid;
}

.grid > * {
  grid-column: 1 / -1;
}

@media (width >= 60em) {
  .grid-wide {
    grid-column: 3 / 11;
  }
}

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

.underline-controls-on-hover a:not(.btn), .underline-controls-on-hover button:not(.btn) {
  text-decoration: none;
}

.underline-controls-on-hover a:not(.btn):hover, .underline-controls-on-hover button:not(.btn):hover {
  text-decoration: underline;
}

.width-full {
  width: 100%;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  text-wrap: balance;
  font-weight: 700;
  line-height: 1.25;
}

h1, .h1 {
  font-size: clamp(3rem, 6vw, 4.1875rem);
}

h2, .h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3, .h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h4, .h4 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
}

b, strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

a {
  text-underline-offset: .2em;
  text-decoration-thickness: from-font;
}

.prose {
  font-size: var(--prose-font-size);
}

.prose > :not(.visually-hidden) + * {
  margin-top: 1lh;
}

.prose p, .prose ul, .prose ol, .prose blockquote, .prose .embed-container, .prose .wp-caption {
  line-height: var(--prose-line-height);
  text-wrap: pretty;
  max-width: 100%;
}

.prose ul, .prose ol {
  list-style: none;
  position: relative;
}

.prose ul li, .prose ol li {
  padding-left: 1.25em;
}

.prose ul li:before, .prose ol li:before {
  text-indent: -1.25em;
  position: absolute;
}

.prose ul li:before {
  content: "-";
}

.prose ol {
  counter-reset: ol-counter;
}

.prose ol li {
  counter-increment: ol-counter;
}

.prose ol li:before {
  content: counter(ol-counter) ".";
}

.prose blockquote {
  border-left: 1px solid;
  padding-left: 1em;
  font-size: 1.4em;
  line-height: 1.2;
}

.prose .buttons {
  padding-block: .75em;
}

.prose .buttons:last-child {
  padding-bottom: 0;
}

.buttons {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.btn {
  background-color: var(--red);
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em;
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.btn:hover {
  background-color: var(--black);
}

.skip-link {
  left: 50%;
  top: var(--admin-bar-height);
  transition: transform .3s;
  position: fixed;
  transform: translate(-50%, -100%);
}

.skip-link:focus {
  transform: translate(-50%, 20%);
}

.slider {
  position: relative;
  container: slider / inline-size;
}

.slider-track {
  gap: var(--grid-gap);
  display: flex;
}

.slider-track > * {
  flex: 0 0 100%;
}

.slider-nav {
  pointer-events: none;
  justify-content: space-between;
  display: flex;
  position: absolute;
  top: 50%;
  left: clamp(.75rem, 2vw, 1.25rem);
  right: clamp(.75rem, 2vw, 1.25rem);
  translate: 0 -50%;
}

.slider-nav-btn {
  background-color: var(--white);
  pointer-events: auto;
  width: clamp(2rem, 3.5vw, 2.875rem);
  height: clamp(2rem, 3.5vw, 2.875rem);
  color: var(--red);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: background-color .2s, color .2s;
  display: flex;
}

.slider-nav-btn:hover {
  background-color: var(--black);
  color: var(--white);
}

.slider-nav-btn svg {
  width: clamp(1rem, 2.5vw, 1.5rem);
}

.header-wrapper {
  padding-top: var(--block-spacing-x);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  display: flex;
}

@media (width >= 48em) {
  .header-wrapper {
    text-align: right;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.header-logo {
  flex-shrink: 0;
  width: clamp(10rem, 25vw, 18.75rem);
  display: block;
}

.header-content {
  display: contents;
}

@media (width >= 48em) {
  .header-content {
    justify-items: end;
    gap: 1rem;
    max-width: 50%;
    display: grid;
  }
}

@media (width >= 80em) {
  .header-content {
    display: contents;
  }
}

.header-text {
  color: var(--grey);
  font-size: clamp(.875rem, 1.5vw, 1rem);
  font-weight: 400;
  line-height: var(--prose-line-height);
  text-wrap: balance;
}

@media (width >= 60em) {
  .searchresults-content {
    grid-column: span 8;
  }
}

.searchresults-intro {
  margin-top: 1.25rem;
}

.searchresults-item {
  border-top: 1px solid var(--border-color);
  margin-top: clamp(1.5rem, 6vw, 3rem);
  padding-top: clamp(1.5rem, 6vw, 3rem);
  text-decoration: none;
  display: block;
}

.searchresults-item-title {
  margin-bottom: 1rem;
}

.searchresults-item-btn {
  margin-top: 1.25rem;
}

@media (width >= 60em) {
  .video-embed, .image-img {
    grid-column: 2 / 12;
  }

  .imgtext-image {
    grid-column: span 6;
  }
}

.imgtext-content {
  align-content: center;
  display: grid;
}

@media (width >= 60em) {
  .imgtext-content {
    padding-right: calc(var(--block-spacing-x) - var(--grid-gap));
    grid-column: span 6;
  }

  .imgtext-image + .imgtext-content {
    padding-inline: calc(var(--block-spacing-x) - var(--grid-gap)) 0;
  }
}

.accordion-item-toggle {
  text-align: left;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  display: flex;
}

.intro-pretitle {
  color: var(--grey);
}

.intro-pretitle + .intro-title {
  margin-top: -.2em;
}

.formblock:last-child {
  margin-bottom: 0;
}

@media (width >= 60em) {
  .body + .formblock {
    margin-top: calc(-.2 * var(--block-spacing-y));
  }
}

.formblock .wsf-bottom {
  margin-bottom: 0 !important;
}

.formblock-content {
  background-color: var(--white);
  border-radius: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 5vw, 3.75rem);
  box-shadow: 0 4px 15px #0000001a;
}

.gallery {
  overflow: hidden;
}

.gallery-wrapper {
  row-gap: clamp(1.5rem, 6vw, 4.0625rem);
}

.gallery-slider {
  width: calc(100% + var(--grid-gap));
}

.gallery-slider-track {
  gap: 0;
}

.gallery-slide {
  padding-right: var(--grid-gap);
  align-content: start;
  gap: clamp(1rem, 2vw, 1.25rem);
  display: grid;
}

.gallery-slide-image {
  aspect-ratio: 1018 / 640;
  object-fit: cover;
}

.gallery-slide-caption {
  opacity: 1;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.55;
  transition: opacity .3s, translate .3s;
  translate: 0;
}

.gallery-slide:not(.active) .gallery-slide-caption {
  opacity: 0;
  translate: 0 -1rem;
}

.gallery-slider-nav {
  padding-right: var(--grid-gap);
  top: 30.4cqw;
}

.gallery-slider-buttons {
  justify-content: center;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.gallery-slider-button {
  background-color: #d9d9d9;
  border-radius: 1rem;
  width: .75rem;
  height: .75rem;
  transition: width .5s, background-color .2s;
}

.gallery-slider-button:hover {
  background-color: var(--grey);
}

.gallery-slider-button.active {
  background-color: var(--red);
  width: clamp(2rem, 8vw, 6.5rem);
}

.footer-wrapper {
  align-items: center;
  padding-block: 2rem;
}

.footer-text {
  grid-column: 1 / 10;
}

@media (width >= 60em) {
  .footer-text {
    grid-column: 3 / 10;
  }
}

.footer-emblem {
  grid-column: 11 / 13;
}
/*# sourceMappingURL=theme.css.map */
