@charset "UTF-8";
:root {
  --root-size: 16px;
  --font-default: "Archivo", sans-serif;
  --font-headline: "Archivo Black", sans-serif;
  --layout-columns: 12;
  --layout-gutter: clamp(1.5rem, 2.22vw + 1rem, 3rem);
  --layout-offset: clamp(1.25rem, 4.07vw + 0.33rem, 4rem);
  --layout-width-max: calc(1440px + (var(--layout-offset) * 2));
  --color-1: #000000;
  --color-2: #ffffff;
  --color-3: #F6FE3B;
  --color-4: #FD58B3;
  --color-5: #47ADE1;
  --color-text: var(--color-1);
  --color-text-inverted: var(--color-2);
  --color-primary: var(--color-3);
  --color-secondary: var(--color-4);
  --color-tertiary: var(--color-5);
  --color-background-1: var(--color-2);
  --color-background-2: var(--color-3);
  --color-border: var(--color-1);
  --header-height: clamp(4.5rem, 2.22vw + 4rem, 6rem);
  --block-margin: clamp(3rem, 7.41vw + 1.33rem, 8rem);
  --block-padding: clamp(3rem, 7.41vw + 1.33rem, 8rem);
  --block-spacing: clamp(2rem, 1.48vw + 1.67rem, 3rem);
  --content-margin-medium: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  --content-margin-large: clamp(2rem, 1.48vw + 1.67rem, 3rem);
  --admin-bar: 46px;
}
@media (min-width: 782px) {
  :root {
    --admin-bar: 32px;
  }
}

/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
  box-sizing: border-box;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.15; /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%; /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/
