:root {
  --color-1: #16E197;
  --color-2: tomato;
  --color-3: lightgreen;
  --white: #ffffff;
  --pale: #555F6D;
  --light: #494F5D;
  --dark: #10151b;
  --black: #0a0c12;
  --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(--white);
  --heading-color: var(--white);
  --link-color: var(--color-1);
  --link-color-hover: color-mix(in oklab, var(--link-color) 60%, var(--white));
  --button-background-color: var(--link-color);
  --button-background-color-hover: var(--link-color-hover);
  --button-text-color: var(--black);
  --button-text-color-hover: var(--button-text-color);
  --overlay-background: var(--black-alpha-1);
  --font-family-body: FiraSans, sans-serif;
  --font-family-heading: FiraCode, 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(14px, 0.21vi + 13.33px, 16px);
  --font-size-h4: clamp(17.5px, 0.4vi + 16.22px, 21.33px);
  --font-size-h3: clamp(21.88px, 0.68vi + 19.69px, 28.43px);
  --font-size-h2: clamp(27.34px, 1.1vi + 23.83px, 37.9px);
  --font-size-h1: clamp(34.18px, 1.7vi + 28.73px, 50.52px);
  /* Change font size for base and h1-h4 here:
	https://www.fluid-type-scale.com/calculate?minFontSize=14&minWidth=320&minRatio=1.25&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(38px, 3.54vi + 26.67px, 72px);
  /* Change font size for huge here:
	https://www.fluid-type-scale.com/calculate?minFontSize=45&minWidth=320&minRatio=1.25&maxFontSize=75&maxWidth=1280&maxRatio=1.333&steps=huge&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-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(9.01px, 0.91vi + 6.09px, 17.78px);
  --spacing-small: clamp(13.42px, 1.38vi + 9.01px, 26.67px);
  --spacing-default: clamp(20px, 2.08vi + 13.33px, 40px);
  --spacing-medium: clamp(29.8px, 3.15vi + 19.73px, 60px);
  --spacing-large: clamp(44.4px, 4.75vi + 29.2px, 90px);
  --button-margin-top: 1.5rem;
  --viewport-height-small: 25;
  --viewport-height-medium: 50;
  --viewport-height-large: 75;
  --viewport-height-full: 100;
  --width-wide: 1440px;
  --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(--black);
  --heading-color: var(--black);
  --link-color: var(--black);
  --button-background-color: var(--black);
  --button-background-color-hover: var(--link-color-hover);
  --button-text-color: var(--white);
  --button-text-color-hover: var(--black);
}
.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);
}
.fluentform .ff-el-form-hide_label .ff-el-input--label {
  display: none;
}
.fluentform .ff-el-form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.fluentform .ff-el-form-check:last-child {
  margin-bottom: 0;
}
.fluentform .ff-el-form-check input[type=checkbox], .fluentform .ff-el-form-check input[type=radio] {
  -webkit-appearance: none;
}
.fluentform .ff-el-form-check .ff-el-form-check-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  line-height: var(--line-height-medium);
}
.fluentform .ff-el-form-check .ff-el-form-check-label .ff-el-form-check-input {
  top: 50%;
  margin-right: 0.5em;
}
.fluentform .ff-el-form-check.ff-el-tc label.ff_tc_label {
  display: flex;
  align-items: center;
}
.fluentform .ff-el-form-check.ff-el-tc label.ff_tc_label > span {
  width: auto;
  padding-top: 0 !important;
}
.fluentform .ff_upload_btn.ff-btn {
  display: inline-flex !important;
  padding: 0 1rem !important;
  background: var(--dark) !important;
}
.fluentform .ff-upload-preview {
  border: 0 !important;
  background: var(--pale);
  border-radius: var(--border-radius-small) !important;
}
.fluentform .ff-el-progress-bar {
  background-color: var(--color-1) !important;
}
.fluentform .ff-upload-remove {
  top: 0 !important;
}
.fluentform .ff-upload-details .ff-upload-remove:hover {
  text-shadow: none !important;
}
.inverted .fluentform .ff-el-input--label label, .inverted .fluentform .ff-el-is-error .text-danger, .inverted .fluentform .ff-message-success {
  color: var(--white);
}
.accordion-menu {
  width: 100%;
}
.accordion-menu ul {
  list-style: none;
  padding: 0;
}
.accordion-menu a {
  min-height: 2em;
  padding-right: 2.5em;
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.accordion-menu .menu-item {
  position: relative;
  width: 100%;
  font-size: var(--font-size-medium);
}
.accordion-menu .menu-item .sub-menu-icon {
  display: none;
  width: 2em;
  height: 2em;
  position: absolute;
  top: 0;
  right: 0;
  transition-duration: var(--transition-duration);
}
.accordion-menu .menu-item .sub-menu-icon:hover {
  background: var(--pale);
}
.accordion-menu .menu-item-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;
}
.accordion-menu .sub-menu li {
  display: flex;
  animation: display-fade-down var(--transition-duration) ease;
}
.accordion-menu .sub-menu-open + .sub-menu li {
  display: flex;
  animation: display-fade-up var(--transition-duration) ease;
}
.accordion .icon:before {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 2px;
}
.accordion .icon:after {
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 2px;
  height: 100%;
}
.accordion .open > .title > .icon {
  transform: translateY(-50%) rotate(-135deg);
}
.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(--black);
  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;
  position: relative;
}
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;
}
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 a {
  color: var(--text-color);
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, .text-color-link a:hover {
  color: var(--link-color);
}
.text-color-link a path {
  fill: var(--text-color);
}
.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;
  cursor: pointer;
}
.placeholder-menu-item {
  cursor: default;
}
.screen-reader-text {
  display: none;
}
.created-by {
  display: flex;
  align-items: center;
  gap: 0.5ch;
}
.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, .fluentform .ff_upload_btn.ff-btn, .cm__btn, .pm__btn, 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: 600;
  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, .fluentform .ff_upload_btn.ff-btn, .cm__btn, .pm__btn, input[type=submit] {
  background: var(--button-background-color);
  color: var(--button-text-color);
  border-radius: var(--border-radius-large);
  height: 2.8rem;
  padding: 0 1.5rem;
}
.button-wrapper.filled:hover, .wp-block-button__link:hover, .wp-block-file .wp-block-file__button:hover, .cm__btn:hover, .pm__btn: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-large);
  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;
}
.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;
  animation: display-fade-out var(--transition-duration) ease;
}
.cc-open .cc-overlay, .cc-preferences-open .cc-overlay {
  display: flex;
  animation: display-fade-in var(--transition-duration) ease;
}
.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;
  animation: display-fade-down var(--transition-duration) ease;
}
.cc-open .cc-box, .cc-preferences-open .cc-preferences {
  display: flex;
  animation: display-fade-up var(--transition-duration) ease;
}
.cc-box {
  max-width: 38rem;
  position: fixed;
}
.cc-preferences {
  max-width: 42rem;
  height: calc(100% - 2rem);
  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 {
  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);
}
.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-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%;
  }
}
@keyframes display-sub-menu-in {
  0% {
    display: none;
    opacity: 0;
    transform: translateY(0.25rem);
  }
  1% {
    display: flex;
    opacity: 0;
    transform: translateY(0.25rem);
  }
  100% {
    display: flex;
    opacity: 1;
    transform: translateY(0rem);
  }
}
@keyframes display-sub-menu-out {
  0% {
    display: flex;
    opacity: 1;
    transform: translateY(0rem);
  }
  99% {
    display: flex;
    opacity: 0;
    transform: translateY(0.25rem);
  }
  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;
  }
}
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "FiraCode";
  src: url("../fonts/FiraCode-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.grid {
  display: grid;
}
.grid-column-tiny {
  grid-template-columns: repeat(auto-fill, minmax(min(18ch, 100%), 1fr));
}
.grid-column-small {
  grid-template-columns: repeat(auto-fill, minmax(min(22ch, 100%), 1fr));
}
.grid-column-default {
  grid-template-columns: repeat(auto-fill, minmax(min(26ch, 100%), 1fr));
}
.grid-column-medium {
  grid-template-columns: repeat(auto-fill, minmax(min(34ch, 100%), 1fr));
}
.grid-column-large {
  grid-template-columns: repeat(auto-fill, minmax(min(46ch, 100%), 1fr));
}
.column-gap-tiny {
  column-gap: var(--spacing-tiny);
}
.column-gap-small {
  column-gap: var(--spacing-small);
}
.column-gap-default {
  column-gap: var(--spacing-default);
}
.column-gap-medium {
  column-gap: var(--spacing-medium);
}
.column-gap-large {
  column-gap: var(--spacing-large);
}
.row-gap-tiny {
  row-gap: var(--spacing-tiny);
}
.row-gap-small {
  row-gap: var(--spacing-small);
}
.row-gap-default {
  row-gap: var(--spacing-default);
}
.row-gap-medium {
  row-gap: var(--spacing-medium);
}
.row-gap-large {
  row-gap: var(--spacing-large);
}
.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(--white);
  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(--black);
  color: var(--white);
  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-style-1 {
  display: flex;
  width: 4rem;
  height: 4rem;
}
.icon-style-1 svg, .icon-style-1 img {
  fill: var(--black);
}
.icon-style-2 {
  display: flex;
  width: 5rem;
  height: 5rem;
  background: var(--color-1);
  border-radius: var(--border-radius-default);
  padding: 0.5rem;
}
.icon-style-2 svg, .icon-style-2 img {
  fill: var(--white);
}
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(--text-color);
  width: 0.5em;
  height: 0.5em;
  border-radius: 100%;
  transform: translateY(-50%);
  position: absolute;
  left: 1px;
  top: 0.75em;
}
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(--text-color);
  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(--text-color);
  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 {
  margin-right: -1rem;
  height: 100%;
}
.main-menu-desktop > ul {
  display: flex;
  height: 100%;
  list-style: none;
  padding: 0;
}
.main-menu-desktop a {
  color: var(--white);
  padding: 0 1rem;
  height: 100%;
  word-break: keep-all;
  display: flex;
  align-items: center;
}
.main-menu-desktop a:hover, .main-menu-desktop .current-menu-item > a, .main-menu-desktop .current-menu-parent > a {
  color: inherit;
}
.transparent-header:not(.scrolled) .main-menu-desktop a {
  color: var(--white);
}
.main-menu-desktop .menu-item {
  position: relative;
}
.main-menu-desktop .menu-item-has-children > a {
  padding-right: 2rem;
}
.main-menu-desktop .menu-item-has-children > .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  margin: 0;
  padding: 1rem;
  width: 13rem;
  list-style-type: none;
  background: var(--pale);
  font-size: var(--font-size-small);
  display: none;
  flex-direction: column;
  animation: display-sub-menu-out 0.4s ease;
}
.transparent-header:not(.scrolled) .main-menu-desktop .menu-item-has-children > .sub-menu {
  background: var(--black-alpha-3);
}
.main-menu-desktop .menu-item-has-children:last-child > .sub-menu {
  left: auto;
  right: 0;
}
.main-menu-desktop .menu-item-has-children.hover > .sub-menu {
  display: flex;
  animation: display-sub-menu-in 0.4s ease;
}
.main-menu-desktop .menu-item-has-children > a:after {
  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);
}
.transparent-header:not(.scrolled) .main-menu-desktop .menu-item-has-children > a:after {
  border-color: var(--white);
}
.main-menu-desktop .menu-item-has-children > .sub-menu > .menu-item-has-children > .sub-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: -1rem;
  left: calc(100% + 1rem);
}
.main-menu-desktop .menu-item-has-children > .sub-menu > .menu-item-has-children.hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.main-menu-desktop .menu-item-has-children > .sub-menu .menu-item-has-children > a:after {
  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 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-item > a:before, .main-menu-desktop .current-menu-parent > 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-item > a:before, .transparent-header:not(.scrolled) .main-menu-desktop .current-menu-parent > 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(--dark);
  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;
  animation: display-fade-out var(--transition-duration) ease;
}
.off-canvas-open .off-canvas-content {
  display: flex;
  animation: display-fade-in var(--transition-duration) ease;
}
/* 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;
}
.bricks-pagination ul, .woocommerce-pagination ul {
  gap: 0.5rem;
}
.bricks-pagination ul .page-numbers, .woocommerce-pagination ul .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--pale);
  border-radius: var(--border-radius-small);
  font-size: var(--font-size-small);
}
.bricks-pagination ul a.page-numbers, .woocommerce-pagination ul a.page-numbers {
  color: var(--text-color);
}
.bricks-pagination ul a.page-numbers:hover, .bricks-pagination ul .page-numbers.current, .woocommerce-pagination ul a.page-numbers:hover, .woocommerce-pagination ul .page-numbers.current {
  background: var(--link-color);
  color: var(--white);
}
.woocommerce-pagination .page-numbers li {
  margin: 0;
}
.parallax-background {
  position: relative;
  overflow: hidden;
}
.parallax-background > img:first-of-type {
  position: absolute;
  left: 0;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.viewport-height-full.parallax-background > img:first-of-type {
  top: -50%;
  height: 100%;
}
.viewport-height-full-minus-header.parallax-background > img:first-of-type {
  top: -50%;
  height: calc(100% + var(--header-height) / 2);
}
.viewport-height-large.parallax-background > img:first-of-type {
  top: calc(50 / var(--viewport-height-large) * -100%);
  height: calc(50 / var(--viewport-height-large) * 100% + 50%);
  transform-origin: 0% 0%;
}
.viewport-height-medium.parallax-background > img:first-of-type {
  top: calc(50 / var(--viewport-height-medium) * -100%);
  height: calc(50 / var(--viewport-height-medium) * 100% + 50%);
}
.viewport-height-small.parallax-background > img:first-of-type {
  top: calc(50 / var(--viewport-height-small) * -100%);
  height: calc(50 / var(--viewport-height-small) * 100% + 50%);
}
.hero-section.parallax-background > img:first-of-type {
  top: -65%;
  height: 105%;
}
/* Examples
25vh = top: -200%; height: 250%;
50vh = top: -100%; height: 150%;
75vh = top: -67%; height: 117%;
100vh = top: -50%; height: 100%;

// 50 / 25 = 2
// 50 / 50 = 1
// 50 / 75 = 0,67
// 50 / 100 = 0.5
*/
.search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  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 svg, .search-trigger img {
  width: 2rem;
}
.search-trigger path {
  fill: var(--black);
  transition-duration: var(--transition-duration);
}
.search-trigger:hover path {
  fill: var(--link-color);
}
.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: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: calc(0.5rem + 5vw);
  display: none;
  animation: display-fade-out var(--transition-duration) ease;
  pointer-events: none;
}
.search-open .search-overlay-wrapper {
  display: flex;
  animation: display-fade-in var(--transition-duration) ease;
}
.search-overlay-content {
  background: var(--white);
  width: 100%;
  max-width: 48rem;
  padding: var(--spacing-small);
  border-radius: var(--border-radius-default);
  pointer-events: auto;
}
.search-form {
  display: flex;
  gap: 1rem;
}
.search-form label {
  width: 100%;
}
.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(--link-color);
  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;
}
.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;
  animation: display-fade-out var(--transition-duration) ease;
}
.search-open .viewport-overlay {
  display: flex;
  animation: display-fade-in var(--transition-duration) ease;
}
body.search-open {
  overflow: hidden;
}
.parallaxImg {
  margin-top: var(--spacing-medium);
}
@media (max-width: 960px) {
  .parallaxImg {
    margin-top: 5rem;
  }
}
.scrub-etiketter {
  left: -250rem !important;
}
.scrub-etiketter-reverse {
  right: -20rem;
}
.flair {
  width: 12px;
  height: 12px;
  position: fixed;
  top: -0.8rem;
  left: 0.8rem;
  pointer-events: none;
  transition: 0.12s;
  z-index: 9999;
}
@media (max-width: 960px) {
  .flair {
    display: none;
  }
}
.logo-follow-mouse {
  background: var(--color-1);
  border-radius: 100%;
}
@media (max-width: 960px) {
  .logo-follow-mouse {
    display: none;
  }
}
.image-container {
  background-color: var(--black);
}
@media (max-width: 640px) {
  .parallax-background > img:first-of-type {
    top: 0;
  }
}
.parallax-body-background {
  position: absolute;
  top: 0;
  width: 100vw;
  height: calc(99% + 300px);
  background-image: url("../images/masvingar-2.png");
  background-repeat: repeat;
  background-size: 2rem;
  z-index: -2;
  opacity: 0.8;
}
.parallax {
  transform: translateY(0%);
}
.text-glow .highlighted {
  --glow-color: rgba(176, 255, 206, 0.474);
  --glow-spread-color: rgba(123, 255, 183, 0.767);
  --enhanced-glow-color: rgba(206, 255, 221, 0.669);
  --btn-color: rgba(61, 136, 88, 0.619);
  -webkit-text-stroke-color: var(--glow-color);
  -webkit-text-stroke-width: 0.001em;
  paint-order: stroke fill;
  outline: none;
  text-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
}
.flair-glow {
  --glow-color: rgba(176, 255, 206, 0.308);
  --glow-spread-color: rgba(123, 255, 183, 0.524);
  --enhanced-glow-color: rgba(206, 255, 221, 0.186);
  --btn-color: rgba(61, 136, 88, 0.496);
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  outline: none;
  text-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
}
.icon-glow {
  --glow-color: rgba(176, 255, 206, 0.093);
  --glow-spread-color: rgba(123, 255, 183, 0.138);
  --enhanced-glow-color: rgba(206, 255, 221, 0.065);
  --btn-color: rgba(61, 136, 88, 0.15);
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  outline: none;
  text-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
}
.button-glow {
  --glow-color: rgba(176, 255, 206, 0.089);
  --glow-spread-color: rgba(123, 255, 183, 0.15);
  --enhanced-glow-color: rgba(206, 255, 221, 0.078);
  --btn-color: rgba(61, 136, 88, 0.099);
  border: solid var(--glow-color);
  color: var(--glow-color);
  background-color: var(--btn-color);
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
}
.button-glow:hover {
  --glow-color: rgba(176, 255, 206, 0.245);
  --glow-spread-color: rgba(123, 255, 183, 0.325);
  --enhanced-glow-color: rgba(206, 255, 221, 0.457);
  --btn-color: rgba(61, 136, 88, 0.427);
  border: solid var(--glow-color);
  color: var(--glow-color);
  background-color: var(--btn-color);
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
}
.hero-button-glow {
  --glow-color: rgba(176, 255, 206, 0.150);
  --glow-spread-color: rgba(123, 255, 183, 0.200);
  --enhanced-glow-color: rgba(206, 255, 221, 0.571);
  --btn-color: rgba(61, 136, 88, 0.144);
  border: solid var(--glow-color);
  color: var(--glow-color);
  background-color: var(--btn-color);
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
  z-index: 1;
  position: relative;
}
.hero-button-glow:hover {
  --glow-color: rgb(176, 255, 206);
  --glow-spread-color: rgba(123, 255, 183, 0.781);
  --enhanced-glow-color: rgb(206, 255, 221);
  --btn-color: rgb(61, 136, 88);
  border: solid var(--glow-color);
  color: var(--glow-color);
  background-color: var(--btn-color);
  outline: none;
  box-shadow: 0 0 1em 0.25em var(--glow-color), 0 0 4em 1em var(--glow-spread-color), inset 0 0 0.75em 0.25em var(--glow-color);
  text-shadow: 0 0 0.5em var(--glow-color);
  position: relative;
  transition: all 0.3s;
}
.hero-button-glow::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--glow-spread-color);
  filter: blur(2em);
  opacity: 0.7;
  transform: perspective(1.5em) rotateX(35deg) scale(1, 0.6);
  transition: all 0.7s;
  z-index: -1;
}
.hero-button-glow:active {
  box-shadow: 0 0 0.6em 0.25em var(--glow-color), 0 0 2.5em 2em var(--glow-spread-color), inset 0 0 0.5em 0.25em var(--glow-color);
}
.imageTilt {
  position: relative;
  align-self: stretch;
  flex-shrink: 0;
  object-fit: cover;
  max-width: 100%;
  transition: 0.2s;
}
.highlighted {
  color: var(--color-1);
}
.light-text {
  color: var(--pale);
}
.light-heading {
  color: var(--pale);
}
.icon-color {
  color: var(--color-1);
  width: 1.2rem;
}
.icon-color svg {
  height: 100%;
  width: 100%;
}
.icon-color svg path {
  fill: var(--color-1);
}
.info-card {
  background-color: var(--dark);
  padding: calc(var(--spacing-default) * 1.2);
  border-radius: var(--border-radius-default);
}
.case-card {
  background-color: var(--dark);
  padding: 0.8rem;
  border-radius: var(--border-radius-default);
}
.case-card img {
  width: 100%;
  border-radius: var(--border-radius-small);
}
.case-card .case-info-text {
  margin-top: 0.5rem;
  padding: var(--spacing-small);
}
.case-slider {
  overflow-x: visible;
}
.line {
  display: block;
  overflow: hidden;
}
.archive-loop-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: var(--spacing-small);
  row-gap: var(--spacing-small);
  padding-inline-start: 0px !important;
}
@media (max-width: 960px) {
  .archive-loop-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .archive-loop-container {
    grid-template-columns: 1fr;
  }
}
.archive-loop-container li {
  list-style: none;
}
.pagination-archive {
  display: flex;
  justify-content: space-between;
}
.slider-loop-container {
  display: flex;
  width: 100%;
}
html.lenis, html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
