:root {
  --root-size: 16px;
  --font-default: "Area Normal", sans-serif;
  --font-headline: "Area Normal", sans-serif;
  --layout-columns: 12;
  --layout-gutter: clamp(0.75rem, 0.51vw + 0.63rem, 1.25rem);
  --layout-offset: clamp(1.25rem, 4.87vw + 0.15rem, 6rem);
  --layout-width-max: calc(1920px - (var(--layout-offset) * 2));
  --color-1: #000000;
  --color-2: #ffffff;
  --color-3: #002C68;
  --color-4: #FFFF00;
  --color-5: #EDEDED;
  --color-text: var(--color-1);
  --color-text-inverted: var(--color-2);
  --color-primary: var(--color-3);
  --color-secondary: var(--color-4);
  --color-background-1: var(--color-2);
  --color-background-2: var(--color-3);
  --color-background-3: var(--color-5);
  --color-background-4: #CCE8FF;
  --header-height: clamp(3.63rem, 4.49vw + 2.62rem, 8rem);
  --block-margin: clamp(4rem, 5.13vw + 2.85rem, 9rem);
  --block-margin-inner: clamp(2rem, 2.05vw + 1.54rem, 4rem);
  --block-spacing: clamp(2rem, 2.05vw + 1.54rem, 4rem);
  --block-spacing-small: clamp(1.5rem, 1.54vw + 1.15rem, 3rem);
  --admin-bar: 46px;
}
@media (min-width: 782px) {
  :root {
    --admin-bar: 32px;
  }
}

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);
  }
}
/*! 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: "Area Normal";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/area-normal/area-normal-400.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Area Normal";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/area-normal/area-normal-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Area Normal";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/area-normal/area-normal-800.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(0.88rem, 0.26vw + 0.82rem, 1.13rem);
  font-weight: 400;
  line-height: 1.5;
  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;
  margin-top: clamp(1.5rem, 1.54vw + 1.15rem, 3rem);
  font-size: clamp(1.88rem, 1.03vw + 1.64rem, 2.88rem);
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.4;
}
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(1.88rem, 1.92vw + 1.44rem, 3.75rem);
  line-height: 1.3;
}

h3, .h3 {
  font-size: clamp(1.13rem, 0.77vw + 0.95rem, 1.88rem);
}

h4, .h4 {
  font-size: clamp(1.13rem, 0.77vw + 0.95rem, 1.88rem);
}

h5, .h5 {
  font-size: clamp(1.13rem, 0.77vw + 0.95rem, 1.88rem);
}

h6, .h6 {
  font-size: clamp(1.13rem, 0.77vw + 0.95rem, 1.88rem);
}

p {
  margin-top: clamp(1rem, 0.26vw + 0.94rem, 1.25rem);
}
p:first-child {
  margin-top: 0;
}
p:last-of-type {
  margin-bottom: 0;
}

b, strong {
  font-weight: 800;
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.4s ease;
}

ul, ol {
  margin-top: clamp(1.5rem, 0.51vw + 1.38rem, 2rem);
  padding: 0 clamp(1rem, 0.51vw + 0.88rem, 1.5rem);
}
ul li, ol li {
  margin-top: clamp(0.25rem, 0.26vw + 0.19rem, 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.26vw + 1.19rem, 1.5rem);
  padding: 0 clamp(1rem, 0.51vw + 0.88rem, 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;
  -webkit-tap-highlight-color: transparent;
}

.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);
}

.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.51vw + 1.13rem, 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, 2.56vw + 1.92rem, 5rem);
  margin-right: auto;
  margin-bottom: 20px;
}
.pagination__prev .c-icon {
  left: 0;
}
.pagination__next {
  padding-right: clamp(2.5rem, 2.56vw + 1.92rem, 5rem);
  margin-left: auto;
  margin-top: 20px;
}
.pagination__next .c-icon {
  right: 0;
}
.pagination__label {
  font-weight: 300;
  font-size: clamp(1rem, 0.26vw + 0.94rem, 1.25rem);
}
.pagination__title {
  font-weight: 800;
  font-size: clamp(1rem, 0.26vw + 0.94rem, 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;
}

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

.l-wrapper {
  overflow-x: clip;
}

.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%;
  z-index: 11;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.header .header__bar {
  display: flex;
  flex-flow: row nowrap;
  height: var(--header-height);
  transition: height 0.2s ease;
}
.header .header__logo {
  position: relative;
}
.header .header__logo img {
  height: var(--header-height);
  width: auto;
  padding: clamp(0.75rem, 1.28vw + 0.46rem, 2rem) 0;
  transition: padding 0.2s ease, height 0.2s ease;
}
.header .header__logo span, .header .header__logo a {
  display: block;
}
.header .header__navigation {
  margin-left: auto;
}
.header .header__language {
  margin-left: 40px;
}
.header .header__links {
  display: flex;
  margin-left: auto;
}
.header .header__links .c-links {
  gap: 20px;
}
.header .header__links .c-link {
  margin: 0;
  width: 32px;
}
.header .header__links .c-link .c-icon {
  width: clamp(1.5rem, 0.51vw + 1.38rem, 2rem);
  height: clamp(1.5rem, 0.51vw + 1.38rem, 2rem);
}
.header .header__links .c-link svg path {
  fill: var(--color-secondary);
}
.header .header__links .c-icon {
  margin-right: 0;
}

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

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

@media (min-width: 1024px) {
  .header .header__links {
    margin-left: 40px;
  }
  .header.header--scrolled {
    margin-top: 0;
  }
  .header.header--scrolled .header__bar {
    height: calc(var(--header-height) * 0.6);
  }
  .header.header--scrolled .header__logo img {
    height: calc(var(--header-height) * 0.6);
    padding: calc(clamp(0.75rem, 1.28vw + 0.46rem, 2rem) * 0.6) 0;
  }
  .admin-bar .header.header--scrolled {
    margin-top: var(--admin-bar);
  }
}
section.cta {
  background-color: var(--color-background-3);
}

.footer {
  position: relative;
  background-color: var(--color-background-2);
  color: var(--color-text-inverted);
  font-size: clamp(1rem, 0.26vw + 0.94rem, 1.25rem);
  padding-top: clamp(1.25rem, 3.85vw + 0.38rem, 5rem);
}
.footer a {
  color: var(--color-text-inverted);
}
.footer a:hover {
  color: var(--color-secondary);
}
.footer .l-width {
  position: relative;
  z-index: 1;
}
.footer .footer__widgets .widgets__area {
  margin-top: clamp(2rem, 2.56vw + 1.42rem, 4.5rem);
}
.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:first-child {
  margin-top: 0;
}
.footer .footer__socket {
  padding: 40px 0;
  font-size: clamp(0.88rem, 0.13vw + 0.85rem, 1rem);
}
.footer .footer__socket .footer__navigation ul {
  display: flex;
  flex-flow: column wrap;
  row-gap: 12px;
}
.footer .footer__socket .footer__copyright {
  margin-top: 32px;
}
.footer .footer__logo {
  z-index: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
}
.footer .footer__logo img {
  margin-left: auto;
  margin-top: auto;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  width: auto;
  aspect-ratio: 1;
}

@media (min-width: 1024px) {
  .footer .footer__socket {
    display: flex;
  }
  .footer .footer__socket .footer__copyright {
    width: auto;
    min-width: auto;
    margin: 0;
    margin-top: 0;
  }
  .footer .footer__socket .footer__navigation {
    width: auto;
    min-width: auto;
    margin-left: auto;
    margin-right: 0;
  }
  .footer .footer__socket .footer__navigation ul {
    flex-flow: row wrap;
  }
  .footer .footer__socket .footer__navigation li:after {
    position: relative;
    top: -2px;
    content: "|";
    padding: 0 8px;
  }
  .footer .footer__logo {
    right: var(--layout-offset);
  }
}
@media (min-width: 1280px) {
  .footer .footer__widgets .widgets__area:nth-child(1) {
    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(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__widgets .widgets__area:nth-child(3) {
    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(4) {
    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);
  }
}
@media (min-width: 1440px) {
  .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) * 2 - var(--layout-gutter) - 0.01px);
  }
  .footer .footer__widgets .widgets__area:nth-child(3) {
    width: 1px;
    margin-right: calc(var(--layout-gutter) / 2);
    margin-left: calc(var(--layout-gutter) / 2);
    min-width: calc(100% / var(--layout-columns) * 2.4 - var(--layout-gutter) - 0.01px);
    margin-left: calc(100% / var(--layout-columns) * 1 + var(--layout-gutter) / 2);
  }
}
.header .toggle {
  position: relative;
  z-index: 11;
  margin-left: auto;
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: var(--color-text);
}
.header .toggle__label {
  display: none;
}
.header .toggle__indicator {
  position: relative;
  z-index: 11;
  width: 32px;
  height: 18px;
}
.header .toggle__indicator span {
  position: absolute;
  left: 0;
  height: 2px;
  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%);
}
.header .toggle__indicator span:nth-child(3) {
  bottom: 0;
}
.header .toggle.active .toggle__indicator {
  color: transparent;
}
.header .toggle.active .toggle__indicator span {
  background-color: var(--color-text-inverted);
}
.header .toggle.active .toggle__indicator span:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
.header .toggle.active .toggle__indicator span:nth-child(2) {
  opacity: 0;
}
.header .toggle.active .toggle__indicator span:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}

@media (min-width: 1024px) {
  .header .toggle {
    display: none;
  }
}
.c-sticky-links {
  position: fixed;
  z-index: 9;
  top: 50vh;
  transform: translateY(-50%);
  right: 0;
  width: 100%;
  pointer-events: none;
}
.c-sticky-links__item {
  margin-bottom: clamp(0.25rem, 0.26vw + 0.19rem, 0.5rem);
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-content: flex-end;
}
.c-sticky-links__item:hover .c-sticky-links__text {
  max-width: 400px;
  padding: clamp(0.5rem, 0.26vw + 0.44rem, 0.75rem);
}
.c-sticky-links a {
  background-color: var(--color-secondary);
  pointer-events: all;
  display: flex;
  justify-content: flex-end;
  flex-flow: row nowrap;
}
.c-sticky-links__icon {
  width: clamp(2.5rem, 0.51vw + 2.38rem, 3rem);
  height: clamp(2.5rem, 0.51vw + 2.38rem, 3rem);
  padding: clamp(0.5rem, 0.26vw + 0.44rem, 0.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.c-sticky-links__icon .c-icon {
  width: clamp(1.25rem, 0.51vw + 1.13rem, 1.75rem);
  height: clamp(1.25rem, 0.51vw + 1.13rem, 1.75rem);
}
.c-sticky-links__icon .c-icon svg path {
  fill: var(--color-text);
}
.c-sticky-links__text {
  position: relative;
  z-index: 1;
  height: clamp(2.5rem, 0.51vw + 2.38rem, 3rem);
  color: var(--color-text);
  display: flex;
  align-items: center;
  font-size: 12px;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s ease-in-out, padding 0.4s ease-in-out;
}

@media (min-width: 1024px) {
  .header__navigation .sub-menu-back {
    display: none;
  }
  .header__navigation ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .header__navigation > ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
  }
  .header__navigation > ul ul .c-icon {
    display: none;
  }
  .header__navigation > ul > li {
    margin-left: 32px;
    white-space: nowrap;
    height: 100%;
  }
  .header__navigation > ul > li:has(a.c-button) {
    height: 44px;
  }
  .header__navigation > ul > li:first-child {
    margin-left: 0;
  }
  .header__navigation > ul > li > a, .header__navigation > ul > li > button {
    position: relative;
    height: 100%;
    text-decoration: none;
    font-weight: 400;
    font-size: clamp(0.94rem, 0.56vw + 0.58rem, 1.25rem);
    transition: color 0.4s ease-in-out, border-color 0.4s ease-in-out;
    color: var(--color-text);
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    cursor: pointer;
  }
  .header__navigation > ul > li:hover a:not(.c-button):before, .header__navigation > ul > li:hover button:not(.c-button):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 24px solid var(--color-background-3);
    width: 0;
    height: 0;
  }
  .header__navigation > ul > li a span + .c-icon,
  .header__navigation > ul > li button span + .c-icon {
    width: 8px;
    position: relative;
    margin-left: 4px;
    margin-bottom: 4px;
    left: 0;
    bottom: 0;
    transition: left 0.16s ease-in-out, bottom 0.16s ease-in-out;
  }
  .header__navigation > ul > li a span + .c-icon + .c-icon,
  .header__navigation > ul > li button span + .c-icon + .c-icon {
    display: none;
  }
  .header__navigation > ul > li:hover a span + .c-icon,
  .header__navigation > ul > li:hover button span + .c-icon {
    left: 4px;
    bottom: 4px;
  }
  .header__navigation > ul > li:hover > a, .header__navigation > ul > li:hover > button, .header__navigation > ul > li.current > a, .header__navigation > ul > li.current > button, .header__navigation > ul > li.ancestor > a, .header__navigation > ul > li.ancestor > button {
    text-shadow: 0 0 1px #333;
  }
  .header__navigation > ul > li a:hover {
    text-shadow: 0 0 1px #333;
  }
  .header__navigation > ul > li li.current a {
    text-shadow: 0 0 1px #333;
  }
  .header__navigation > ul > li.menu > ul, .header__navigation > ul > li.mega > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    display: none;
    background-color: var(--color-background-3);
    transform: translateX(-50%);
    padding: clamp(1rem, 1.03vw + 0.77rem, 2rem);
    column-gap: clamp(2rem, 3.57vw + -0.29rem, 4rem);
    row-gap: clamp(0.5rem, 0.89vw + -0.07rem, 1rem);
  }
  .header__navigation > ul > li.menu > ul ul, .header__navigation > ul > li.mega > ul ul {
    margin-top: clamp(0.5rem, 0.89vw + -0.07rem, 1rem);
    gap: clamp(0.5rem, 0.89vw + -0.07rem, 1rem);
  }
  .header__navigation > ul > li.menu > ul li, .header__navigation > ul > li.mega > ul li {
    width: 100%;
  }
  .header__navigation > ul > li.menu > ul button, .header__navigation > ul > li.mega > ul button {
    color: var(--color-primary);
    font-weight: 800;
  }
  .header__navigation > ul > li.menu {
    position: relative;
  }
  .header__navigation > ul > li.menu > ul {
    flex-flow: column;
  }
  .header__navigation > ul > li.mega > ul {
    flex-flow: row nowrap;
  }
  .header__navigation > ul > li:hover > .menu, .header__navigation > ul > li:hover > .menu-mega {
    display: flex;
  }
}
@media (min-width: 1280px) {
  .header__navigation > ul > li.mega {
    position: relative;
  }
}
@media (max-width: 1023.98px) {
  .header__navigation {
    display: block;
    background-color: var(--color-background-2);
    color: var(--color-text-inverted);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    height: 100svh;
    z-index: 9;
    transition: left 0.4s ease-in-out 0s;
  }
  .header__navigation__title {
    display: none;
  }
  .header__navigation .sub-menu-back {
    display: inline-flex;
    flex-flow: row nowrap;
    align-content: center;
    cursor: pointer;
  }
  .header__navigation .sub-menu-back .c-icon {
    transform: rotate(90deg);
  }
  .header__navigation .sub-menu-back span {
    margin-left: 12px;
  }
  .header__navigation ul {
    position: fixed;
    top: clamp(6.25rem, 3.85vw + 5.38rem, 10rem);
    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: var(--layout-offset);
    display: flex;
    flex-flow: column;
    background: var(--color-background-2);
  }
  .header__navigation ul.active {
    left: 0;
  }
  .header__navigation ul li {
    margin-top: 32px;
  }
  .header__navigation ul li:has(.menu, .mega) button, .header__navigation ul li:has(.menu, .mega) a {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
    color: var(--color-text-inverted);
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
  }
  .header__navigation ul ul li a.c-button {
    font-size: 18px;
  }
  .header__navigation ul ul li a.c-button:after {
    width: 100%;
    background-color: var(--color-secondary);
  }
  .header__navigation ul ul li a.c-button:hover span {
    color: var(--color-text);
  }
  .header__navigation .c-icon {
    width: 20px;
    height: 20px;
  }
  .header__navigation .c-icon path {
    fill: var(--color-text-inverted);
  }
  .header__navigation .c-icon:has(+ .c-icon) {
    display: none;
  }
  .header__navigation .c-icon {
    transform: rotate(-90deg);
  }
  .header {
    overflow-x: clip;
  }
  .header.nav-active .header__navigation {
    left: 0;
    transition: left 0.4s ease-in-out 0s;
  }
  .header.nav-active .header__navigation > ul {
    left: 0;
    transition: left 0.4s ease-in-out 0.2s;
  }
}
.error-404 {
  padding: clamp(0.5rem, 9.74vw + -1.69rem, 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, 3.08vw + 2.31rem, 6rem);
  width: 100%;
}
.error-404__buttons {
  margin-top: clamp(1.5rem, 1.54vw + 1.15rem, 3rem);
}
.error-404__subline {
  font-weight: 800;
  font-size: clamp(1.5rem, 1.54vw + 1.15rem, 3rem);
  margin-top: clamp(0.5rem, 0.51vw + 0.38rem, 1rem);
}
.error-404__text {
  margin-top: clamp(1rem, 1.03vw + 0.77rem, 2rem);
}
.error-404__headline h1 {
  color: var(--color-primary);
  font-weight: 800;
  font-size: clamp(6rem, 6.15vw + 4.62rem, 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, 3.85vw + 0.38rem, 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:first-child {
  margin-top: calc(var(--block-margin) * 2);
}
.b:last-of-type {
  margin-bottom: var(--block-margin);
}

.w {
  margin-top: clamp(2rem, 1.54vw + 1.65rem, 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-3 {
  background-color: var(--color-background-3);
}
.background-color-3 .c-headline {
  color: var(--color-secondary);
}
.background-color-3 .c-text {
  color: var(--color-text-inverted);
}

.text-inverted {
  color: var(--color-text-inverted);
}
.text-inverted a {
  color: var(--color-text-inverted);
}
.text-inverted .c-headline {
  color: var(--color-secondary);
}
.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, 1.54vw + 1.15rem, 3rem);
}

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

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

.c-overline {
  margin-bottom: clamp(0.25rem, 0.26vw + 0.19rem, 0.5rem);
  font-size: clamp(1.13rem, 0.77vw + 0.95rem, 1.88rem);
  font-weight: 800;
  line-height: 1.5;
}
.c-overline span {
  color: var(--color-text);
  background-color: var(--color-secondary);
  padding: 0 4px;
}

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

.w .c-headline {
  margin-bottom: clamp(0.75rem, 1.28vw + 0.46rem, 2rem);
}

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

.w .c-text {
  margin-top: var(--component-margin-medium);
}
.w .c-text:first-of-type {
  margin-top: 0;
}

.b .c-text {
  margin-top: clamp(1rem, 1.03vw + 0.77rem, 2rem);
}
.b .c-text a {
  color: var(--color-text);
  transition: color 0.6s ease-in-out, border-color 0.4s ease-in-out;
  border-bottom: 2px solid var(--color-text);
  position: relative;
}
.b .c-text a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 0;
  bottom: 0;
  background-color: var(--color-background-3);
  transition: width 0.4s ease-in-out;
}
.b .c-text a:hover {
  border-bottom-color: var(--color-background-3);
}
.b .c-text a:hover:before {
  width: 100%;
}
.b .c-text ul {
  list-style-type: none;
  margin: clamp(1rem, 0.26vw + 0.94rem, 1.25rem) 0;
  padding-left: clamp(1rem, 0.26vw + 0.94rem, 1.25rem);
}
.b .c-text ul li {
  position: relative;
}
.b .c-text ul li:before {
  position: absolute;
  left: 0;
  top: clamp(0.56rem, 0.13vw + 0.53rem, 0.69rem);
  display: inline-block;
  content: "";
  width: clamp(0.38rem, 0.13vw + 0.35rem, 0.5rem);
  height: clamp(0.38rem, 0.13vw + 0.35rem, 0.5rem);
  background-color: var(--color-text);
  margin-left: calc(clamp(1rem, 0.26vw + 0.94rem, 1.25rem) * -1);
  color: inherit;
}
.b .c-text ul:last-child {
  margin-bottom: 0;
}
.b .c-text:first-child {
  margin-top: 0;
}

.c-media {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 16/9;
}
.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(--component-margin-large);
  display: flex;
  flex-flow: row wrap;
  gap: clamp(1.25rem, 1.28vw + 0.96rem, 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(1rem, 0.51vw + 0.88rem, 1.5rem);
  height: clamp(2.5rem, 1.03vw + 2.27rem, 3.5rem);
  text-align: center;
  text-decoration: none;
  font-size: clamp(1rem, 0.51vw + 0.88rem, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-text);
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  background-color: var(--color-secondary);
}
.c-button .c-icon {
  margin-right: 12px;
  width: clamp(1.5rem, 0.51vw + 1.38rem, 2rem);
  min-width: clamp(1.5rem, 0.51vw + 1.38rem, 2rem);
  aspect-ratio: 1;
}
.c-button:hover {
  color: var(--color-text-inverted);
  background-color: var(--color-primary);
}

.header__navigation ul li a.c-button {
  position: relative;
  font-weight: 800;
  height: clamp(2rem, 1.03vw + 1.77rem, 3rem);
  text-shadow: unset;
}
.header__navigation ul li a.c-button span {
  position: relative;
  z-index: 2;
}
.header__navigation ul li a.c-button:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  height: 100%;
  width: 0;
  transition: 0.24s width ease-in-out;
  background-color: var(--color-primary);
}
.header__navigation ul li a.c-button:hover {
  background: var(--color-secondary);
  color: var(--color-text-inverted);
}
.header__navigation ul li a.c-button:hover:after {
  width: 100%;
}

.c-links {
  display: flex;
  flex-flow: row wrap;
  gap: clamp(1.25rem, 1.28vw + 0.96rem, 2.5rem);
  margin-top: clamp(0.75rem, 1.03vw + 0.52rem, 1.75rem);
}
.c-links:first-child {
  margin-top: 0;
}

.c-link {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: clamp(1rem, 0.9vw + 0.8rem, 1.88rem);
  font-weight: 800;
}
.c-link span {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  display: inline-block;
}
.c-link .c-icon {
  position: relative;
  top: 1px;
  z-index: 1;
  background-color: var(--color-secondary);
  padding: clamp(0.13rem, 0.13vw + 0.1rem, 0.25rem);
  width: clamp(0.75rem, 0.77vw + 0.58rem, 1.5rem);
  height: clamp(0.75rem, 0.77vw + 0.58rem, 1.5rem);
  margin-right: clamp(0.5rem, 0.26vw + 0.44rem, 0.75rem);
}
.c-link span + .c-icon {
  margin-left: clamp(0.5rem, 0.51vw + 0.38rem, 1rem);
  margin-right: 0;
}
.c-link:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  z-index: 0;
  width: 0;
  background-color: var(--color-secondary);
  transition: width 0.32s ease-in-out;
}
.c-link:hover:before {
  width: 100%;
}

.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-3);
  width: 100%;
  border-radius: 0;
  border: 0;
  line-height: clamp(2.75rem, 0.77vw + 2.58rem, 3.5rem);
  height: clamp(2.75rem, 0.77vw + 2.58rem, 3.5rem);
  font-size: clamp(0.88rem, 0.13vw + 0.85rem, 1rem);
  padding: 12px clamp(0.75rem, 0.26vw + 0.69rem, 1rem);
  color: var(--color-text);
  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;
  width: 100%;
  resize: vertical;
  min-height: clamp(10rem, 5.13vw + 8.85rem, 15rem);
}

input[type=submit],
button[type=submit] {
  background-color: transparent;
  border: 0;
  color: var(--color-text);
  font-weight: 800;
  padding: 0;
  height: auto;
  font-size: clamp(0.88rem, 0.13vw + 0.85rem, 1rem);
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  width: unset;
}

span.c-submit {
  position: relative;
  margin-top: clamp(1rem, 0.51vw + 0.88rem, 1.5rem);
  display: inline-flex;
  flex-flow: row nowrap;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  align-items: center;
}
span.c-submit .c-icon {
  position: relative;
  top: 1px;
  z-index: 1;
  background-color: var(--color-secondary);
  padding: clamp(0.13rem, 0.13vw + 0.1rem, 0.25rem);
  width: clamp(0.75rem, 0.77vw + 0.58rem, 1.5rem);
  height: clamp(0.75rem, 0.77vw + 0.58rem, 1.5rem);
  margin-right: clamp(0.5rem, 0.26vw + 0.44rem, 0.75rem);
}
span.c-submit:before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  z-index: 0;
  width: 0;
  background-color: var(--color-secondary);
  transition: width 0.32s ease-in-out;
}
span.c-submit:hover:before {
  width: 100%;
}
span.c-submit input {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 0.9vw + 0.8rem, 1.88rem);
}

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

.c-form .c-form--column {
  margin-top: 16px;
}
.c-form .c-form--column:first-child {
  margin-top: 0;
}
.c-form .c-form--column > span {
  display: flex;
  flex-flow: column;
}
.c-form .c-form--column > span label {
  width: clamp(12rem, 10.77vw + 9.58rem, 22.5rem);
  line-height: clamp(2.75rem, 0.77vw + 2.58rem, 3.5rem);
  font-weight: 800;
}
.c-form .c-form--column > span span {
  font-size: clamp(0.88rem, 0.13vw + 0.85rem, 1rem);
  margin-top: clamp(0.25rem, 0.26vw + 0.19rem, 0.5rem);
}
.c-form .c-form--legal {
  font-size: clamp(0.88rem, 0.13vw + 0.85rem, 1rem);
}
.c-form .c-form--legal a {
  border-bottom: 1px solid var(--color-text);
}

@media (min-width: 1024px) {
  .c-form .c-form--column > span {
    display: grid;
    grid-template-columns: clamp(12rem, 10.77vw + 9.58rem, 22.5rem) 1fr;
  }
  .c-form .c-form--column > span span {
    grid-row: 2;
    grid-column: 2;
  }
}
.wpcf7 fieldset.hidden-fields-container {
  display: none;
}

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