body {
  margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/
/**
Add the correct font weight in Chrome and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  border-color: currentcolor;
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

@font-face {
  font-display: swap;
  font-family: "Archivo";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/archivo/archivo-v19-latin-300.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Archivo Black";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/archivo-black/archivo-black-v21-latin-regular.woff2") format("woff2");
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--block-margin) / 2 + var(--header-height));
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-default);
  font-size: clamp(1.13rem, 0.37vw + 1.04rem, 1.38rem);
  font-weight: 400;
  line-height: 1.44;
  background: var(--color-background-1);
}
body.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-headline);
  color: inherit;
  line-height: 1.1;
  margin-top: clamp(2rem, 2.96vw + 1.33rem, 4rem);
  font-size: clamp(1.5rem, 2.96vw + 0.83rem, 3.5rem);
  margin-bottom: 0;
  font-weight: 500;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child,
.h1:first-child, .h2:first-child, .h3:first-child, .h4:first-child, .h5:first-child, .h6:first-child {
  margin-top: 0;
}

h1, .h1 {
  font-size: clamp(3rem, 0.74vw + 2.83rem, 3.5rem);
  line-height: 1;
}

h2, .h2 {
  font-size: clamp(2rem, 1.48vw + 1.67rem, 3rem);
}

h3, .h3 {
  font-size: clamp(1.25rem, 0.93vw + 1.04rem, 1.88rem);
}

h4, .h4 {
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
}

p {
  margin-top: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
}
p:first-child {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}

b, strong {
  font-weight: 700;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.4s ease;
}
a svg path {
  transition: fill 0.4s ease-in-out;
}

ul, ol {
  margin-top: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  padding: 0 clamp(1rem, 0.74vw + 0.83rem, 1.5rem);
}
ul li, ol li {
  margin-top: clamp(0.25rem, 0.37vw + 0.17rem, 0.5rem);
}
ul li::marker, ol li::marker {
  color: var(--color-primary);
}
ul li:first-child, ol li:first-child {
  margin-top: 0;
}

ol {
  margin-top: clamp(1.25rem, 0.37vw + 1.17rem, 1.5rem);
  padding: 0 clamp(1rem, 0.74vw + 0.83rem, 1.5rem);
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-flow: row wrap;
}
nav ul li {
  margin-top: 0;
}

img {
  max-width: 100%;
  height: auto;
  font-style: italic;
}

button, [type=button i], [type=reset i], [type=submit i] {
  background: transparent;
  border: none;
  border-radius: unset;
  padding: 0;
}

.video video, .video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.text-small {
  font-weight: 300;
}

.l-text-inverted {
  color: var(--color-text-inverted);
}

::selection {
  background-color: var(--color-secondary);
  color: var(--color-text-inverted);
}

.pagination {
  margin-top: var(--block-margin);
  margin-bottom: var(--block-margin);
  position: relative;
}
.pagination__links {
  display: flex;
  flex-flow: column;
}
.pagination__links {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}
.pagination .c-icon {
  width: clamp(1.25rem, 0.74vw + 1.08rem, 1.75rem);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pagination .c-button {
  margin-left: auto;
  margin-right: auto;
  max-width: 240px;
}
.pagination__next, .pagination__prev {
  position: relative;
  display: flex;
  flex-flow: column;
}
.pagination__next .pagination__title, .pagination__prev .pagination__title {
  transition: 0.4s ease-in-out;
}
.pagination__next:hover .pagination__title, .pagination__prev:hover .pagination__title {
  color: var(--color-primary);
}
.pagination__prev {
  padding-left: clamp(2.5rem, 3.7vw + 1.67rem, 5rem);
  margin-right: auto;
  margin-bottom: 20px;
}
.pagination__prev .c-icon {
  left: 0;
}
.pagination__next {
  padding-right: clamp(2.5rem, 3.7vw + 1.67rem, 5rem);
  margin-left: auto;
  margin-top: 20px;
}
.pagination__next .c-icon {
  right: 0;
}
.pagination__label {
  font-weight: 300;
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
}
.pagination__title {
  font-weight: 700;
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
}

@media (min-width: 1280px) {
  .pagination__links {
    flex-flow: row nowrap;
  }
  .pagination__prev, .pagination__next {
    margin-top: 0;
    margin-bottom: 0;
  }
  .pagination .c-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
  }
}
@media (min-width: 1920px) {
  .pagination__links {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 10 - var(--layout-gutter) - 0.01px);
    margin-left: calc(100% / var(--layout-columns) * 1 + var(--layout-gutter) / 2);
  }
}
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  color: #fff;
  background-color: #000;
  padding: 16px;
  text-decoration: none;
}
.skip-link:focus {
  position: sticky;
  width: auto;
  height: auto;
}

.screen-reader-text,
.screen-reader-response {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

pre.debug {
  width: 100%;
  max-height: 50vh;
  overflow-y: scroll;
}

:root {
  --g-width: "0px";
  --g-query: "XXS";
}

@media (min-width: 576px) {
  :root {
    --g-query: "XS";
  }
}
@media (min-width: 768px) {
  :root {
    --g-query: "SM";
  }
}
@media (min-width: 1024px) {
  :root {
    --g-query: "MD";
  }
}
@media (min-width: 1280px) {
  :root {
    --g-query: "LG";
  }
}
@media (min-width: 1440px) {
  :root {
    --g-query: "XL";
  }
}
@media (min-width: 1920px) {
  :root {
    --g-query: "XXL";
  }
}
:root {
  --grid-color-line: hsla(var(--grid-color), 0.2);
  --grid-color-column: hsla(var(--grid-color), 0.2);
  --grid-color-gutter: transparent;
  --grid-color-baseline: hsla(var(--grid-color), 0.2);
  --grid-color: 190, 100%, 50%;
  --line-thickness: 1px;
  --column-start: 0;
  --column-start-line: var(--line-thickness);
  --column-end: calc((100% / var(--layout-columns)) - var(--layout-gutter) - var(--line-thickness));
  --column-end-line: calc((100% / var(--layout-columns)) - var(--layout-gutter));
  --gutter-end: calc(100% / var(--layout-columns));
  --g-gradient-column: repeating-linear-gradient(
                  to right,
                  var(--grid-color-line) var(--column-start),
                  var(--grid-color-line) var(--column-start-line),
                  var(--grid-color-column) var(--column-start-line),
                  var(--grid-color-column) var(--column-end),
                  var(--grid-color-line) var(--column-end),
                  var(--grid-color-line) var(--column-end-line),
                  var(--grid-color-gutter) var(--column-end-line),
                  var(--grid-color-gutter) var(--gutter-end)
  );
  --g-gradient-baseline: repeating-linear-gradient(
                  to bottom,
                  var(--grid-color-baseline),
                  var(--grid-color-baseline) var(--line-thickness),
                  transparent var(--line-thickness),
                  transparent 20px
  );
}

html.stilpress-debug__grid {
  display: flex;
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--document-height, auto);
  justify-content: center;
}

.stilpress-debug__toggle::after {
  display: inline-block;
  content: var(--g-width);
  right: 0;
  bottom: 0;
  white-space: pre;
  text-transform: uppercase;
  background-color: #0c88b4;
  color: #fff;
  padding: 4px 8px;
  cursor: pointer;
  z-index: 9999999;
  position: fixed;
  font-size: 14px;
}

html.stilpress-debug__grid::after {
  position: fixed;
  z-index: 1000;
  content: "";
  width: calc(100% - var(--layout-offset) * 2);
  padding: 0 var(--layout-offset);
  max-width: var(--layout-width-max);
  min-height: 100vh;
  background-image: var(--g-gradient-column), var(--g-gradient-baseline);
  background-position: 0 0;
  background-size: calc(100% + var(--layout-gutter)) 100vh;
  pointer-events: none;
}

html.stilpress-debug__grid body { /* todo: find another way, leads to errors in certain layouts */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

@media (min-width: 1440px) {
  html.stilpress-debug__grid::after {
    max-width: var(--layout-width-max);
  }
}
.l-wrapper {
  overflow-x: clip;
  max-width: var(--layout-width-max);
  margin-left: auto;
  margin-right: auto;
}

#main {
  margin-top: var(--header-height);
}

