:root {
  --color-1: dodgerblue;
  --color-2: tomato;
  --color-3: lightgreen;
  --white: #ffffff;
  --pale: #f6f6f6;
  --light: #CCCCCC;
  --dark: #999999;
  --black: #333333;
  --white-alpha-1: rgba(255, 255, 255, 0.1);
  --white-alpha-2: rgba(255, 255, 255, 0.25);
  --white-alpha-3: rgba(255, 255, 255, 0.65);
  --black-alpha-1: rgba(0, 0, 0, 0.1);
  --black-alpha-2: rgba(0, 0, 0, 0.25);
  --black-alpha-3: rgba(0, 0, 0, 0.65);
  --success-color: mediumseagreen;
  --warning-color: gold;
  --error-color: tomato;
  --text-color: var(--black);
  --heading-color: var(--black);
  --link-color: var(--color-1);
  --link-color-hover: color-mix(in oklab, var(--link-color) 80%, var(--white));
  --button-background-color: var(--link-color);
  --button-background-color-hover: var(--link-color-hover);
  --button-text-color: var(--white);
  --button-text-color-hover: var(--button-text-color);
  --overlay-background: var(--black-alpha-1);
  --font-family-body: sans-serif;
  --font-family-heading: sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-bold: 700;
  --line-height-default: 1.6;
  --line-height-medium: 1.4;
  --line-height-small: 1.2;
  --font-size-base: clamp(15px, 0.1vi + 14.67px, 16px);
  --font-size-h4: clamp(17.7px, 0.38vi + 16.49px, 21.33px);
  --font-size-h3: clamp(20.89px, 0.79vi + 18.37px, 28.43px);
  --font-size-h2: clamp(24.65px, 1.38vi + 20.23px, 37.9px);
  --font-size-h1: clamp(29.08px, 2.23vi + 21.94px, 50.52px);
  /* Change font size for base and h1-h4 here:
	https://www.fluid-type-scale.com/calculate?minFontSize=15&minWidth=320&minRatio=1.18&maxFontSize=16&maxWidth=1280&maxRatio=1.333&steps=base%2Ch4%2Ch3%2Ch2%2Ch1&baseStep=base&prefix=font-size&useContainerWidth=false&includeFallbacks=false&useRems=false&remValue=16&decimals=2&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=1280
	*/
  --font-size-huge: clamp(40px, 3.65vi + 28.33px, 75px);
  /* Change font size for huge here:
	https://www.fluid-type-scale.com/calculate?minFontSize=40&minWidth=320&minRatio=1&maxFontSize=75&maxWidth=1280&maxRatio=1.1&steps=huge&baseStep=huge&prefix=font-size&useContainerWidth=false&includeFallbacks=false&useRems=false&remValue=16&decimals=2&previewFont=Inter&previewText=Almost+before+we+knew+it%2C+we+had+left+the+ground&previewWidth=1280
	*/
  --font-size-large: 1.2rem;
  --font-size-medium: 1.1rem;
  --font-size-small: 0.9rem;
  --font-size-tiny: 0.8rem;
  --header-height: 5rem;
  --border-width-default: 1px;
  --border-width-small: 1px;
  --border-width-large: .33rem;
  --border-radius-default: 1rem;
  --border-radius-small: calc(var(--border-radius-default) / 2);
  --border-radius-large: calc(var(--border-radius-default) * 2);
  --box-shadow-default: 0px .5rem 2rem -.5rem rgba(0, 0, 0, 0.15);
  --box-shadow-small: 0px .25rem 1rem -.5rem rgba(0, 0, 0, 0.15);
  --box-shadow-large: 0px .75rem 3rem -.5rem rgba(0, 0, 0, 0.15);
  --transition-duration: 0.3s;
  --hamburger-animation-duration: $hamburger-animation-duration-total;
  --spacing-tiny: clamp(10px, 0.3vi + 9.05px, 12.84px);
  --spacing-small: clamp(14.14px, 0.7vi + 11.89px, 20.9px);
  --spacing-default: clamp(20px, 1.46vi + 15.33px, 34px);
  --spacing-medium: clamp(28.29px, 2.82vi + 19.28px, 55.32px);
  --spacing-large: clamp(40px, 5.21vi + 23.34px, 90px);
  --button-margin-top: 1.5rem;
  --form-column-gap: 1rem;
  --form-row-gap: 1rem;
  --viewport-height-small: 40;
  --viewport-height-medium: 60;
  --viewport-height-large: 80;
  --viewport-height-full: 100;
  --width-wide: 1600px;
  --width-default: 1280px;
  --width-narrow: 800px;
  --vertical-section-padding: var(--spacing-large);
  --horizontal-section-padding: var(--spacing-medium);
  --section-padding: var(--vertical-section-padding) var(--horizontal-section-padding);
}
.inverted {
  --text-color: var(--white);
  --heading-color: var(--white);
  --link-color: var(--white);
  --button-background-color: var(--white);
  --button-background-color-hover: var(--link-color-hover);
  --button-text-color: var(--black);
  --button-text-color-hover: var(--white);
}
.scrolled {
  --header-height: 5rem;
}
@media (max-width: 960px) {
  :root {
    --header-height: 4rem;
  }
  .scrolled {
    --header-height: 4rem;
  }
}
@media (max-width: 640px) {
  :root {
    --horizontal-section-padding: var(--spacing-default);
  }
}
@media (max-width: 320px) {
  :root {
    --section-padding: calc(min(6vw, 80px) + 20px) 20px;
  }
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="search"], input[type="url"], textarea {
  border-top-width: var(--border-width-default);
  border-right-width: var(--border-width-default);
  border-bottom-width: var(--border-width-default);
  border-left-width: var(--border-width-default);
  border-style: solid;
  border-color: var(--dark);
  border-radius: var(--border-radius-small);
  background: var(--white);
  color: var(--black);
  padding: 0 1rem;
  flex-grow: 1;
  transition-duration: var(--transition-duration);
  transition-property: color, border-color, background, background-color;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
input[type="text"], input[type="email"], input[type="number"], input[type="tel"], input[type="password"], input[type="search"], input[type="url"] {
  height: 2.8rem;
  line-height: var(--line-height-small);
}
textarea {
  padding: 0.6rem 1rem;
  line-height: var(--line-height-default);
  min-height: 8rem;
  resize: vertical;
}
input[type="text"]:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="tel"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="url"]:hover, textarea:hover {
  background: var(--white);
  border-color: var(--color-1);
}
input[type="text"]:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="url"]:focus, textarea:focus {
  background: var(--white);
  border-color: var(--color-1);
  outline: none;
}
::placeholder {
  color: var(--dark);
}
input[type="checkbox"], input[type="radio"] {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  background-color: var(--white);
  border: var(--border-width-default) solid var(--dark);
  margin: 0 10px 0 0;
  transition-duration: var(--transition-duration);
  transition-property: border-color, background, background-color;
  flex-shrink: 0;
}
input[type="checkbox"]:hover, input[type="radio"]:hover {
  background-color: var(--white);
  border-color: var(--color-1);
}
input[type="checkbox"]:after, input[type="radio"]:after {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  top: calc(var(--border-width-default) * -1);
  left: calc(var(--border-width-default) * -1);
  display: block;
  opacity: 0;
  transition-duration: var(--transition-duration);
  background-color: var(--color-1);
}
input[type="checkbox"]:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><polyline points="6,13 11,18 20,8" style="fill:none;stroke:white;stroke-width:2" /></svg>');
}
input[type="radio"]:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" viewBox="0 0 26 26"><circle cx="13" cy="13" r="6" style="fill:white;" /></svg>');
}
input[type="checkbox"]:checked:after, input[type="radio"]:checked:after {
  opacity: 1;
}
input[type="checkbox"], input[type="checkbox"]:after, input[type="checkbox"]:checked:after {
  border-radius: calc(var(--border-radius-small) / 2);
}
input[type="radio"], input[type="radio"]:after, input[type="radio"]:checked:after {
  border-radius: 100%;
}
select, .woocommerce .select2-selection {
  height: 2.8rem;
  line-height: var(--line-height-small);
  padding: 0 1rem;
  border-top-width: var(--border-width-default);
  border-right-width: var(--border-width-default);
  border-bottom-width: var(--border-width-default);
  border-left-width: var(--border-width-default);
  border-style: solid;
  border-color: var(--dark);
  border-radius: var(--border-radius-small);
  background-color: var(--white);
  color: var(--black);
  background-image: linear-gradient(45deg, transparent 50%, var(--black-alpha-2) 50%), linear-gradient(135deg, var(--black-alpha-2) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  transition-duration: var(--transition-duration);
  transition-property: color, border-color, background-color;
  outline: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}
select:hover, .woocommerce .select2-selection:hover {
  border-color: var(--color-1);
}
select:focus, .woocommerce .select2-selection:focus {
  outline: none !important;
}
.inverted input[type="text"], .inverted input[type="email"], .inverted input[type="number"], .inverted input[type="tel"], .inverted input[type="password"], .inverted input[type="search"], .inverted input[type="url"], .inverted textarea {
  background: transparent;
  color: var(--white);
  border-color: var(--white-alpha-3);
}
.inverted input[type="text"]:hover, .inverted input[type="email"]:hover, .inverted input[type="number"]:hover, .inverted input[type="tel"]:hover, .inverted input[type="password"]:hover, .inverted input[type="search"]:hover, .inverted input[type="url"]:hover, .inverted textarea:hover {
  background: transparent;
  border-color: var(--white);
}
.inverted input[type="text"]:focus, .inverted input[type="email"]:focus, .inverted input[type="number"]:focus, .inverted input[type="tel"]:focus, .inverted input[type="password"]:focus, .inverted input[type="search"]:focus, .inverted input[type="url"]:focus, .inverted textarea:focus {
  background: transparent;
  border-color: var(--white);
}
.inverted input::placeholder, .inverted textarea::placeholder {
  color: var(--white-alpha-3);
}
.inverted input[type="checkbox"], .inverted input[type="radio"] {
  background-color: transparent;
  border-color: var(--white-alpha-3);
}
.inverted input[type="checkbox"]:hover, .inverted input[type="radio"]:hover {
  border-color: var(--white);
}
.inverted input[type="checkbox"]:after, .inverted input[type="radio"]:after {
  background-color: transparent;
}
.inverted select {
  background-color: transparent;
  border-color: var(--white-alpha-3);
  color: var(--white);
}
.inverted select:hover {
  border-color: var(--white);
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  column-gap: var(--form-column-gap);
  row-gap: var(--form-row-gap);
}
.field-wrapper {
  width: 100%;
}
.form-row {
  display: grid;
  column-gap: var(--form-column-gap);
  row-gap: var(--form-row-gap);
  width: 100%;
}
.form-row-column-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-row-column-2 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .form-row-column-3, .form-row-column-2 {
    grid-template-columns: 1fr;
  }
}
.field-wrapper label {
  margin-bottom: 0.25rem;
}
.accordion-menu {
  width: 100%;
}
.accordion-menu menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.accordion-menu a {
  min-height: 2em;
  padding-right: 2.5em;
  display: flex;
  align-items: center;
  color: var(--text-color);
  font-size: var(--font-size-h4);
}
.accordion-menu .menu-item {
  position: relative;
  width: 100%;
  font-size: var(--font-size-medium);
  padding: 0;
}
.accordion-menu .menu-item .sub-menu-icon {
  width: 2em;
  height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: var(--border-radius-small);
  transition-duration: var(--transition-duration);
}
.accordion-menu .menu-item .sub-menu-icon:hover {
  background: var(--black-alpha-1);
}
.accordion-menu .has-children > .sub-menu-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.accordion-menu .menu-item > .sub-menu-icon::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid var(--dark);
  border-left: 2px solid var(--dark);
  transform: rotate(45deg) translate(0.1em, -0.1em);
  transition-duration: var(--transition-duration);
}
.accordion-menu .sub-menu-icon.sub-menu-open::after {
  transform: rotate(-45deg) translate(1px, -1px);
}
.accordion-menu .sub-menu {
  height: 0;
  overflow: hidden;
  transition-duration: var(--transition-duration);
  padding-left: 1rem;
}
.accordion-menu .sub-menu-open + .sub-menu {
  height: auto;
}
.background-image, .background-image > img + div {
  position: relative;
}
.background-image > img:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
html, body {
  font-size: var(--font-size-base);
}
body {
  background: var(--white);
  color: var(--text-color);
  font-family: var(--font-family-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-default);
  font-optical-sizing: auto;
  box-sizing: border-box;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
div, .section-wrapper {
  color: var(--text-color);
}
.font-size-huge {
  font-size: var(--font-size-huge);
}
h1, .font-size-h1 {
  font-size: var(--font-size-h1);
}
h2, .font-size-h2 {
  font-size: var(--font-size-h2);
}
h3, .font-size-h3 {
  font-size: var(--font-size-h3);
}
h4, .font-size-h4 {
  font-size: var(--font-size-h4);
}
.font-size-large {
  font-size: var(--font-size-large);
}
.font-size-medium {
  font-size: var(--font-size-medium);
}
.font-size-small {
  font-size: var(--font-size-small);
}
.font-size-tiny {
  font-size: var(--font-size-tiny);
}
.huge, h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  color: var(--heading-color);
  line-height: var(--line-height-small);
  margin-top: calc(.7em + 1.3rem);
  margin-bottom: calc(.3em + .7rem);
  text-wrap: balance;
  overflow-wrap: anywhere;
  hyphens: manual;
}
p, ul, ol, figure {
  margin: 0 0 1em 0;
  text-wrap: pretty;
}
li {
  padding: 0 0 0.5em 0;
}
blockquote {
  border-left: 3px solid var(--dark);
  color: var(--black);
  font-style: italic;
  margin: 1em 0;
  padding-left: 1em;
}
figcaption {
  font-size: var(--font-size-small);
  color: var(--dark);
  margin-top: 0.5em;
  margin-bottom: 1em;
}
label {
  color: var(--text-color);
  display: block;
  font-weight: var(--font-weight-normal);
  margin-bottom: 0;
}
abbr[title], ins {
  text-decoration: none;
}
.huge:first-child, h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}
.huge:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, ul:last-child, ol:last-child, blockquote:last-child, figure:last-child {
  margin-bottom: 0;
}
a {
  color: var(--link-color);
  transition-duration: var(--transition-duration);
  text-decoration: none;
  overflow-wrap: anywhere;
  outline: none;
}
a:hover {
  color: var(--link-color-hover);
}
a:focus, button:focus, input:focus, body.bricks-is-frontend :focus {
  outline: none !important;
}
p a {
  text-decoration: underline;
}
h1 a, h2 a, h3 a, h4 a, .text-color-link, .text-color-link a {
  color: var(--text-color);
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, .text-color-link:hover, .text-color-link a:hover {
  color: var(--link-color);
}
.text-color-link path {
  fill: var(--text-color);
}
.text-color-link:hover path, .text-color-link a:hover path {
  fill: var(--link-color);
}
.meta-text {
  color: var(--dark);
  font-size: var(--font-size-tiny);
  text-transform: uppercase;
}
b, strong {
  font-weight: var(--font-weight-bold);
}
i, em {
  font-style: italic;
}
button {
  background: inherit;
  color: inherit;
  border: none;
  font: inherit;
  padding: 0;
  transition-duration: var(--transition-duration);
  cursor: pointer;
}
hr {
  border: none;
  border-top: var(--border-width-default) solid var(--light);
  margin: 1.5em 0;
}
.placeholder-menu-item {
  cursor: default;
}
.screen-reader-text {
  display: none;
}
.created-by {
  display: flex;
  align-items: center;
  gap: 0.5ch;
}
.created-by a {
  color: var(--text-color);
}
.created-by a:hover {
  color: var(--link-color-hover);
}
.created-by svg, .created-by img {
  width: 1em;
}
.created-by path {
  fill: var(--text-color);
}
.button-wrapper, .wp-block-button__link, .wp-block-file .wp-block-file__button, input[type=submit] {
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  font-family: var(--font-family-body);
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  text-decoration: none;
  text-align: center;
  line-height: var(--line-height-small);
  word-break: keep-all;
  transition-duration: var(--transition-duration);
  cursor: pointer;
  outline: none !important;
}
.button-wrapper > .button-text {
  width: auto;
}
.button-wrapper img, .button-wrapper svg, .button-wrapper path {
  transition-duration: var(--transition-duration);
}
.button-wrapper.filled, .wp-block-button__link, .wp-block-file .wp-block-file__button, input[type=submit] {
  background: var(--button-background-color);
  color: var(--button-text-color);
  border-radius: var(--border-radius-small);
  height: 2.8rem;
  padding: 0 1.5rem;
}
.button-wrapper.filled:hover, .wp-block-button__link:hover, .wp-block-file .wp-block-file__button:hover, input[type=submit]:hover {
  background: var(--button-background-color-hover);
  color: var(--button-text-color-hover);
}
.button-wrapper.filled path {
  fill: var(--button-text-color);
}
.button-wrapper.filled:hover path {
  fill: var(--button-text-color-hover);
}
.button-wrapper.outline, .is-style-outline .wp-block-button__link {
  background: transparent;
  border: var(--border-width-default) solid var(--button-background-color);
  color: var(--button-background-color);
  border-radius: var(--border-radius-small);
  height: 2.8rem;
  padding: 0 1.25rem;
}
.button-wrapper.outline:hover, .is-style-outline .wp-block-button__link:hover {
  background: var(--button-background-color-hover);
  border-color: var(--button-background-color-hover);
  color: var(--button-text-color-hover);
}
.button-wrapper.outline path {
  fill: var(--button-background-color);
}
.button-wrapper.outline:hover path {
  fill: var(--button-text-color-hover);
}
.button-wrapper.plain {
  background: transparent;
  color: var(--text-color);
}
.button-wrapper.plain:hover {
  color: var(--link-color-hover);
}
.button-wrapper.plain path {
  fill: var(--text-color);
}
.button-wrapper.plain:hover path {
  fill: var(--link-color-hover);
}
.with-icon-left > *, .with-icon-right > * {
  width: 1.25em;
  height: 1.25em;
}
.button-wrapper.button-small, .button-small .wp-block-button__link, .wp-block-file .wp-block-file__button {
  font-size: var(--font-size-small);
}
.button-wrapper.button-small:not(.plain), .button-small .wp-block-button__link, .wp-block-file .wp-block-file__button {
  height: 2rem;
  padding: 0 1rem;
}
.button-wrapper.button-large, .button-large .wp-block-button__link {
  font-size: var(--font-size-large);
}
.button-wrapper.button-large:not(.plain), .button-large .wp-block-button__link {
  height: 3.6rem;
  padding: 0 1.8rem;
}
.card-style-article .heading {
  margin: 1rem 0 0.5rem 0;
}
.card-style-news {
  display: flex;
  flex-direction: column;
  background: var(--pale);
  border-radius: var(--border-radius-default);
  overflow: hidden;
}
.card-style-news .post-heading {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: var(--font-size-h4);
}
.card-style-news .content-wrapper {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-small);
  height: 100%;
}
.card-style-news .button-wrapper {
  margin-top: auto;
  width: 100%;
}
.card-style-news + .pagination {
  grid-column: 1/-1;
}
.cc-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black-alpha-1);
  z-index: 100000;
  justify-content: center;
  align-items: center;
  display: none;
  opacity: 0;
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
}
.cc-open .cc-overlay, .cc-preferences-open .cc-overlay {
  display: flex;
  opacity: 1;
}
@starting-style {
  .cc-open .cc-overlay, .cc-preferences-open .cc-overlay {
    opacity: 0;
  }
}
.cc-box, .cc-preferences {
  width: calc(100% - 2rem);
  border-radius: var(--border-radius-default);
  background: var(--white);
  font-size: var(--font-size-small);
  box-shadow: var(--box-shadow-default);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(1rem);
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
}
.cc-open .cc-box, .cc-preferences-open .cc-preferences {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@starting-style {
  .cc-open .cc-box, .cc-preferences-open .cc-preferences {
    opacity: 0;
    transform: translateY(1rem);
  }
}
.cc-box {
  max-width: 38rem;
  position: fixed;
}
.cc-preferences {
  max-width: 42rem;
  height: calc(100% - 2rem);
  max-height: 42rem;
  position: fixed;
}
.cc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--pale);
}
.cc-header .cc-title {
  margin-bottom: 0;
}
.cc-close-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--border-radius-small);
  background: var(--pale);
  flex-shrink: 0;
  transition-duration: var(--transition-duration);
}
.cc-close-button:hover {
  background: var(--button-background-color-hover);
}
.cc-close-button svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--dark);
  transition-duration: var(--transition-duration);
}
.cc-close-button:hover svg {
  stroke: var(--button-text-color-hover);
}
.cc-body {
  height: 100%;
  padding: 1.5rem;
  overflow-y: auto;
}
.cc-title {
  font-size: var(--font-size-h4);
}
.cc-preferences-intro {
  margin-bottom: 1.5rem;
}
.cc-categories {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cc-category-title {
  background: var(--pale);
  border-radius: var(--border-radius-small);
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition-duration: var(--transition-duration);
  transition-property: background;
}
.cc-category-open .cc-category-title {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.cc-category-title:hover {
  background: color-mix(in oklab, var(--pale) 95%, var(--black));
}
.cc-category-title-symbol {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(calc(-50% - .15rem)) rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--black-alpha-2);
  border-bottom: 2px solid var(--black-alpha-2);
}
.cc-category-open .cc-category-title-symbol {
  transform: translateY(calc(-50% + .05rem)) rotate(225deg);
}
.cc-category-title-text {
  font-weight: var(--font-weight-bold);
}
input.cc-category-toggle {
  margin-right: 0;
}
.cc-category-description {
  display: none;
  border: 2px solid var(--pale);
  border-bottom-left-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  padding: 1.5rem;
}
.cc-category-wrapper.cc-category-open .cc-category-description {
  display: block;
}
.cc-footer {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem;
  border-top: 1px solid var(--pale);
}
.cc-footer .button-wrapper {
  font-size: var(--font-size-small);
}
.cc-accept-all.button-wrapper {
  padding: 0 3rem;
}
.cc-settings.button-wrapper, .cc-necessary.button-wrapper, .cc-save-selection.button-wrapper {
  background: var(--pale);
  color: var(--black);
}
.cc-settings, .cc-save-selection {
  margin-right: auto;
}
@media (max-width: 640px) {
  .cc-settings.button-wrapper, .cc-necessary.button-wrapper, .cc-save-selection.button-wrapper {
    width: calc(50% - .26rem);
  }
  .cc-accept-all {
    width: 100%;
  }
}
.cc-link {
  color: var(--text-color);
}
.cc-link:hover {
  color: var(--link-color-hover);
}
@keyframes display-sub-menu-in {
  0% {
    opacity: 0;
    transform: translateY(0.25rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes display-sub-menu-out {
  0% {
    display: flex;
    opacity: 1;
    transform: translateY(0rem);
  }
  100% {
    display: none;
    opacity: 0;
    transform: translateY(0.25rem);
  }
}
@keyframes display-fade-up {
  0% {
    display: none;
    opacity: 0;
    transform: translateY(0.5rem);
  }
  1% {
    display: flex;
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    display: flex;
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes display-fade-down {
  0% {
    display: flex;
    opacity: 1;
    transform: translateY(0rem);
  }
  99% {
    display: flex;
    opacity: 0;
    transform: translateY(0.5rem);
  }
  100% {
    display: none;
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
@keyframes display-fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@keyframes display-fade-out {
  0% {
    display: flex;
    opacity: 1;
  }
  99% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
.embla {
  overflow: hidden;
}
.embla.mode-slide, .embla.mode-fade {
  --embla-item-count: var(--all-embla-item-count);
  --embla-gap-size: var(--all-embla-gap-size);
  --embla-gap-count: calc(var(--embla-item-count) - 1);
  --embla-gap-reduction: calc(var(--embla-gap-size) * var(--embla-gap-count) / var(--embla-item-count));
  --embla-item-size: calc(100% / var(--embla-item-count));
  --embla-flex-value: calc(var(--embla-item-size) - var(--embla-gap-reduction));
}
@media (max-width: 1280px) {
  .embla.mode-slide, .embla.mode-fade {
    --embla-item-count: var(--lg-embla-item-count);
    --embla-gap-size: var(--lg-embla-gap-size);
  }
}
@media (max-width: 960px) {
  .embla.mode-slide, .embla.mode-fade {
    --embla-item-count: var(--md-embla-item-count);
    --embla-gap-size: var(--md-embla-gap-size);
  }
}
@media (max-width: 640px) {
  .embla.mode-slide, .embla.mode-fade {
    --embla-item-count: var(--sm-embla-item-count);
    --embla-gap-size: var(--sm-embla-gap-size);
  }
}
.embla.mode-fade {
  --embla-item-count: 1;
  --embla-gap-size: 0px;
}
.embla__container {
  display: flex;
  padding: 0;
  list-style: none;
}
.embla__slide {
  flex: 0 0 var(--embla-flex-value);
  min-width: 0;
  margin-right: var(--embla-gap-size);
  padding: 0;
}
.embla.style-auto-width .embla__slide {
  flex: 0 0 auto;
}
[data-embla-align="start"] .embla__slide, [data-embla-align="center"] .embla__slide {
  margin-right: var(--embla-gap-size);
}
[data-embla-align="start"]:not(.embla-loop) .embla__slide:last-child, [data-embla-align="center"]:not(.embla-loop) .embla__slide:last-child {
  margin-right: 0;
}
[data-embla-align="end"] .embla__slide {
  margin-left: var(--embla-gap-size);
}
[data-embla-align="end"]:not(.embla-loop) .embla__slide:first-child {
  margin-left: 0;
}
.embla__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.embla__buttons {
  display: flex;
  gap: 0.75rem;
}
.embla__button {
  width: 3rem;
  height: 3rem;
  background: var(--button-background-color);
  border-radius: 100%;
  padding: 0.5rem;
  transition-duration: var(--transition-duration);
}
.embla__button:hover {
  background: var(--button-background-color-hover);
}
.embla__button[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.embla__button--prev svg {
  transform: translateX(-0.1rem);
}
.embla__button--next svg {
  transform: translateX(0.1rem);
}
.embla__button path {
  stroke: var(--white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.embla__dots {
  display: flex;
  gap: 5px;
}
.embla__dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--black-alpha-2);
  border-radius: 100%;
  transition-duration: var(--transition-duration);
}
.embla__dot.embla__dot--selected {
  background: var(--button-background-color);
}
.embla__dot:hover {
  background: var(--button-background-color-hover);
}
.footer {
  padding-bottom: 2rem !important;
}
.footer .columns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-large);
  justify-content: space-between;
  font-size: var(--font-size-small);
}
.footer .columns .column {
  max-width: 50ch;
}
.footer .columns .footer-menu menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer .columns .footer-menu menu li {
  display: flex;
  padding: 0;
}
.footer .columns .footer-menu menu li a {
  color: var(--text-color);
  padding: 0.3em 0;
}
.footer .columns .footer-menu menu li a:hover {
  color: var(--link-color-hover);
}
.footer .columns .footer-menu menu li:first-child a {
  padding-top: 0;
}
.footer .columns .footer-menu menu li:last-child a {
  padding-bottom: 0;
}
@media (max-width: 640px) {
  .footer .columns {
    flex-direction: column;
    gap: var(--spacing-medium);
  }
}
.footer .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  column-gap: 2em;
  row-gap: 0.75em;
  margin-top: var(--spacing-large);
  border-top: var(--border-width-default) solid var(--light);
  padding-top: 1.5rem;
  font-size: var(--font-size-small);
}
.footer .bottom-bar > div:first-child {
  display: flex;
  column-gap: 2em;
  row-gap: 0.75em;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 960px) {
  .footer .bottom-bar {
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
}
.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
.wp-block-table .has-fixed-layout {
  table-layout: fixed;
}
figure.wp-block-table thead > tr, figure.wp-block-table tfoot > tr {
  background: var(--black);
  color: var(--white);
  text-align: left;
}
.wp-block-file {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.wp-block-file:last-child {
  margin-bottom: 0;
}
.wp-block-file a:first-child {
  color: var(--black);
  margin-right: 1rem;
}
.wp-block-file a:first-child:hover {
  color: var(--link-color-hover);
}
.hamburger {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: transparent;
  cursor: pointer;
  outline: none;
  border: 0;
  margin: 0;
  padding: 10px;
  margin-right: -10px;
  z-index: 1000;
}
.hamburger-inner {
  width: 28px;
  height: 20px;
  display: flex;
  position: relative;
  margin-top: -2px;
}
.hamburger-top-bar, .hamburger-middle-bar, .hamburger-bottom-bar {
  position: absolute;
  background: var(--black);
  height: 2px;
}
.transparent-header:not(.scrolled, .off-canvas-open) .hamburger-top-bar, .transparent-header:not(.scrolled, .off-canvas-open) .hamburger-middle-bar, .transparent-header:not(.scrolled, .off-canvas-open) .hamburger-bottom-bar {
  background: var(--white);
}
.hamburger-top-bar {
  top: 0;
  transition: top 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
  width: 100%;
}
.hamburger-middle-bar {
  opacity: 1;
  top: 50%;
  transition: opacity 0s ease-in-out 0.2s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
  width: 100%;
}
.hamburger-bottom-bar {
  top: 100%;
  transition: top 0.2s ease-in-out 0.2s, transform 0.2s ease-in-out 0s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
  width: 100%;
}
.off-canvas-open .hamburger-top-bar {
  top: 50%;
  transform: rotate(45deg);
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
}
.off-canvas-open .hamburger-middle-bar {
  opacity: 0;
  transition: opacity 0s ease-in-out 0.2s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
}
.off-canvas-open .hamburger-bottom-bar {
  top: 50%;
  transform: rotate(-45deg);
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, width 0s ease-in-out 0.2s, background 0.4s ease-in-out 0s;
}
.off-canvas-open .hamburger-top-bar, .off-canvas-open .hamburger-middle-bar, .off-canvas-open .hamburger-bottom-bar {
  width: 100%;
}
@media (max-width: 960px) {
  .hamburger {
    display: flex;
  }
}
.header {
  background: var(--pale);
  height: var(--header-height);
  padding: 0 var(--horizontal-section-padding);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition-duration);
}
.transparent-header:not(.scrolled, .password-protected) .header {
  background: transparent;
}
.transparent-header .main {
  margin-top: calc(var(--header-height) * -1);
}
.transparent-header .main > .section-wrapper:first-child .section-content {
  padding-top: var(--header-height);
}
.header-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  max-width: var(--width-default);
  height: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}
.header-left-column {
  display: flex;
  align-items: center;
}
.header-right-column {
  display: flex;
  align-items: stretch;
}
.site-logo {
  display: flex;
  align-items: center;
  width: var(--site-logo-width);
  height: var(--site-logo-height);
}
.icon svg, .icon img {
  width: 100%;
  height: 100%;
}
.icon-row {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.icon-row img, .icon-row svg {
  width: 1.5em;
  margin-right: 0.5em;
}
.icon-row path {
  fill: var(--color-1);
  transition-duration: var(--transition-duration);
}
a.icon-row:hover path {
  fill: var(--link-color-hover);
}
ul, ol {
  --list-background: var(--black-alpha-1);
  --list-border-color: var(--black-alpha-2);
}
.inverted ul, .inverted ol {
  --list-background: var(--white-alpha-2);
  --list-border-color: var(--white-alpha-2);
}
.horizontal-list {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}
ul.plain-list, .plain-list ul {
  padding: 0;
  list-style: none;
}
ul.bullet-list, .bullet-list ul {
  padding: 0;
  list-style: none;
}
ul.bullet-list li, .bullet-list ul li {
  padding-left: 1em;
  position: relative;
}
ul.bullet-list li:before, .bullet-list ul li:before {
  content: "";
  background: var(--color-1);
  width: 0.4em;
  height: 0.4em;
  border-radius: 100%;
  transform: translateY(-50%);
  position: absolute;
  left: 2px;
  top: 0.8em;
}
ul.check-mark-list, .check-mark-list ul {
  padding: 0;
  list-style: none;
}
ul.check-mark-list li, .check-mark-list ul li {
  padding-left: 1.4em;
  position: relative;
}
ul.check-mark-list li:before, .check-mark-list ul li:before {
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: var(--light);
  width: 0.9em;
  height: 0.45em;
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  left: 1px;
  top: 0.65em;
}
ul.chevron-list, .chevron-list ul {
  padding: 0;
  list-style: none;
}
ul.chevron-list li, .chevron-list ul li {
  padding-left: 1em;
  position: relative;
}
ul.chevron-list li:before, .chevron-list ul li:before {
  content: "";
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: var(--light);
  width: 0.5em;
  height: 0.5em;
  transform: rotate(45deg);
  position: absolute;
  left: 0;
  top: 0.55em;
}
ul.divider-list, .divider-list ul {
  padding: 0;
  width: 100%;
  list-style: none;
}
ul.divider-list li, .divider-list ul li {
  padding: 0.25em 0;
  border-bottom: var(--border-width-small) solid var(--list-border-color);
  display: block;
  width: 100%;
}
ul.divider-list li:first-child, .divider-list ul li:first-child {
  padding-top: 0;
}
ul.divider-list li:last-child, .divider-list ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
ul.striped-list, .striped-list ul {
  padding: 0;
  width: 100%;
  list-style: none;
}
ul.striped-list li, .striped-list ul li {
  display: block;
  padding: 0.45em 0.9em;
  width: 100%;
}
ul.striped-list li:nth-child(odd), .striped-list ul li:nth-child(odd) {
  background: var(--list-background);
}
ol.numbered-list, .numbered-list ol {
  counter-reset: item;
  padding: 0;
  list-style: none;
}
ol.numbered-list li, .numbered-list ol li {
  padding: 0.4em 0 0.4em 2.75em;
  position: relative;
}
ol.numbered-list li:before, .numbered-list ol li:before {
  counter-increment: item;
  content: counter(item) "";
  width: 2em;
  height: 2em;
  background: var(--color-1);
  color: var(--white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 1px;
  top: 0.2em;
}
.main-menu-desktop {
  display: flex;
  margin-right: -1rem;
  height: 100%;
}
.main-menu-desktop .menu-list {
  display: flex;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu-desktop a {
  color: var(--black);
  padding: 0 1rem;
  height: 100%;
  word-break: keep-all;
  display: flex;
  align-items: center;
}
.main-menu-desktop a:hover, .main-menu-desktop .current-menu > a, .main-menu-desktop .menu-item:has(.current-menu) > a {
  color: inherit;
}
.transparent-header:not(.scrolled) .main-menu-desktop a {
  color: var(--white);
}
.main-menu-desktop .menu-item {
  position: relative;
  padding: 0;
}
.main-menu-desktop .has-children > a {
  padding-right: 2rem;
}
.main-menu-desktop .menu-item > .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  margin: 0;
  padding: 1rem;
  width: 13rem;
  list-style-type: none;
  background: var(--pale);
  border-bottom-left-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
  font-size: var(--font-size-small);
  display: none;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
  flex-direction: column;
}
.transparent-header:not(.scrolled) .main-menu-desktop .menu-item > .sub-menu {
  background: var(--black-alpha-3);
}
.main-menu-desktop .has-children:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.main-menu-desktop .menu-item.hover > .sub-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@starting-style {
  .main-menu-desktop .menu-item.hover > .sub-menu {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
}
.main-menu-desktop .sub-menu-icon {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  display: block;
  position: absolute;
  top: calc(50% - 0.4rem);
  right: 0.9rem;
  transform: rotate(45deg);
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  opacity: 0.5;
  transition-duration: var(--transition-duration);
  pointer-events: none;
}
.transparent-header:not(.scrolled) .main-menu-desktop .sub-menu-icon {
  border-color: var(--white);
}
.main-menu-desktop .menu-item > .sub-menu > .menu-item > .sub-menu {
  display: none;
  opacity: 0;
  transform: translateX(-0.5rem) translateY(0);
  position: absolute;
  top: -1rem;
  left: 100%;
  border-radius: var(--border-radius-small);
}
.main-menu-desktop .menu-item > .sub-menu > .menu-item.hover > .sub-menu {
  display: flex;
  opacity: 1;
  transform: translateX(0) translateY(0);
}
@starting-style {
  .main-menu-desktop .menu-item > .sub-menu > .menu-item.hover > .sub-menu {
    opacity: 0;
    transform: translateX(-0.5rem) translateY(0);
  }
}
.main-menu-desktop .menu-item > .sub-menu .sub-menu-icon {
  top: calc(50% - 0.25rem);
  transform: rotate(-45deg);
}
.main-menu-desktop .sub-menu a {
  padding: 0.5rem 1rem;
}
@media (max-width: 960px) {
  .main-menu-desktop {
    display: none;
  }
}
.main-menu-desktop .menu-item > .mega-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background: var(--pale);
  display: none;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
  flex-direction: column;
}
.main-menu-desktop .menu-item.hover > .mega-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@starting-style {
  .main-menu-desktop .menu-item.hover > .mega-menu {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
}
/* Main Menu Desktop Hover Styles */
.main-menu-desktop a:before {
  content: "";
  width: calc(100% - 2rem);
  height: 1px;
  background: transparent;
  position: absolute;
  left: 1rem;
  top: calc(50% + 1rem);
  transition-duration: var(--transition-duration);
}
.main-menu-desktop .menu-item.hover > a:before, .main-menu-desktop .current-menu > a:before, .main-menu-desktop .menu-item:has(.current-menu) > a:before {
  background: var(--link-color);
}
.transparent-header:not(.scrolled) .main-menu-desktop .menu-item.hover > a:before, .transparent-header:not(.scrolled) .main-menu-desktop .current-menu > a:before, .transparent-header:not(.scrolled) .main-menu-desktop .menu-item:has(.current-menu) > a:before {
  background: var(--white);
}
body.off-canvas-open {
  overflow: hidden;
}
.off-canvas {
  position: fixed !important;
  top: 0;
  left: -100vw;
  width: 100vw;
  height: 100%;
  background: var(--pale);
  display: flex;
  align-items: start;
  justify-content: center;
  transform: translateX(0);
  transition-duration: 0.4s;
  z-index: 95;
  padding-top: var(--header-height);
}
.scrolled .off-canvas {
  padding-top: var(--header-height);
}
.off-canvas-open .off-canvas, .off-canvas-open.off-canvas {
  transform: translateX(100vw);
}
.off-canvas-content {
  max-width: 40rem;
  width: 100%;
  height: 100%;
  padding: var(--vertical-section-padding);
  overflow-y: scroll;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  display: none;
  flex-direction: column;
  transition-delay: 0.4s;
  transition-behavior: allow-discrete;
}
.off-canvas-open .off-canvas-content {
  display: flex;
}
/* Hide scrollbar for IE, Edge and Firefox */
.off-canvas-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.off-canvas-content::-webkit-scrollbar {
  display: none;
}
.pagination {
  margin-top: var(--spacing-medium);
}
.pagination ul {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.pagination a, .pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--pale);
  color: var(--text-color);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--border-radius-small);
  transition-duration: var(--transition-duration);
}
.pagination a:hover, .pagination span:hover {
  background: var(--link-color-hover);
  color: var(--white);
}
.pagination span.current {
  background: var(--link-color);
  color: var(--white);
}
.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  margin: 0 0 0 1rem;
  padding: 10px;
  height: 100%;
  border: none;
  border-radius: 100%;
  transition-duration: var(--transition-duration);
  cursor: pointer;
}
.search-trigger:hover {
  color: var(--link-color-hover);
}
.search-trigger svg, .search-trigger img {
  width: 1.5rem;
}
.search-trigger path {
  fill: var(--text-color);
  transition-duration: var(--transition-duration);
}
.search-trigger:hover path {
  fill: var(--link-color-hover);
}
.transparent-header:not(.scrolled, .off-canvas-open) .search-trigger path {
  fill: var(--white);
}
.transparent-header:not(.scrolled) .search-trigger:hover {
  background: var(--white-alpha-1);
}
.search-overlay-wrapper {
  justify-content: center;
  align-items: start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: calc(var(--header-height) * 2) calc(0.5rem + 5vw);
  pointer-events: none;
  z-index: 100;
  display: none;
  opacity: 0;
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
}
.search-open .search-overlay-wrapper {
  display: flex;
  opacity: 1;
}
@starting-style {
  .search-open .search-overlay-wrapper {
    opacity: 0;
  }
}
.search-overlay-content {
  background: var(--white);
  width: 100%;
  max-width: 48rem;
  padding: var(--spacing-small);
  border-radius: var(--border-radius-default);
  pointer-events: auto;
  box-shadow: var(--box-shadow-default);
  display: none;
  opacity: 0;
  transform: translateY(0.75rem);
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
}
.search-open .search-overlay-content {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@starting-style {
  .search-open .search-overlay-content {
    opacity: 0;
    transform: translateY(0.75rem);
  }
}
.search-form {
  width: 100%;
  display: flex;
  gap: 1rem;
}
.search-form label {
  width: 100%;
}
.search-results-section .search-form {
  margin-bottom: var(--spacing-large);
}
.search-results-section .items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-small);
}
.search-results-section .items .item {
  display: flex;
  gap: var(--spacing-default);
  background: var(--pale);
  padding: var(--spacing-default);
  border-radius: var(--border-radius-default);
}
@media (max-width: 480px) {
  .search-results-section .items .item {
    flex-direction: column;
  }
}
.search-results-section .items .item > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
  flex-grow: 3;
}
.search-results-section .items .item > div:last-child {
  flex: 1;
  flex-grow: 1;
}
.search-results-section .items .item h2 {
  margin-bottom: 0.5em;
}
.search-results-section .items .item .excerpt {
  font-size: var(--font-size-small);
}
.search-results-section .items .item img {
  aspect-ratio: 1;
}
@media (max-width: 480px) {
  .search-results-section .items .item img {
    aspect-ratio: 2;
  }
}
.section-wrapper {
  width: 100%;
  padding: var(--section-padding);
}
.section-content {
  max-width: var(--width-default);
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}
.width-narrow {
  max-width: var(--width-narrow);
}
.width-wide {
  max-width: var(--width-wide);
}
.width-full {
  max-width: 100%;
}
.social-icons {
  display: flex;
  gap: 0.5rem;
}
.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-1);
  width: 2.8rem;
  height: 2.8rem;
  border-radius: var(--border-radius-small);
}
.social-icons a:hover {
  background: var(--link-color-hover);
}
.social-icons a > * {
  width: 1.5rem;
  height: 1.5rem;
}
.social-icons path {
  fill: var(--white);
}
table {
  border-collapse: collapse;
  width: 100%;
}
table tr {
  transition-duration: var(--transition-duration);
}
table td, table th {
  padding: 0.5rem 1rem;
}
.table-divider tr {
  border-bottom: var(--border-width-small) solid var(--light);
}
.tabel-cell-border td, .tabel-cell-border th, .is-style-regular td, .is-style-regular th {
  border: 1px solid var(--light);
}
.table-striped tr:nth-child(even), .is-style-stripes tr:nth-child(even) {
  background: var(--pale);
}
.table-hover tr:hover {
  background: var(--light);
}
.viewport-height-small {
  height: calc(var(--viewport-height-small) * 1vh);
  height: calc(var(--viewport-height-small) * 1svh);
}
.viewport-height-medium {
  height: calc(var(--viewport-height-medium) * 1vh);
  height: calc(var(--viewport-height-medium) * 1svh);
}
.viewport-height-large {
  height: calc(var(--viewport-height-large) * 1vh);
  height: calc(var(--viewport-height-large) * 1svh);
}
.viewport-height-full-minus-header {
  height: calc(var(--viewport-height-full) * 1vh - var(--header-height));
  height: calc(var(--viewport-height-full) * 1svh - var(--header-height));
}
.viewport-height-full {
  height: calc(var(--viewport-height-full) * 1vh);
  height: calc(var(--viewport-height-full) * 1svh);
}
.viewport-overlay {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--overlay-background);
  display: none;
  opacity: 0;
  transition-duration: var(--transition-duration);
  transition-behavior: allow-discrete;
}
.search-open .viewport-overlay {
  display: block;
  opacity: 1;
}
@starting-style {
  .search-open .viewport-overlay {
    opacity: 0;
  }
}
body.search-open {
  overflow: hidden;
}