.l-width {
  max-width: var(--layout-width-max);
  width: 100%;
  margin: 0 auto;
}

.l-padding {
  padding-left: var(--layout-offset);
  padding-right: var(--layout-offset);
}

.l-grid {
  display: flex;
  flex-flow: row wrap;
  margin-right: calc(var(--layout-gutter) / 2 * -1);
  margin-left: calc(var(--layout-gutter) / 2 * -1);
}

.l-grid__column {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}

.l-grid__column--center-vertical {
  display: flex;
  align-items: center;
}

.l-grid__column--divider {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}

.header {
  background-color: var(--color-background-1);
  position: fixed;
  top: 0;
  width: 100%;
  max-width: var(--layout-width-max);
  z-index: 11;
  transition: transform 0.2s ease-in-out;
}
.header .header__bar {
  display: flex;
  flex-flow: row nowrap;
  height: var(--header-height);
}
.header .header__logo {
  position: relative;
  z-index: 11;
}
.header .header__logo img {
  height: var(--header-height);
  width: auto;
  padding: clamp(0.75rem, 0.37vw + 0.67rem, 1rem) 0;
}
.header .header__logo span, .header .header__logo a {
  display: block;
}

.admin-bar .header {
  margin-top: var(--admin-bar);
}

.admin-bar .header.header--scrolled {
  margin-top: 0;
}

@media (min-width: 782px) {
  .admin-bar .header.header--scrolled {
    margin-top: var(--admin-bar);
  }
}
.footer {
  border-top: clamp(0.75rem, 0.37vw + 0.67rem, 1rem) solid var(--color-secondary);
  font-size: clamp(0.88rem, 0.19vw + 0.83rem, 1rem);
}
.footer .footer__widgets {
  border-top: clamp(0.75rem, 0.37vw + 0.67rem, 1rem) solid var(--color-primary);
  padding-top: 48px;
  padding-bottom: 48px;
}
.footer .footer__widgets .widgets__area {
  margin-top: 48px;
}
.footer .footer__widgets .widgets__area {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}
.footer .footer__widgets .widgets__area:nth-child(1) {
  margin-top: 0;
}
.footer .footer__socket {
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: clamp(0.88rem, 0.19vw + 0.83rem, 1rem);
  text-align: center;
}
.footer .footer__copyright {
  text-align: center;
}
.footer .footer__copyright {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}
.footer .footer__navigation {
  margin-top: 12px;
}
.footer .footer__navigation {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}
.footer .footer__navigation ul {
  display: flex;
  flex-flow: row wrap;
  row-gap: 12px;
  justify-content: center;
}
.footer .footer__navigation ul li:after {
  display: inline-block;
  content: "|";
  margin: 0 8px;
}
.footer .footer__navigation ul li:last-child:after {
  display: none;
}

@media (min-width: 768px) {
  .footer .footer__widgets .widgets__area {
    display: flex;
    text-align: left;
  }
  .footer .footer__widgets .widgets__area {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 6 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__widgets .widgets__area:nth-child(1), .footer .footer__widgets .widgets__area:nth-child(2) {
    align-items: center;
    margin-top: 0;
  }
  .footer .footer__widgets .widgets__area:nth-child(1) img, .footer .footer__widgets .widgets__area:nth-child(2) img {
    max-width: 72%;
  }
  .footer .footer__socket {
    text-align: left;
  }
  .footer .footer__copyright {
    text-align: unset;
  }
  .footer .footer__copyright {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 5 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__navigation {
    margin-top: 0;
  }
  .footer .footer__navigation {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 7 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__navigation ul {
    justify-content: flex-end;
  }
}
@media (min-width: 1280px) {
  .footer .footer__widgets .widgets__area {
    chmargin-top: 0;
  }
  .footer .footer__widgets .widgets__area {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 3 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__widgets .widgets__area:nth-child(1), .footer .footer__widgets .widgets__area:nth-child(2) {
    margin-top: 0;
  }
  .footer .footer__widgets .widgets__area:nth-child(1), .footer .footer__widgets .widgets__area:nth-child(2) {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 3 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__socket {
    text-align: left;
  }
  .footer .footer__copyright {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 5 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__navigation {
    margin-top: 0;
  }
  .footer .footer__navigation {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 7 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__navigation ul {
    justify-content: flex-end;
  }
}
.header .toggle {
  position: relative;
  z-index: 4;
  margin-left: auto;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.header .toggle__label {
  display: none;
}
.header .toggle__indicator {
  position: relative;
  z-index: 11;
  width: 32px;
  height: 20px;
}
.header .toggle__indicator span {
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: var(--color-text);
  transition: all 0.4s ease-in-out;
}
.header .toggle__indicator span:nth-child(1) {
  top: 0;
}
.header .toggle__indicator span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.header .toggle__indicator span:nth-child(3) {
  bottom: 0;
}
.header .toggle.active .toggle__indicator {
  color: transparent;
}
.header .toggle.active .toggle__indicator span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
}
.header .toggle.active .toggle__indicator span:nth-child(2) {
  opacity: 0;
}
.header .toggle.active .toggle__indicator span:nth-child(3) {
  bottom: 50%;
  transform: rotate(45deg);
}

@media (min-width: 1024px) {
  .header .toggle {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header__navigation {
    margin-left: auto;
  }
  .header__navigation .navigation__inner {
    height: 100%;
  }
  .header__navigation .navigation-main__title {
    display: none;
  }
  .header__navigation ul {
    flex-flow: row nowrap;
    height: 100%;
    justify-content: flex-start;
  }
  .header__navigation ul li {
    position: relative;
    margin-left: clamp(1.5rem, 1.48vw + 1.17rem, 2.5rem);
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    white-space: nowrap;
    height: 100%;
  }
  .header__navigation ul li:first-child {
    margin-left: 0;
  }
  .header__navigation ul li a {
    position: relative;
    text-decoration: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    font-weight: 600;
    font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
    transition: color 0.4s ease-in-out;
    color: var(--color-text);
    font-family: var(--font-headline);
  }
  .header__navigation ul li:hover > a:not([href*="#"]), .header__navigation ul li.current-menu-item > a:not([href*="#"]), .header__navigation ul li.current-menu-ancestor > a:not([href*="#"]) {
    color: var(--color-tertiary);
  }
  .header__navigation ul li:hover > a {
    color: var(--color-tertiary);
  }
  .header__navigation ul li .c-icon {
    display: none;
    width: 12px;
    margin-left: 12px;
  }
  .header__navigation ul li .c-icon svg path {
    fill: var(--color-text);
  }
  .header__navigation ul li ul {
    display: none;
    position: absolute;
    z-index: -1;
    display: none;
    top: 100%;
    left: 50%;
    background-color: var(--color-background-1);
    padding: clamp(0.75rem, 1.11vw + 0.5rem, 1.5rem) clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
    min-width: 50%;
    height: auto;
    transform: translateX(-50%);
  }
  .header__navigation ul li ul:before {
    content: "";
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 24px solid var(--color-background-1);
    width: 0;
    height: 0;
  }
  .header__navigation ul li ul a {
    font-size: clamp(1.13rem, 0.19vw + 1.08rem, 1.25rem);
    padding: 8px 0 0;
    font-weight: 400;
    color: var(--color-text);
  }
  .header__navigation ul li ul a .c-icon {
    display: none;
  }
  .header__navigation ul li ul a:after {
    display: none;
  }
  .header__navigation ul > li:hover > ul {
    display: block;
  }
  .header__navigation .sub-menu-inner li {
    margin-left: 0;
  }
}
@media (max-width: 1023.98px) {
  .header__navigation {
    background-color: var(--color-background-1);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    height: 100svh;
    z-index: 3;
    transition: left 0.4s ease-in-out 0s;
    color: var(--color-text);
  }
  .header__navigation .navigation__inner {
    position: fixed;
    top: calc(var(--header-height) * 2);
    right: 0;
    bottom: 0;
    left: 100%;
    transition: left 0.4s ease-in-out 0s;
    z-index: 4;
    height: calc(100% - 100px);
    width: 100%;
    overflow-y: auto;
    overflow-x: clip;
    padding: 0 var(--layout-offset);
    flex-flow: column;
  }
  .header__navigation .navigation__inner ul {
    display: flex;
    flex-flow: column wrap;
    width: 100%;
  }
  .header__navigation .navigation__inner ul li {
    display: flex;
    flex-flow: row wrap;
    margin: 0;
    align-items: center;
    justify-content: space-between;
  }
  .header__navigation .navigation__inner ul li .c-icon {
    display: flex;
    width: 32px;
    height: 24px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    cursor: pointer;
    color: var(--color-text);
    margin: 8px 0;
  }
  .header__navigation .navigation__inner ul li .c-icon svg {
    width: 24px;
    transition: transform 0.24s ease-in-out;
  }
  .header__navigation .navigation__inner ul li .c-icon svg path {
    fill: var(--color-primary);
  }
  .header__navigation .navigation__inner ul li .c-icon.active svg {
    transform: rotate(180deg);
  }
  .header__navigation .navigation__inner ul > li > ul {
    width: 100%;
  }
  .header__navigation .navigation__inner ul > li > ul a {
    display: block;
    text-decoration: none;
    color: var(--color-text);
    font-size: 20px;
    font-weight: 400;
  }
  .header__navigation .navigation__inner ul > li > ul li {
    margin-top: 12px;
  }
  .header__navigation .navigation__inner ul > li > ul li:first-child {
    margin-top: 12px;
  }
  .header__navigation .navigation__inner ul > li > ul li:last-child {
    margin-bottom: 16px;
  }
  .header__navigation .navigation__inner ul > li > ul ul li:last-child {
    padding-bottom: 0;
  }
  .header__navigation .navigation__inner ul li {
    margin-top: 24px;
  }
  .header__navigation .navigation__inner ul li:first-child {
    margin-top: 0;
  }
  .header__navigation .navigation__inner ul li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    font-family: var(--font-headline);
  }
  .header__navigation .navigation__inner ul li .c-icon {
    margin: 4px 0;
  }
  .header__navigation .navigation__inner ul li .c-icon path {
    fill: var(--color-secondary);
  }
  .header__navigation .navigation__inner ul li:hover > a, .header__navigation .navigation__inner ul li.current-menu-item > a, .header__navigation .navigation__inner ul li.current-menu-parent > a {
    color: var(--color-secondary);
  }
  .header__navigation .navigation__inner ul li.link-style-button a {
    background-color: var(--color-background-1);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
    border-radius: clamp(1.25rem, 0.74vw + 1.08rem, 1.75rem);
    font-size: clamp(1.25rem, 0.37vw + 1.17rem, 1.5rem);
    position: relative;
    display: inline-flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
    height: clamp(3rem, 1.48vw + 2.67rem, 4rem);
  }
  .header__navigation .navigation__inner ul li.link-style-button a:hover {
    color: var(--color-primary);
  }
  .header__navigation .sub-menu-inner {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s linear;
  }
  .header__navigation .sub-menu-inner.active {
    max-height: 600px;
  }
  .header__navigation .navigation__title {
    display: none;
  }
  .header.nav-active .header__navigation {
    left: 0;
    transition: left 0.4s ease-in-out 0s;
  }
  .header.nav-active .header__navigation .navigation__inner {
    left: 0;
    transition: left 0.4s ease-in-out 0.2s;
  }
}
.error-404 {
  padding: clamp(0.5rem, 14.07vw + -2.67rem, 10rem) 0;
  text-align: center;
}
.error-404 div:not(.c-content) > .l-grid > .l-grid__item {
  align-items: center;
  display: flex;
}
.error-404 div:not(.c-content) > .l-grid > .l-grid__item {
  width: 1px;
  margin-right: calc(var(--layout-gutter) / 2);
  margin-left: calc(var(--layout-gutter) / 2);
  min-width: calc(100% / var(--layout-columns) * 12 - var(--layout-gutter) - 0.01px);
}
.error-404 .c-media {
  width: 100%;
  position: relative;
  text-align: center;
}
.error-404 .c-media img {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 auto;
}
.error-404 .c-content {
  margin-top: clamp(3rem, 4.44vw + 2rem, 6rem);
  width: 100%;
}
.error-404__buttons {
  margin-top: clamp(1.5rem, 2.22vw + 1rem, 3rem);
}
.error-404__subline {
  font-weight: 700;
  font-size: clamp(1.5rem, 2.22vw + 1rem, 3rem);
  margin-top: clamp(0.5rem, 0.74vw + 0.33rem, 1rem);
}
.error-404__text {
  margin-top: clamp(1rem, 1.48vw + 0.67rem, 2rem);
}
.error-404__headline h1 {
  color: var(--color-primary);
  font-weight: 700;
  font-size: clamp(6rem, 8.89vw + 4rem, 12rem);
  line-height: 1.1;
}
@media (min-width: 1024px) {
  .error-404 div:not(.c-content) > .l-grid > .l-grid__item {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 6 - var(--layout-gutter) - 0.01px);
    margin-left: calc(100% / var(--layout-columns) * 3 + var(--layout-gutter) / 2);
  }
  .error-404 div:not(.c-content) > .l-grid > .l-grid__item + .l-grid__item {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 5 - var(--layout-gutter) - 0.01px);
    margin-left: calc(100% / var(--layout-columns) * 1 + var(--layout-gutter) / 2);
  }
  .error-404 .c-media {
    padding-bottom: 0;
  }
  .error-404 .c-content {
    margin-top: 0;
  }
}

.popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.popup.is-hidden {
  display: none;
}
.popup__inner {
  max-width: calc(100% - 80px);
  height: auto;
  background: rgb(255, 255, 255);
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  padding: clamp(1.25rem, 5.56vw + 0rem, 5rem);
}
.popup__close {
  position: absolute;
  right: 24px;
  top: 24px;
}
.popup__content {
  width: 100%;
  margin-left: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  align-self: center;
}

@media (min-width: 1280px) {
  .popup__inner {
    max-width: 720px;
    height: auto;
    flex-flow: row nowrap;
  }
}
.popup_close {
  cursor: pointer;
}

.popup__toggle {
  margin-left: auto;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  z-index: 2;
}
.popup__toggle span {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 1px;
  width: 100%;
  background-color: var(--color-background-primary);
  transition: all 0.3s ease;
}
.popup__toggle span:nth-child(1) {
  top: calc(50% - 8px);
}
.popup__toggle span:nth-child(2) {
  top: calc(50% + 6px);
}
.popup__toggle.active span {
  background-color: var(--color-text);
}
.popup__toggle.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.popup__toggle.active span:nth-child(2) {
  top: 50%;
  transform: rotate(-45deg);
}

.b {
  margin-top: var(--block-margin);
}
.b:not(.background-color-2):last-of-type {
  margin-bottom: var(--block-margin);
}

.w {
  margin-top: clamp(2rem, 2.22vw + 1.5rem, 3.5rem);
}
.w:first-of-type {
  margin-top: 0;
}

.padding-top {
  padding-top: var(--block-padding);
}

.padding-large-top {
  padding-top: var(--block-padding-large);
}

.padding-bottom {
  padding-bottom: var(--block-padding);
}

.padding-large-bottom {
  padding-bottom: var(--block-padding);
}

.background-color-2 {
  background-color: var(--color-background-2);
}

.background-color-2:last-child {
  margin-bottom: 0;
}

.text-inverted {
  color: var(--color-text-inverted);
}
.text-inverted a {
  color: var(--color-text-inverted);
}
.text-inverted .c-icon path {
  fill: var(--color-text-inverted);
}
.text-inverted .c-line:before {
  background-color: var(--color-background-2);
}

.b__headline:first-child,
.b__text:first-child,
.b__buttons:first-child,
.b__links:first-child {
  margin-top: 0;
}

.b__headline {
  margin-top: clamp(1.5rem, 2.22vw + 1rem, 3rem);
}

.b__text {
  margin-top: clamp(1.5rem, 2.22vw + 1rem, 3rem);
}
.b__text:first-child {
  margin-top: 0;
}

.b__buttons,
.b__links {
  margin-top: clamp(1.5rem, 2.22vw + 1rem, 3rem);
}

.c-headline {
  position: relative;
  margin-top: var(--component-margin-small);
  color: var(--color-6);
}
.c-headline:first-child {
  margin-top: 0;
}

.text-inverted .c-headline {
  color: var(--color-text-inverted);
}

.c-overline + .c-headline {
  margin-top: clamp(0.5rem, 0.37vw + 0.42rem, 0.75rem);
}

.w .c-headline {
  margin-bottom: clamp(1rem, 0.74vw + 0.83rem, 1.5rem);
}

.c-underline {
  text-transform: uppercase;
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--color-primary);
}

.c-overline {
  text-transform: uppercase;
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--color-primary);
}

.b .c-text {
  margin-top: var(--content-margin-medium);
}
.b .c-text a {
  color: var(--color-text);
  text-decoration: underline;
}
.b .c-text a:hover {
  color: var(--color-tertiary);
}
.b .c-text ul {
  list-style-type: none;
}
.b .c-text ul li {
  position: relative;
  padding-left: 8px;
}
.b .c-text ul li:before {
  position: absolute;
  top: clamp(0.5rem, 0.28vw + 0.44rem, 0.69rem);
  left: 0;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin-left: calc(clamp(1rem, 0.74vw + 0.83rem, 1.5rem) * -1);
  background-color: var(--color-primary);
  border-radius: 50%;
}
.b .c-text:first-child {
  margin-top: 0;
}

.c-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4/3;
}
.c-media__image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-media__video {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-media__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.c-buttons {
  margin-top: var(--content-margin-large);
  display: flex;
  flex-flow: row wrap;
  gap: clamp(1.25rem, 1.85vw + 0.83rem, 2.5rem);
}
.c-buttons:first-child {
  margin-top: 0;
}

.c-button {
  position: relative;
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  height: clamp(2.75rem, 0.56vw + 2.63rem, 3.13rem);
  text-align: center;
  text-decoration: none;
  font-size: clamp(1rem, 0.56vw + 0.88rem, 1.38rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text-inverted);
  border: 2px solid var(--color-6);
  border-radius: clamp(1.25rem, 0.74vw + 1.08rem, 1.75rem);
  transition: background-color 0.4s ease-in-out, border 0.4s ease-in-out;
  background-color: var(--color-6);
}
.c-button .c-icon {
  margin-right: 12px;
  width: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  min-width: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  aspect-ratio: 1;
}
.c-button span {
  position: relative;
  z-index: 1;
}
.c-button:hover {
  color: var(--color-6);
  background-color: transparent;
}

.c-buttons--ghost .c-button {
  background-color: transparent;
  border-color: var(--color-background-2);
}
.c-buttons--ghost .c-button:hover {
  color: var(--color-text-inverted);
}

.header__navigation li.link-style-button a.c-button {
  color: var(--color-text-inverted);
  border: 2px solid var(--color-background-4);
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
  height: clamp(2rem, 0.74vw + 1.83rem, 2.5rem);
  border-radius: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
  padding: 0 clamp(1.25rem, 0.56vw + 1.13rem, 1.63rem);
  font-size: clamp(1rem, 0.37vw + 0.92rem, 1.25rem);
  background-color: var(--color-background-4);
}
.header__navigation li.link-style-button a.c-button:hover {
  color: var(--color-background-4);
  background-color: transparent;
}

.c-links {
  margin-top: var(--component-margin-large);
  display: flex;
  flex-flow: row wrap;
  gap: clamp(1.25rem, 1.85vw + 0.83rem, 2.5rem);
}
.c-links:first-child {
  margin-top: 0;
}

.c-link {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: clamp(1rem, 0.74vw + 0.83rem, 1.5rem);
  font-weight: 700;
}
.c-link span {
  position: relative;
  display: inline-block;
}
.c-link span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  transition: width 0.4s ease-in-out;
  background-color: var(--color-primary);
}
.c-link .c-icon {
  width: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  height: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  margin-right: 12px;
}
.c-link span + .c-icon {
  margin-left: 12px;
  margin-right: 0;
}
.c-link:hover span:hover:after {
  width: 50%;
}

.c-icon {
  width: 100%;
  aspect-ratio: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.c-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

input,
input[type=submit],
button[type=submit],
input[type=file],
textarea,
select {
  font-family: var(--font-default);
  background-color: var(--color-background-2);
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-text);
  line-height: clamp(2.5rem, 0.74vw + 2.33rem, 3rem);
  padding: 0 clamp(0.75rem, 0.37vw + 0.67rem, 1rem);
  height: clamp(2.5rem, 0.74vw + 2.33rem, 3rem);
  font-size: clamp(0.75rem, 0.19vw + 0.71rem, 0.88rem);
  color: var(--color-white);
  outline: 0;
  font-weight: 400;
}
input:focus-visible,
input[type=submit]:focus-visible,
button[type=submit]:focus-visible,
input[type=file]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}
input::-webkit-input-placeholder,
input[type=submit]::-webkit-input-placeholder,
button[type=submit]::-webkit-input-placeholder,
input[type=file]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  opacity: 0.7;
}
input::-moz-placeholder,
input[type=submit]::-moz-placeholder,
button[type=submit]::-moz-placeholder,
input[type=file]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  opacity: 0.7;
}
input:-ms-input-placeholder,
input[type=submit]:-ms-input-placeholder,
button[type=submit]:-ms-input-placeholder,
input[type=file]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  opacity: 0.7;
}
input:-moz-placeholder,
input[type=submit]:-moz-placeholder,
button[type=submit]:-moz-placeholder,
input[type=file]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  opacity: 0.8;
}

select {
  cursor: pointer;
  -webkit-appearance: initial;
  color: var(--color-form-text);
  text-transform: uppercase;
  font-weight: 600;
}

textarea {
  height: 112px;
  line-height: 1.2;
  padding: clamp(0.75rem, 0.37vw + 0.67rem, 1rem);
}

input[type=submit],
button[type=submit] {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid var(--color-primary);
  color: var(--color-text);
  font-weight: 700;
  padding: 0;
  height: auto;
  font-size: clamp(0.88rem, 0.19vw + 0.83rem, 1rem);
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: unset;
}
input[type=submit]:hover,
button[type=submit]:hover {
  background-color: transparent;
  color: var(--color-primary);
}

/* form columns */
.wpcf7-form.sent .form {
  display: none;
}
.wpcf7-form.sent .wpcf7-response-output {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 24px;
}

.form {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}
.form > .column, .form [class*=column--] {
  position: relative;
  width: 100%;
  margin-top: clamp(1rem, 0.56vw + 0.88rem, 1.38rem);
  padding: 0 8px;
}
.form .column--break {
  width: 100%;
  height: 0;
  margin-top: 0;
  display: none;
}
.form .column--headline {
  text-align: center;
}
.form .column--legal {
  margin-top: clamp(1rem, 0.74vw + 0.83rem, 1.5rem);
  font-size: clamp(0.75rem, 0.19vw + 0.71rem, 0.88rem);
}
.form .column--legal p {
  margin-top: 0;
}
.form .column--legal a {
  text-decoration: underline;
}
.form .column--legal a:hover {
  color: var(--color-primary);
}
.form .column--title {
  margin-bottom: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  font-size: clamp(1.5rem, 0.74vw + 1.33rem, 2rem);
  font-weight: 700;
  text-align: center;
}
.form .column--title span {
  display: inline;
  text-align: center;
  border-bottom: clamp(0.13rem, 0.19vw + 0.08rem, 0.25rem) solid var(--color-primary);
}
.form .column--text {
  text-align: left;
}

@media (min-width: 768px) {
  .form .column:first-child {
    margin-top: 0;
  }
  .form .column--break {
    display: block;
  }
  .form .column--one-half {
    width: 50%;
  }
  .form .column--one-half:nth-child(2) {
    margin-top: 0;
  }
  .form .column--one-third {
    width: 50%;
  }
  .form .column--two-third {
    width: 66.66%;
  }
  .form .column--one-fourth {
    width: 50%;
  }
  .form .column--three-fourth {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .form .column--one-third {
    width: 33.33%;
  }
  .form .column--one-fourth {
    width: 25%;
  }
  .form .column--three-fourth {
    width: 75%;
  }
}
/* contactform7 styles  */
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: red;
  margin-top: 20px;
  display: block;
  font-size: 100%;
}

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7-submit {
  width: unset;
}

.form .c-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  height: calc(100% - 2px);
  background-color: var(--color-gray-2);
  position: absolute;
  top: 1px;
  pointer-events: none;
}

.legal-text {
  font-size: 80%;
}

label.label {
  font-size: clamp(0.88rem, 0.56vw + 0.75rem, 1.25rem);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.floating-label {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 12px;
  transition: 0.2s ease all;
  line-height: 1;
  margin: 0 8px;
  padding: 0;
  font-size: clamp(0.75rem, 0.19vw + 0.71rem, 0.88rem);
  display: none;
}

input:focus ~ .floating-label,
input:not(:placeholder-shown) ~ .floating-label,
.is-active.floating-label,
textarea:focus ~ .floating-label,
textarea:not(:placeholder-shown) ~ .floating-label {
  top: -12px;
  font-weight: 700;
  color: var(--color-form-text);
}

/* custom checkbox styles */
/* custom checkbox styling for contact form 7 checkbox */
span.wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

.wpcf7 .wpcf7-list-item {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 80%;
  margin-top: 8px;
  display: block;
}

.wpcf7-checkbox label {
  position: relative;
  cursor: pointer;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.wpcf7-checkbox input[type=checkbox] {
  /*position: relative;*/
  position: absolute;
  visibility: hidden;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
}

.wpcf7-checkbox input[type=checkbox] + span {
  /* border: 3px solid red; */
}

.wpcf7-checkbox input[type=checkbox] + span:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 0;
  height: 30px;
  width: 30px;
  top: 0px;
  left: 0px;
  border: 1px solid #707070;
}

.wpcf7-checkbox input[type=checkbox] + span:after {
  display: block;
  position: absolute;
  content: "✓";
  height: 30px;
  width: 30px;
  top: 0;
  left: 0;
  visibility: hidden;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:before {
  background: transparent;
}

.wpcf7-checkbox input[type=checkbox]:checked + span:after {
  visibility: visible;
}

.wpcf7-list-item-label {
  margin-left: 40px;
  display: inline-block;
}

.wpcf7-spinner {
  display: none !important;
}

.l-inverse input,
.l-inverse input[type=submit],
.l-inverse textarea,
.l-inverse select {
  border-color: var(--color-text-inversed);
}

/*# sourceMappingURL=styles.css.map */
